Lines Matching defs:path_entry
352 struct path_entry {
356 struct path_entry *next;
358 void add_path(struct path_entry *head, struct path_entry *cur) {
359 struct path_entry *tmp;
363 struct path_entry *is_duplicate_path(struct path_entry *head, char *path) {
364 struct path_entry *tmp;
372 void free_path_list(struct path_entry *head) {
373 struct path_entry *tmp;
374 struct path_entry *tmp2;
524 struct path_entry *head = NULL;
575 struct path_entry *tmpPath = NULL;
578 head = (struct path_entry *)calloc(1,
579 sizeof (struct path_entry));
596 tmpPath = (struct path_entry *)
597 calloc(1, sizeof (struct path_entry));
628 struct path_entry *tmp;