Searched defs:list_head (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/libntfs/common/include/ntfs/
H A Dlist.h26 * struct list_head - Simple doubly linked list implementation.
37 struct list_head { struct
38 struct list_head *next, *prev;
44 struct list_head name = LIST_HEAD_INIT(name)
59 static __inline__ void __list_add(struct list_head * new,
60 struct list_head * prev, struct list_head * next)
76 static __inline__ void list_add(struct list_head *new, struct list_head *head)
89 static __inline__ void list_add_tail(struct list_head *ne
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Dselect_large_fdset.c373 realloc_fds(int *num, struct pollfd **list_head, struct pollfd *orig) argument
384 (void) memcpy(b, *list_head, nta / 2);
385 if (*list_head != orig)
386 free(*list_head);
387 *list_head = b;
/osnet-11/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_ia_util.c907 DAPL_LLIST_HEAD *list_head; local
910 list_head = &ia_ptr->psp_list_head;
914 list_head = &ia_ptr->rsp_list_head;
918 (void) dapl_llist_remove_entry(list_head,
946 DAPL_LLIST_HEAD *list_head; local
949 list_head = &ia_ptr->psp_list_head;
951 list_head = &ia_ptr->rsp_list_head;
956 sp_ptr = (dapl_llist_is_empty(list_head) ? NULL :
957 dapl_llist_peek_head(list_head));
963 sp_ptr = dapl_llist_next_entry(list_head,
[all...]
/osnet-11/usr/src/lib/lvm/libmeta/common/
H A Dmeta_statconcise.c282 free_md_im_list_entries(md_im_list_t **list_head) argument
284 md_im_list_t *tmp_list_entry = *list_head;
/osnet-11/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaObjectManager.c420 meta_object_t **list_head; local
432 list_head = &tokenobject_list_head;
435 list_head = &new_object->creator_session->object_list_head;
440 INSERT_INTO_LIST(*list_head, new_object);
459 meta_object_t **list_head; local
477 list_head = &tokenobject_list_head;
480 list_head = &object->creator_session->object_list_head;
499 if (*list_head == object) {
502 *list_head = object->next;
506 *list_head
684 slot_object_t **list_head; local
[all...]
/osnet-11/usr/src/lib/udapl/udapl_tavor/include/
H A Ddapl.h284 DAPL_LLIST_HEAD *list_head; /* for consistency checking */ member in struct:dapl_llist_entry

Completed in 1835 milliseconds