Home
last modified time | relevance | path

Searched refs:head (Results 1 – 25 of 714) sorted by last modified time

12345678910>>...29

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp.c3250 mblk_t *head = NULL; in tcp_zcopy_backoff() local
3262 return ((head == NULL) ? bp : head); in tcp_zcopy_backoff()
3294 if (head == NULL) { in tcp_zcopy_backoff()
3295 head = bp; in tcp_zcopy_backoff()
3313 return (head); in tcp_zcopy_backoff()
H A Dtcp_fusion.c364 mblk_t *head, *prev_head = NULL; in tcp_fuse_output_urg() local
416 head = peer_tcp->tcp_rcv_list; in tcp_fuse_output_urg()
417 while (head != NULL) { in tcp_fuse_output_urg()
423 if (DB_TYPE(head) != M_DATA) { in tcp_fuse_output_urg()
424 mp1 = head; in tcp_fuse_output_urg()
427 head = mp1->b_cont; in tcp_fuse_output_urg()
429 head->b_next = mp1->b_next; in tcp_fuse_output_urg()
432 prev_head->b_next = head; in tcp_fuse_output_urg()
434 peer_tcp->tcp_rcv_list = head; in tcp_fuse_output_urg()
439 prev_head = head; in tcp_fuse_output_urg()
[all …]
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip.c13303 conn_t *head = idl->idl_conn; in conn_drain_insert() local
13305 connp->conn_drain_next = head; in conn_drain_insert()
13306 connp->conn_drain_prev = head->conn_drain_prev; in conn_drain_insert()
13307 head->conn_drain_prev->conn_drain_next = connp; in conn_drain_insert()
13308 head->conn_drain_prev = connp; in conn_drain_insert()
/illumos-gate/usr/src/pkg/manifests/
H A DSUNWcs.p5m633 file path=usr/bin/head mode=0555
H A Dsystem-test-utiltest.p5m1558 dir path=opt/util-tests/tests/head
1559 file path=opt/util-tests/tests/head/5221.in mode=0444
1560 file path=opt/util-tests/tests/head/5221.out mode=0444
1561 file path=opt/util-tests/tests/head/head_test mode=0555
1562 file path=opt/util-tests/tests/head/multi.1.out mode=0444
1563 file path=opt/util-tests/tests/head/multi.4.out mode=0444
1564 file path=opt/util-tests/tests/head/rings.1.out mode=0444
1565 file path=opt/util-tests/tests/head/rings.2.out mode=0444
1566 file path=opt/util-tests/tests/head/rings.3.out mode=0444
1567 file path=opt/util-tests/tests/head/rings.5.out mode=0444
[all …]
/illumos-gate/usr/src/cmd/mdb/common/modules/ip/
H A Dip.c3320 list_t head; in ilb_nat_src_walk_init() local
3338 entry = list_object(&head, head.list_head.list_next); in ilb_nat_src_walk_init()
3358 list_t head; in ilb_nat_src_walk_step() local
3439 ilb_conn_hash_t head; in ilb_conn_walk_init() local
3471 if (head.ilb_connp != NULL) in ilb_conn_walk_init()
3475 if (head.ilb_connp == NULL) in ilb_conn_walk_init()
3490 ilb_conn_hash_t head; in ilb_conn_walk_step() local
3528 if (head.ilb_connp == NULL) in ilb_conn_walk_step()
3561 list_t head; in ilb_sticky_walk_init() local
3580 st = list_object(&head, head.list_head.list_next); in ilb_sticky_walk_init()
[all …]
/illumos-gate/usr/src/lib/libc/inc/
H A Dthr_uberdata.h881 _exthdlr_t *head; member
897 caddr32_t head; member
922 _qexthdlr_t *head; member
931 caddr32_t head; member
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dassfail.c86 common_panic(const char *head, const char *why) in common_panic() argument
97 (void) strcpy(msg, head); in common_panic()
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsockcommon_subr.c447 mblk_t *head = NULL, **tail = &head; in socopyinuio() local
476 return (head); in socopyinuio()
488 freemsg(head); in socopyinuio()
497 return (head); in socopyinuio()
/illumos-gate/usr/src/uts/common/rpc/sec_gss/
H A Drpcsec_gss.c270 struct ga_cache_entry **head, *current, *new, *prev; in rpc_gss_secget() local
298 head = &ga_cache_table[HASH(cache_key, uid)]; in rpc_gss_secget()
299 NOT_NULL(head); in rpc_gss_secget()
300 IS_ALIGNED(head); in rpc_gss_secget()
302 for (current = *head; current; current = current->next) { in rpc_gss_secget()
320 *head = current->next; in rpc_gss_secget()
368 NOT_DEAD(*head); in rpc_gss_secget()
370 new->next = *head; in rpc_gss_secget()
371 *head = new; in rpc_gss_secget()
/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_input.c98 ASSERT((*num == 0 && *head == NULL) || (*num > 0 && *head != NULL)); in sctp_ack_add()
102 if (*head == NULL) in sctp_ack_add()
104 (*head)->prev = (*head)->next = NULL; in sctp_ack_add()
122 t->next = *head; in sctp_ack_add()
124 (*head)->prev = t; in sctp_ack_add()
128 *head = t; in sctp_ack_add()
216 if (head == NULL || *head == NULL || num == NULL) in sctp_ack_rem()
233 if (p == *head) in sctp_ack_rem()
241 t = *head; in sctp_ack_rem()
242 *head = p; in sctp_ack_rem()
[all …]
/illumos-gate/usr/src/uts/common/io/mac/
H A Dmac_sched.c1540 mp = head; in mac_rx_srs_proto_fanout()
1541 head = head->b_next; in mac_rx_srs_proto_fanout()
1967 mp = head; in mac_rx_srs_fanout()
1968 head = head->b_next; in mac_rx_srs_fanout()
2507 return (head); in mac_srs_pick_chain()
2537 head = mp; in mac_srs_pick_chain()
2551 return (head); in mac_srs_pick_chain()
2572 mblk_t *head; in mac_rx_srs_drain() local
2809 mblk_t *head; in mac_rx_srs_drain_bw() local
3349 head = NULL; in mac_rx_srs_process()
[all …]
/illumos-gate/usr/src/tools/quick/
H A Dmake-smbsrv69 (cd $SRC/head && $make clobber)
82 test -f $SRC/head/rpcsvc/nispasswd.h ||
83 (cd $SRC/head && $make -k $targ)
91 (cd $SRC/head && $make $targ)
301 find head -name '*.h' -print |sort
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Darc.c7701 arc_buf_hdr_t *head, *hdr, *hdr_prev; in l2arc_write_done() local
7710 head = cb->l2wcb_head; in l2arc_write_done()
7711 ASSERT3P(head, !=, NULL); in l2arc_write_done()
7745 list_remove(buflist, head); in l2arc_write_done()
7746 list_insert_after(buflist, hdr, head); in l2arc_write_done()
7855 list_remove(buflist, head); in l2arc_write_done()
7856 ASSERT(!HDR_HAS_L1HDR(head)); in l2arc_write_done()
7857 kmem_cache_free(hdr_l2only_cache, head); in l2arc_write_done()
8503 arc_buf_hdr_t *hdr, *hdr_prev, *head; in l2arc_write_buffers() local
8657 cb->l2wcb_head = head; in l2arc_write_buffers()
[all …]
/illumos-gate/usr/src/boot/i386/libi386/
H A Dbiosdisk.c544 struct edd_params head; in bd_get_diskinfo_ext() member
551 params = &dparams.head; in bd_get_diskinfo_ext()
/illumos-gate/usr/src/test/util-tests/runfiles/
H A Ddefault.run82 [/opt/util-tests/tests/head/head_test]
/illumos-gate/usr/src/cmd/fm/fmdump/common/
H A Dfmdump.c629 struct loglink *head = NULL; in get_rotated_logs() local
661 addlink(&head, dirname, dp->d_name, -1); in get_rotated_logs()
664 addlink(&head, dirname, dp->d_name, suffix); in get_rotated_logs()
669 return (head); in get_rotated_logs()
/illumos-gate/usr/src/uts/common/io/nvme/
H A Dnvme.c1677 nvme_reg_cqhdbl_t head = { 0 }; in nvme_process_iocq() local
1699 head.b.cqhdbl_cqh = cq->ncq_head; in nvme_process_iocq()
1700 nvme_put32(nvme, cq->ncq_hdbl, head.r); in nvme_process_iocq()
1712 nvme_reg_cqhdbl_t head = { 0 }; in nvme_retrieve_cmd() local
1723 head.b.cqhdbl_cqh = cq->ncq_head; in nvme_retrieve_cmd()
1724 nvme_put32(nvme, cq->ncq_hdbl, head.r); in nvme_retrieve_cmd()
/illumos-gate/usr/src/uts/common/io/igc/
H A Digc_ring.c1144 uint32_t head, tail, ndesc = 0; in igc_tx_recycle() local
1162 head = ring->itr_ring_head; in igc_tx_recycle()
1180 while (head != tail) { in igc_tx_recycle()
1182 igc_tx_buffer_t *check_buf = ring->itr_work_list[head]; in igc_tx_recycle()
1200 for (uint32_t desc = head; desc != next_desc; in igc_tx_recycle()
1219 head = next_desc; in igc_tx_recycle()
1223 ring->itr_ring_head = head; in igc_tx_recycle()
/illumos-gate/usr/src/uts/common/io/ena/
H A Dena_rx.c344 mblk_t *head = NULL; in ena_ring_rx() local
414 if (head == NULL) { in ena_ring_rx()
415 head = mp; in ena_ring_rx()
522 DTRACE_PROBE5(rx__frames, ena_rxq_t *, rxq, mblk_t *, head, in ena_ring_rx()
527 return (head); in ena_ring_rx()
/illumos-gate/usr/src/tools/findunref/
H A Dexception_list.open195 ./usr/src/head/rpcsvc/THIRDPARTYLICENSE.nfs4_prot
196 ./usr/src/head/rpcsvc/THIRDPARTYLICENSE.nfs4_prot.descrip
/illumos-gate/usr/src/lib/udapl/udapl_tavor/include/
H A Ddapl.h284 DAPL_ATOMIC head; /* head pointer index */ member
292 DAPL_ATOMIC head; member
1115 dapl_llist_init_head(DAPL_LLIST_HEAD *head);
1121 dapl_llist_is_empty(DAPL_LLIST_HEAD *head);
1125 DAPL_LLIST_HEAD *head,
1131 DAPL_LLIST_HEAD *head,
1137 DAPL_LLIST_HEAD *head,
1143 dapl_llist_remove_head(DAPL_LLIST_HEAD *head);
1146 dapl_llist_remove_tail(DAPL_LLIST_HEAD *head);
1153 dapl_llist_peek_head(DAPL_LLIST_HEAD *head);
[all …]
/illumos-gate/usr/src/cmd/pools/poolstat/
H A Dpoolstat.c328 poolstat_list_element_t *head = le; in create_args_list() local
339 head = le; in create_args_list()
350 return (head); in create_args_list()
/illumos-gate/usr/src/cmd/mdb/common/modules/libc/
H A Dlibc.c796 prt_addr(uberdata.atexit_root.head, 1), in d_uberdata()
803 prt_addr(uberdata.quickexit_root.head, 0)); in d_uberdata()
1423 d_mutex_output_push(d_mutex_output_t **head, const char *out) in d_mutex_output_push() argument
1429 new->mo_next = *head; in d_mutex_output_push()
1433 *head = new; in d_mutex_output_push()
1437 d_mutex_output_reverse(d_mutex_output_t **head) in d_mutex_output_reverse() argument
1441 for (current = *head; current != NULL; current = next) { in d_mutex_output_reverse()
1451 *head = current; in d_mutex_output_reverse()
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dkmem.c3320 vmem_node_t *head = NULL, *root = NULL, *current = NULL, *parent, *vp; in vmem_walk_init() local
3331 vp->vn_next = head; in vmem_walk_init()
3332 head = vp; in vmem_walk_init()
3345 for (vp = head; vp != NULL; vp = vp->vn_next) { in vmem_walk_init()
3353 for (parent = head; parent != NULL; parent = parent->vn_next) { in vmem_walk_init()
3380 for (vp = head; head != NULL; vp = head) { in vmem_walk_init()
3381 head = vp->vn_next; in vmem_walk_init()

12345678910>>...29