Lines Matching defs:node
72 obj_list_t *node;
75 * If we can't allocate the next node in our list, we'll try to emit a
78 if ((node = malloc(sizeof (obj_list_t))) == NULL) {
82 node->ol_next = list;
83 node->ol_name = strdup(lmp->l_name);
84 node->ol_addr = lmp->l_addr;
85 node->ol_lmid = lmid;
86 list = node;
111 obj_list_t *node = list;
112 char *name = node->ol_name;
114 list = node->ol_next;
122 node->ol_lmid, node->ol_name, node->ol_addr);
125 free(node->ol_name);
126 free(node);