Home
last modified time | relevance | path

Searched refs:head (Results 276 – 300 of 714) sorted by relevance

1...<<11121314151617181920>>...29

/illumos-gate/usr/src/uts/common/io/ntxn/
H A Dunm_nic_main.c802 pbuf->head = NULL; in unm_send_copy()
927 head = tail = dmah; in unm_send_mapped()
998 pbuf->head = head; in unm_send_mapped()
1056 hdlp = head; in unm_send_mapped()
1067 head = tail = dmah; in unm_send_mapped()
1075 if (head != NULL) in unm_send_mapped()
1399 dmah = buffer->head; in unm_process_cmd_ring()
1406 if (head == NULL) { in unm_process_cmd_ring()
1407 head = buffer->head; in unm_process_cmd_ring()
1414 buffer->head = NULL; in unm_process_cmd_ring()
[all …]
/illumos-gate/usr/src/uts/intel/io/acpica/
H A Dacpi_enum.c128 insert_used_resource(used_io_mem_t *used, int *used_count, used_io_mem_t **head) in insert_used_resource() argument
133 if (*head == NULL) { in insert_used_resource()
134 *head = used; in insert_used_resource()
137 curr = prev = *head; in insert_used_resource()
146 *head = used; in insert_used_resource()
1076 used_res_io_mem(char *nodename, int *count, used_io_mem_t **head) in used_res_io_mem() argument
1079 used_io_mem_t *used = *head; in used_res_io_mem()
1097 *head = NULL; in used_res_io_mem()
/illumos-gate/usr/src/lib/libsmedia/plugins/floppy/common/
H A Df_format.c384 start_head = ft->head; in format_floppy()
385 end_head = ft->head + 1; in format_floppy()
563 ft.head = (-1); in _m_media_format()
595 DPRINTF2("Format track %d head %d\n", ft->track_no, ft->head); in _m_media_format_track()
/illumos-gate/usr/src/uts/common/io/qede/
H A Dqede_fp.h153 u16 head; member
168 u16 head; member
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Drcm_subr.c1913 rcm_init_queue(rcm_queue_t *head) in rcm_init_queue() argument
1915 head->next = head->prev = head; in rcm_init_queue()
1919 rcm_enqueue_head(rcm_queue_t *head, rcm_queue_t *element) in rcm_enqueue_head() argument
1921 rcm_enqueue(head, element); in rcm_enqueue_head()
1925 rcm_enqueue_tail(rcm_queue_t *head, rcm_queue_t *element) in rcm_enqueue_tail() argument
1927 rcm_enqueue(head->prev, element); in rcm_enqueue_tail()
1940 rcm_dequeue_head(rcm_queue_t *head) in rcm_dequeue_head() argument
1942 rcm_queue_t *element = head->next; in rcm_dequeue_head()
1948 rcm_dequeue_tail(rcm_queue_t *head) in rcm_dequeue_tail() argument
1950 rcm_queue_t *element = head->prev; in rcm_dequeue_tail()
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb.cc732 db_log_entry * head; // head of list of log entries found member
751 if (ti->head == NULL) in entry_since()
752 ti->head = j; in entry_since()
772 ti.head = ti.tail = NULL; in get_log_entries_since()
796 currentry = ti.head; in get_log_entries_since()
797 for (i = 0, currentry = ti.head; in get_log_entries_since()
/illumos-gate/usr/src/cmd/csh/
H A Dsh.set.c379 value1(tchar *var, struct varent *head) in value1() argument
386 vp = adrof1(var, head); in value1()
442 set1(tchar *var, tchar **vec, struct varent *head) in set1() argument
469 setq(var, vec, head); in set1()
520 unset1(tchar *v[], struct varent *head) in unset1() argument
530 while (vp = madrof(*v, head->v_left)) in unset1()
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dauto_subr.c809 btree_lookup(struct dir_entry *head, char *name) in btree_lookup() argument
814 for (p = head; p != NULL; ) { in btree_lookup()
830 btree_enter(struct dir_entry **head, struct dir_entry *ent) in btree_enter() argument
836 if (*head == NULL) { in btree_enter()
837 *head = ent; in btree_enter()
841 for (p = *head; p != NULL; ) { in btree_enter()
/illumos-gate/usr/src/lib/udapl/udapl_tavor/tavor/
H A Ddapl_hermon_hw.c1082 uint32_t head, tail, next_tail, qsize_msk; in dapli_hermon_post_send() local
1103 head = qp->qp_sq_wqhdr->wq_head; in dapli_hermon_post_send()
1120 if (next_tail == head) { in dapli_hermon_post_send()
1239 uint32_t head, tail, next_tail, qsize_msk; in dapli_hermon_post_recv() local
1255 head = qp->qp_rq_wqhdr->wq_head; in dapli_hermon_post_recv()
1279 if (next_tail == head) { in dapli_hermon_post_recv()
1348 uint32_t head, next_head, qsize_msk; in dapli_hermon_post_srq() local
1375 head = srq->srq_wridlist->wl_freel_head; in dapli_hermon_post_srq()
1377 next_head = (head + 1) & qsize_msk; in dapli_hermon_post_srq()
1380 desc = srq->srq_wridlist->wl_free_list[head]; in dapli_hermon_post_srq()
/illumos-gate/usr/src/test/util-tests/tests/ctf/
H A Dtest-sou.c46 struct node head; member
49 nlist_t head; variable
/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/softmac/
H A Dsoftmac_fp.c1064 mblk_t *head = NULL, *tail = NULL, *mp; in softmac_datapath_switch() local
1133 if (head == NULL) { in softmac_datapath_switch()
1134 head = tail = mp; in softmac_datapath_switch()
1159 mp = head->b_next; in softmac_datapath_switch()
1160 head->b_next = NULL; in softmac_datapath_switch()
1161 softmac_wput_nondata(sup, head); in softmac_datapath_switch()
1162 head = mp; in softmac_datapath_switch()
1191 freemsgchain(head); in softmac_datapath_switch()
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_osd.c375 while (NULL != g_dapl_provider_list.head) { in dapls_osd_fork_cleanup()
376 cur_node = g_dapl_provider_list.head; in dapls_osd_fork_cleanup()
377 g_dapl_provider_list.head = cur_node->next; in dapls_osd_fork_cleanup()
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/
H A Drc_mem.c36 struct authlist *ta, *pta = NULL, *head; in rc_store() local
65 head = t->h[rephash]; in rc_store()
67 free(head); in rc_store()
/illumos-gate/usr/src/uts/common/io/xge/drv/
H A Dxgell.c208 xge_assert(bf_pool->head); in xgell_rx_buffer_replenish_all()
210 rx_buffer = bf_pool->head; in xgell_rx_buffer_replenish_all()
212 bf_pool->head = rx_buffer->next; in xgell_rx_buffer_replenish_all()
242 rx_buffer->next = bf_pool->head; in xgell_rx_buffer_release()
243 bf_pool->head = rx_buffer; in xgell_rx_buffer_release()
439 rx_buffer = bf_pool->head; in xgell_rx_destroy_buffer_pool()
449 bf_pool->head = rx_buffer; in xgell_rx_destroy_buffer_pool()
489 bf_pool->head = NULL; in xgell_rx_create_buffer_pool()
515 bf_pool->head = rx_buffer; in xgell_rx_create_buffer_pool()
540 if (bf_pool->head == NULL) { in xgell_rx_dtr_replenish()
[all …]
/illumos-gate/usr/src/cmd/bhyve/
H A Dgdb.c1662 uint8_t *head, *hash, *p, sum; in check_command() local
1669 head = io_buffer_head(&cur_comm); in check_command()
1670 switch (*head) { in check_command()
1712 hash = memchr(head, '#', avail); in check_command()
1715 plen = (hash - head + 1) + 2; in check_command()
1718 debug("<- %.*s\n", (int)plen, head); in check_command()
1721 for (sum = 0, p = head + 1; p < hash; p++) in check_command()
1732 handle_command(head + 1, hash - (head + 1)); in check_command()
1741 debug("-> %02x\n", *head); in check_command()
/illumos-gate/usr/src/lib/nsswitch/files/common/
H A Dgetnetgrent.c420 struct netgrnam **head; in ngt_insert() local
431 head = &ngt->hash_heads[hashval % HASHMOD]; in ngt_insert()
432 for (cur = *head; cur != 0; cur = cur->hash_chain) { in ngt_insert()
447 cur->hash_chain = *head; in ngt_insert()
448 *head = cur; in ngt_insert()
/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/uts/common/os/
H A Daudit_zone.c134 if (kctx->auk_queue.head != NULL) { in au_zone_destroy()
135 au_free_rec(kctx->auk_queue.head); in au_zone_destroy()
/illumos-gate/usr/src/uts/common/io/i40e/core/
H A Di40e_lan_hmc.h51 u16 head; member
84 u16 head; member
/illumos-gate/usr/src/uts/sun4v/io/
H A Dldc.c353 uint64_t, head, \
362 #define Q_CONTIG_SPACE(head, tail, size) \ argument
363 ((head) <= (tail) ? ((size) - (tail)) : \
364 ((head) - (tail) - LDC_PACKET_SIZE))
813 "rv = 0x%x", ldcp->id, head, rv); in i_ldc_set_rx_head()
832 *head = ldcp->tx_head; in i_ldc_get_tx_head()
851 *head = ldcp->tx_ackd_head; in i_ldc_get_tx_head()
955 bcopy((void *)(ldcp->rx_q_va + *head), in i_ldc_rxdq_copy()
960 *head = (*head + LDC_PACKET_SIZE) % q_size; in i_ldc_rxdq_copy()
972 ldcp->rx_dq_head = head; in i_ldc_set_rxdq_head()
[all …]
/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm.c1998 dep->head = mp; in cache_deferred_minor()
3346 for (link = head->link; link != NULL; link = head->nextlink) { in devfsadm_rm_stale_links()
6541 return (head); in create_link_list()
6903 temp = head; in free_selector_list()
6904 head = head->next; in free_selector_list()
6916 temp = head; in free_link_list()
6917 head = head->next; in free_link_list()
8672 entry = head ? head : enumerate_reserved; in devfsadm_reserve_id_cache()
8692 if (head) { in devfsadm_reserve_id_cache()
8711 entry = head ? head : enumerate_reserved; in devfsadm_reserve_id_cache()
[all …]
/illumos-gate/usr/src/uts/sun/io/
H A Dzs_async.c2171 if (!head) { in zsa_softint()
2172 head = bp; in zsa_softint()
2175 tail = head; in zsa_softint()
2315 while (head) { in zsa_softint()
2320 bp = head; in zsa_softint()
2321 head = head->b_next; in zsa_softint()
2661 if (!head) { in zsa_kick_rcv()
2662 head = mp; in zsa_kick_rcv()
2684 while (head) { in zsa_kick_rcv()
2689 mp = head; in zsa_kick_rcv()
[all …]
/illumos-gate/usr/src/uts/common/io/nge/
H A Dnge_rx.c318 mblk_t *head; in nge_recv_ring() local
326 head = NULL; in nge_recv_ring()
327 tail = &head; in nge_recv_ring()
414 return (head); in nge_recv_ring()
/illumos-gate/usr/src/cmd/ast/libshell/common/
H A Dillumos_cmdlist.h115 ASTCMDLIST(head)
116 BINCMDLIST(head)

1...<<11121314151617181920>>...29