Searched defs:head (Results 1 - 3 of 3) sorted by relevance
/lxc/src/lxc/ |
H A D | list.h | 119 static inline void lxc_list_add(struct lxc_list *head, struct lxc_list *list) argument 121 __lxc_list_add(list, head, head->next); 133 static inline void lxc_list_add_tail(struct lxc_list *head, argument 136 __lxc_list_add(list, head->prev, head);
|
H A D | lxc_user_nic.c | 206 static struct alloted_s *append_alloted(struct alloted_s **head, char *name, int n) argument 210 if (!head || !name) { 231 if (!*head) { 232 *head = al; 236 cur = *head; 244 static void free_alloted(struct alloted_s **head) argument 248 if (!head) 251 cur = *head; 254 free((*head)->name); 255 free(*head); [all...] |
/lxc/src/include/ |
H A D | lxcmntent.c | 79 char *head; local 102 head = buffer + strspn (buffer, " \t"); 105 while (head[0] == '\0' || head[0] == '#'); 107 cp = strsep (&head, " \t"); 109 if (head) 110 head += strspn (head, " \t"); 111 cp = strsep (&head, " \t"); 113 if (head) [all...] |
Completed in 10 milliseconds