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

/illumos-gate/usr/src/uts/common/sys/
H A Dlist_impl.h46 struct list_node list_head; member in struct:list
/illumos-gate/usr/src/uts/common/io/drm/
H A Ddrm_linux_list.h43 struct list_head { struct
44 struct list_head *next, *prev;
48 /* Cheat, assume the list_head is at the start of the struct */
/illumos-gate/usr/src/cmd/fm/modules/sun4u/cpumem-diagnosis/
H A Dcmd_opl.c44 cmd_list_t *list_head = NULL; local
52 list_head = &opl_cpu_list;
67 list_head = &opl_cpu_list;
71 list_head, opl_cpu);
90 list_head = &opl_cpu_list;
93 list_head, opl_cpu);
99 list_head = NULL;
103 return (list_head);
/illumos-gate/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;
/illumos-gate/usr/src/common/list/
H A Dlist.c46 #define list_empty(a) ((a)->list_head.list_next == &(a)->list_head)
78 list->list_head.list_next = list->list_head.list_prev =
79 &list->list_head;
85 list_node_t *node = &list->list_head;
88 ASSERT(list->list_head.list_next == node);
89 ASSERT(list->list_head.list_prev == node);
119 list_node_t *lold = &list->list_head;
126 list_node_t *lold = &list->list_head;
160 list_head(list_t *list) function
[all...]
/illumos-gate/usr/src/uts/common/io/xge/hal/include/
H A Dxge-queue.h107 * @list_head: Points to the list of queue elements that are produced, but yet
133 xge_list_t list_head; member in struct:xge_queue_t
/illumos-gate/usr/src/cmd/sgs/link_audit/common/
H A Dperfcnt.c65 static List *list_head = NULL; variable
85 if (list_head == NULL) {
86 list_head = new_list;
90 for (cur = list_head, prev = NULL;
98 new_list->l_next = list_head;
99 list_head = new_list;
261 for (cur = list_head; cur; cur = cur->l_next) {
/illumos-gate/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...]
/illumos-gate/usr/src/uts/common/sys/agp/
H A Dagpgart_impl.h129 struct list_head { struct
130 struct list_head *next, *prev;
159 struct list_head mapped_list;
/illumos-gate/usr/src/lib/pkcs11/libpkcs11/common/
H A DmetaObjectManager.c415 meta_object_t **list_head; local
427 list_head = &tokenobject_list_head;
430 list_head = &new_object->creator_session->object_list_head;
435 INSERT_INTO_LIST(*list_head, new_object);
454 meta_object_t **list_head; local
472 list_head = &tokenobject_list_head;
475 list_head = &object->creator_session->object_list_head;
494 if (*list_head == object) {
497 *list_head = object->next;
501 *list_head
677 slot_object_t **list_head; local
[all...]
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_statconcise.c280 free_md_im_list_entries(md_im_list_t **list_head) argument
282 md_im_list_t *tmp_list_entry = *list_head;
/illumos-gate/usr/src/uts/common/sys/rsm/
H A Drsm_in.h418 typedef struct list_head { struct
419 struct list_element *list_head; member in struct:list_head
/illumos-gate/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
/illumos-gate/usr/src/uts/intel/io/scsi/adapters/arcmsr/
H A Darcmsr.h358 struct list_head { struct
359 struct list_head *next, *prev;
775 struct list_head ccb_complete_list;
853 struct list_head complete_queue_pointer;
/illumos-gate/usr/src/cmd/mdb/common/modules/zfs/
H A Dzfs.c2221 } list_head; member in struct:mdb_zio::__anon32
2646 if (zio.io_parent_list.list_head.list_next !=
2649 mdb_ctf_offsetof_by_name("struct list", "list_head"))
/illumos-gate/usr/src/uts/common/os/
H A Dsunddi.c1094 i_ddi_prop_search(dev_t dev, char *name, uint_t flags, ddi_prop_t **list_head) argument
1109 for (propp = *list_head; propp != NULL; propp = propp->prop_next) {
3247 ddi_prop_t **list_head = &(DEVI(dip)->devi_drv_prop_ptr); local
3262 list_head = &(DEVI(dip)->devi_sys_prop_ptr);
3264 list_head = &(DEVI(dip)->devi_hw_prop_ptr);
3334 propp = *list_head;
3336 *list_head = new_propp;
4085 ddi_prop_t **list_head = &(DEVI(dip)->devi_drv_prop_ptr); local
4095 list_head = &(DEVI(dip)->devi_sys_prop_ptr);
4097 list_head
4165 ddi_prop_t **list_head; local
[all...]
/illumos-gate/usr/src/man/man9f/
H A DMakefile961 list_head.9f \
1772 list_head.9f := LINKSRC = list_create.9f

Completed in 109 milliseconds