| /onnv/onnv-gate/usr/src/uts/common/os/ |
| list.c | 40 #define list_empty(a) ((a)->list_head.list_next == &(a)->list_head) 45 lnew->list_next = (node)->list_next; \ 46 (node)->list_next->list_prev = lnew; \ 47 (node)->list_next = lnew; \ 52 lnew->list_next = (node); \ 54 (node)->list_prev->list_next = lnew; \ 59 (node)->list_prev->list_next = (node)->list_next; \ 60 (node)->list_next->list_prev = (node)->list_prev; 170 list_next(list_t *list, void *object) function [all...] |
| retire_store.c | 268 for (rsp = list_head(listp); rsp; rsp = list_next(listp, rsp)) { 337 for (rsp = list_head(listp); rsp; rsp = list_next(listp, rsp)) { 384 next = list_next(listp, rsp); 419 for (rsp = list_head(listp); rsp; rsp = list_next(listp, rsp)) {
|
| ddi_timer.c | 209 next = list_next(&tid->req, next)) { 515 intr_req = list_next(&intr_queue, intr_req); 577 next = list_next(&tw->req, req); 866 req = list_next(&tid->req, req)) {
|
| /onnv/onnv-gate/usr/src/lib/smbsrv/libsmb/common/ |
| smb_list.c | 41 #define list_empty(a) ((a)->list_head.list_next == &(a)->list_head) 46 lnew->list_next = node->list_next; \ 47 node->list_next->list_prev = lnew; \ 48 node->list_next = lnew; \ 53 lnew->list_next = node; \ 55 node->list_prev->list_next = lnew; \ 68 list->list_head.list_next = list->list_head.list_prev = 78 assert(list->list_head.list_next == node); 81 node->list_next = node->list_prev = NULL 140 list_next(list_t *list, void *object) function [all...] |
| smb_domain.c | 200 dcnode = list_next(&smb_dcache.dc_cache, dcnode); 243 dcnode = list_next(&smb_dcache.dc_cache, dcnode); 280 dcnode = list_next(&smb_dcache.dc_cache, dcnode); 347 dcnode = list_next(&smb_dcache.dc_cache, dcnode); 410 domain = list_next(&smb_dcache.dc_cache, domain); 417 domain = list_next(&smb_dcache.dc_cache, domain);
|
| /onnv/onnv-gate/usr/src/uts/common/sys/ |
| list_impl.h | 39 struct list_node *list_next; member in struct:list_node
|
| list.h | 54 void *list_next(list_t *, void *);
|
| /onnv/onnv-gate/usr/src/lib/mms/mms/common/ |
| mms_list.c | 54 lnew->list_next = node->list_next; 55 node->list_next->list_prev = lnew; 56 node->list_next = lnew; 65 lnew->list_next = node; 67 node->list_prev->list_next = lnew; 81 list->list_head.list_next = list->list_head.list_prev = 91 assert(list->list_head.list_next == node); 95 node->list_next = node->list_prev = NULL; 133 lold->list_prev->list_next = lold->list_next [all...] |
| /onnv/onnv-gate/usr/src/lib/libproc/common/ |
| Putil.h | 50 #define list_next(elem) (void *)(((plist_t *)(elem))->list_forw) macro
|
| /onnv/onnv-gate/usr/src/uts/intel/io/heci/ |
| heci_data_structures.h | 161 #define list_next(p) ((p)->list_next) macro 164 for (p = list_next(h), n = list_next(p); \ 166 p = n, n = list_next(p)) 170 (ptr)->list_next = (ptr); (ptr)->list_prev = (ptr); \ 179 #define list_empty(l) ((l)->list_next == (l)) 180 #define list_del(p) { (p)->list_next->list_prev = (p)->list_prev; \ 181 (p)->list_prev->list_next = (p)->list_next; } [all...] |
| /onnv/onnv-gate/usr/src/common/mms/mms/ |
| mms_list.h | 42 struct mms_list_node *list_next; member in struct:mms_list_node 56 ((mms_list_t *)((ptrdiff_t)((list)->list_head.list_next->list_prev) - \ 63 #define mms_list_empty(a) ((a)->list_head.list_next == &(a)->list_head)
|
| /onnv/onnv-gate/usr/src/cmd/filebench/common/ |
| parsertypes.h | 50 struct list *list_next; member in struct:list
|
| parser_gram.y | 343 list = list->list_next) { 366 list = list->list_next) { 398 list = list->list_next) 400 list_end->list_next = $$; 423 list = list->list_next) 425 list_end->list_next = $$; 521 list = list->list_next) 523 list_end->list_next = $$; 558 list = list->list_next) 560 list_end->list_next = $$ [all...] |
| /onnv/onnv-gate/usr/src/uts/common/fs/zfs/ |
| zio_inject.c | 111 handler = list_next(&inject_handlers, handler)) { 148 handler = list_next(&inject_handlers, handler)) { 196 handler = list_next(&inject_handlers, handler)) { 247 handler = list_next(&inject_handlers, handler)) { 306 handler = list_next(&inject_handlers, handler)) { 346 handler = list_next(&inject_handlers, handler)) { 442 handler = list_next(&inject_handlers, handler)) 474 handler = list_next(&inject_handlers, handler))
|
| dmu_zfetch.c | 124 z_walk = list_next(&zf->zf_stream, z_walk)) { 125 for (z_comp = list_next(&zf->zf_stream, z_walk); z_comp; 126 z_comp = list_next(&zf->zf_stream, z_comp)) { 350 zs = list_next(&zf->zf_stream, zs)) { 489 zs = list_next(&zf->zf_stream, zs)) { 523 zs_next = list_next(&zf->zf_stream, zs); 552 zs_next = list_next(&zf->zf_stream, zs_walk); 578 zs = list_next(&zf->zf_stream, zs)) {
|
| dsl_synctask.c | 92 dst = list_next(&dstg->dstg_tasks, dst)) { 173 dst = list_next(&dstg->dstg_tasks, dst)) { 185 dst = list_next(&dstg->dstg_tasks, dst)) {
|
| /onnv/onnv-gate/usr/src/uts/common/inet/ilb/ |
| ilb_alg_rr.c | 72 rr_alg->rr_next = list_next(servers, rr_alg->rr_next); 82 rr_alg->rr_next = list_next(servers, rr_alg->rr_next); 96 tmp_server = list_next(servers, tmp_server)) { 99 rr_alg->rr_next = list_next(servers, 144 tmp_server = list_next(servers, tmp_server)) {
|
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/ |
| list.c | 87 ? (uintptr_t)list.list_head.list_next 147 wsp->walk_addr = (uintptr_t)node->list_next;
|
| /onnv/onnv-gate/usr/src/uts/common/inet/sctp/ |
| sctp_addr.c | 213 sctp_ipif = list_next( 258 sctp_ipif = list_next( 269 sctp_ipif = list_next( 482 ipif_obj = list_next(&sctp->sctp_saddrs[hindex].sctp_ipif_list, 538 ipif_obj = list_next(&sctp->sctp_saddrs[hindex].sctp_ipif_list, 562 obj2 = list_next(&list2->sctp_ipif_list, 565 obj1 = list_next(&list1->sctp_ipif_list, obj1); 610 obj = list_next(&list1->sctp_ipif_list, obj); 685 sctp_ill = list_next(&sctps->sctps_g_ills[index].sctp_ill_list, 773 nxt_sill = list_next(&sctps->sctps_g_ills[indx].sctp_ill_list [all...] |
| /onnv/onnv-gate/usr/src/uts/common/io/audio/impl/ |
| audio_engine.c | 304 for (d = list_head(l); d; d = list_next(l, d)) { 323 for (d = list_head(l); d; d = list_next(l, d)) { 416 for (audio_engine_t *t = list_head(list); t; t = list_next(list, t)) { 705 for (srch = list_head(l); srch; srch = list_next(l, srch)) { 724 for (srch = list_head(l); srch; srch = list_next(l, srch)) { 904 for (srch = list_head(l); srch; srch = list_next(l, srch)) { 923 for (d = list_head(l); d; d = list_next(l, d)) { 942 for (d = list_head(l); d; d = list_next(l, d)) { 961 for (e = list_head(l); e != NULL; e = list_next(l, e)) { 1012 for (d = list_head(l1); d; d = list_next(l1, d)) [all...] |
| /onnv/onnv-gate/usr/src/uts/common/fs/dev/ |
| sdev_ncache.c | 304 ASSERT(list_next(listp, np) == NULL); 371 for (np = list_head(listp); np; np = list_next(listp, np)) { 457 lp = list_next(&ncl->ncl_list, lp)) { 530 next = list_next(&ncl->ncl_list, lp); 744 lp = list_next(&ncl->ncl_list, lp)) { 889 next = list_next(&ncl->ncl_list, lp);
|
| /onnv/onnv-gate/usr/src/lib/smbsrv/libsmbns/common/ |
| smbns_browser.c | [all...] |
| /onnv/onnv-gate/usr/src/uts/common/inet/ip/ |
| ip2mac.c | 62 for (; ncec_cb != NULL; ncec_cb = list_next(&ncec->ncec_cb, ncec_cb)) { 132 ncec_cb_next = list_next(&ncec->ncec_cb, ncec_cb); 363 for (; ncec_cb != NULL; ncec_cb = list_next(&ncec->ncec_cb, ncec_cb)) {
|
| /onnv/onnv-gate/usr/src/uts/i86pc/sys/ |
| dmar_acpi.h | 59 node = list_next(list, node))
|
| /onnv/onnv-gate/usr/src/lib/smbsrv/libmlsvc/common/ |
| eventlog_syslog.c | 277 node = list_next(&queue, node); 284 node = list_next(&queue, node);
|