Lines Matching defs:PathNode
121 typedef struct PathNode PathNode;
122 struct PathNode {
123 PathNode *next; /* The next directory in the path */
152 FreeList *node_mem; /* A free-list of PathNode objects */
155 PathNode *head; /* The head of the list of directories in the */
157 PathNode *tail; /* The tail of the list of directories in the */
248 * Specify how many PathNode's to allocate at a time.
305 pc->node_mem = _new_FreeList(sizeof(PathNode), PATH_NODE_BLK);
381 * The list of PathNode's was already deleted when node_mem was
513 PathNode *node; /* A node in the list of directory paths */
810 PathNode *node; /* The new directory list node */
825 node = (PathNode *) _new_FreeListNode(pc->node_mem);
857 node = (PathNode *) _del_FreeListNode(pc->node_mem, node);
1015 PathNode *node; /* A node in the list of directories in the path */
1219 PathNode *node; /* A node in the list of directories in the path */
1702 PathNode *node; /* A node in the list of directories in the path */