Searched refs:head (Results 401 - 425 of 653) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/
H A Decore_sp_verbs.c87 * @head: the head for your list.
92 #define ECORE_LIST_FOR_EACH_ENTRY_SAFE(pos, n, head, member, cast) \
93 for (pos = (cast *)d_list_peek_head(head), \
101 #define ECORE_LIST_IS_EMPTY(head) \
102 d_list_is_empty(head)
104 #define ECORE_LIST_FIRST_ENTRY(head, cast, link) \
105 (cast *)d_list_peek_head(head)
110 #define ECORE_LIST_INIT(head) \
112 d_list_clear(head); \
[all...]
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxnf.c1510 xnf_txbuf_t *head, *tail; local
1519 head = tail = NULL;
1640 if (head == NULL) {
1643 head = txp;
1686 if (head != NULL)
1687 head = tx_push_packets(xnfp, head);
1691 * them and add them back to the head of those we didn't
1700 loop = head;
1931 mblk_t *head, *tai local
[all...]
/illumos-gate/usr/src/uts/common/io/ib/mgt/ibcm/
H A Dibcm_ti.c4688 ibcm_mcg_list_t *head = NULL; local
4696 head = ibcm_mcglist;
4698 while (head != NULL) {
4699 if ((head->ml_mgid.gid_guid == mcg_resp->MGID.gid_guid) &&
4700 (head->ml_mgid.gid_prefix == mcg_resp->MGID.gid_prefix) &&
4701 (head->ml_sgid.gid_guid == mcg_resp->PortGID.gid_guid)) {
4703 head->ml_refcnt++;
4705 head->ml_jstate |= mcg_req->JoinState;
4708 "FOUND: refcnt %d JState %X", head->ml_refcnt,
4709 head
4753 ibcm_mcg_list_t *head, *prev; local
[all...]
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_metad.c280 o_md_drive_desc *new, *head; local
282 head = NULL;
289 new->dd_next = head;
290 head = new;
292 *v1_dd = head;
306 md_drive_desc *new, *head; local
309 head = NULL;
316 new->dd_next = head;
317 head = new;
319 *v2_dd = head;
327 o_md_drive_desc *o_dd, *head; local
345 md_drive_desc *dd, *head; local
[all...]
H A Dmeta_mh.c531 md_disk_status_list_t *head = NULL; local
532 md_disk_status_list_t **tailp = &head;
545 return (head);
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_dictionary.cc189 /* Delete list of db_table_desc pointed to by 'head.' */
191 delete_bucket(db_table_desc *head) argument
195 for (current = head; current != NULL; current = nextone) {
277 * If the entry being removed is at the head of the list, then
278 * the head is updated to reflect the removal. The storage for the
283 db_table_desc_p *head, unsigned long hval, char *target,
302 *head = np->next; // deleting head of bucket
316 * is done. The entry is added to the head of the bucket.
319 add_to_bucket(db_table_desc_p bucket, db_table_desc **head, db_table_desc_ argument
282 remove_from_bucket(db_table_desc_p bucket, db_table_desc_p *head, unsigned long hval, char *target, bool_t free_storage) argument
349 print_bucket(db_table_desc *head) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/devfs/
H A Ddevfs_subr.c1875 struct dv_list *head, *tail, *next; local
1885 head = tail = next = NULL;
1910 head = next;
1915 while (head) {
1916 dv_walk(head->dv, NULL, callback, arg);
1917 next = head->next;
1918 kmem_free(head, sizeof (*head));
1919 head = next;
/illumos-gate/usr/src/uts/common/io/afe/
H A Dafe.c2136 int head, cnt; local
2140 head = afep->afe_rxhead;
2145 rmd = &afep->afe_rxdescp[head];
2146 rxb = afep->afe_rxbufs[head];
2148 SYNCRXDESC(afep, head, DDI_DMA_SYNC_FORKERNEL);
2231 SYNCRXDESC(afep, head, DDI_DMA_SYNC_FORDEV);
2234 head = (head + 1) % AFE_RXRING;
2237 afep->afe_rxhead = head;
/illumos-gate/usr/src/uts/common/io/pcn/
H A Dpcn.c895 int head, cnt; local
899 head = pcnp->pcn_rxhead;
902 rmd = &pcnp->pcn_rxdescp[head];
903 rxb = pcnp->pcn_rxbufs[head];
905 SYNCRXDESC(pcnp, head, DDI_DMA_SYNC_FORKERNEL);
951 SYNCRXDESC(pcnp, head, DDI_DMA_SYNC_FORDEV);
953 head = (head + 1) % PCN_RXRING;
956 pcnp->pcn_rxhead = head;
/illumos-gate/usr/src/uts/sun/io/
H A Dzs_hdlc.c1773 register mblk_t *head = NULL, *tail = NULL; local
1844 if (!head) {
1847 head = mp;
1850 tail = head;
1878 while (head) {
1880 putnext(q, head);
1883 mp = head;
1884 head = head->b_next;
/illumos-gate/usr/src/uts/intel/io/amr/
H A Damr.c158 static void amr_call_pkt_comp(struct amr_command *head);
2185 struct amr_command *ac, *head, *tail; local
2187 head = tail = NULL;
2239 if (head) {
2244 tail = head = ac;
2258 if (head != NULL) {
2259 amr_call_pkt_comp(head);
2270 amr_call_pkt_comp(register struct amr_command *head) argument
2275 localhead = head;
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dfindstack.c763 stacks_entry_t *head = NULL, *tail = NULL, *sp; local
776 if (head == NULL)
777 head = sp;
784 if (head == NULL)
788 cur = sep = head;
/illumos-gate/usr/src/uts/common/fs/
H A Dfem.c58 #define FEM_HEAD(_t) femtype[(_t)].head.fn_op.anon
62 struct fem_node head; member in struct:fem_type_info
364 * Addref can only be called while its head->lock is held.
416 * These are the 'head' operations which perform the interposition.
421 * method, the corresponding 'head' routine should unearth the base method
2039 * for each "head"operation.
2870 struct fem_head *head; local
2872 head = kmem_alloc(sizeof (*head), KM_SLEEP);
2873 mutex_init(&head
[all...]
/illumos-gate/usr/src/tools/onbld/Scm/
H A DBackup.py59 this head.
61 ... for each outgoing head
678 workspace head.
681 head, or "working" for the working directory.
694 outgoing head. If the working copy contains modified files,
695 it is a head, and neither of its parents are.
715 for head in heads:
716 if head.rev() is None:
717 c = head.parents()
719 c = [head]
[all...]
/illumos-gate/usr/src/uts/common/io/virtio/
H A Dvirtio.c706 struct vq_entry *head = qe; local
756 vq->vq_avail->ring[idx % vq->vq_num] = head->qe_index;
771 struct vq_entry *head; local
795 head = &vq->vq_entries[slot];
797 return (head);
/illumos-gate/usr/src/cmd/mandoc/
H A Dman_term.c513 if ((nn = n->parent->head->child) != NULL &&
597 if ((nn = n->parent->head->child) != NULL &&
679 if ((nn = n->parent->head->child) != NULL &&
880 n = n->parent->head;
916 mt->offset -= n->parent->head->aux;
/illumos-gate/usr/src/cmd/mdb/common/modules/idm/
H A Didm.c1598 sess->sess_queue_pending.head);
1600 sess->sess_queue_completion.head);
1645 if (sess->sess_queue_pending.head) {
1647 idc, (uintptr_t)sess->sess_queue_pending.head)
1652 if (sess->sess_queue_completion.head) {
1654 idc, (uintptr_t)sess->sess_queue_completion.head)
1942 if (ini_conn.conn_queue_active.head &&
1944 (uintptr_t)ini_conn.conn_queue_active.head) == -1)) {
1947 if (ini_conn.conn_queue_idm_aborting.head &&
1949 (uintptr_t)ini_conn.conn_queue_idm_aborting.head)
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/impl/
H A Dscsi_watch.c87 struct scsi_watch_request *sw_head; /* head of linked list */
90 uchar_t sw_flags; /* to start at head of list */
535 * to start reading from head of list again.
688 head:
729 goto head;
804 goto head;
/illumos-gate/usr/src/lib/libc_db/common/
H A Dthread_db.c229 thr_hash_table_t head; local
233 &head, sizeof (head)) != PS_OK)
235 if ((psaddr_t)head.hash_bucket == NULL)
237 else if (ps_pdread(ph_p, (psaddr_t)head.hash_bucket +
242 ta_p->single_ulwp_addr = (psaddr_t)head.hash_bucket;
245 thr_hash_table32_t head; local
249 &head, sizeof (head)) != PS_OK)
251 if ((psaddr_t)head
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/envmon/
H A Dpiclenvmon.c276 ptr->head = NULL;
291 while ((pel = pnl->head) != NULL) {
292 pnl->head = pel->next;
313 listp->head = pel;
448 if (listp->head == NULL) {
453 *envmoninfh = listp->head->nodeh;
/illumos-gate/usr/src/cmd/mdb/common/modules/mdb_ks/
H A Dmdb_ks.c191 uintptr_t head; /* kernel va of head of hash chain */ local
239 for (i = 0, head = nc_hash_addr; i < nc_hashsz;
240 i++, head += sizeof (nc_hash_t)) {
256 if (mdb_vread(&nch, sizeof (nc_hash_t), head) == -1) {
262 ncprev_va = head;
265 while (nc_va != head) {
/illumos-gate/usr/src/uts/common/io/ib/clients/eoib/
H A Deib_data.c117 mblk_t *head = NULL; local
152 head = tail = NULL;
184 if (head)
187 head = mp;
206 if (head) {
207 mac_rx(ss->ei_mac_hdl, NULL, head);
/illumos-gate/usr/src/lib/libnsl/rpc/
H A Dsvc_vc.c742 struct entry *head = NULL; local
892 if (head == NULL)
893 head = e;
1066 if (head != NULL) {
1068 r->t_call = head->t_call;
1069 e = head;
1070 head = head->next;
/illumos-gate/usr/src/cmd/avs/dscfg/
H A Ddscfgadm.sh321 FILE_LOC=`head -1 $CLUSTER_REF`
371 FILECONTENTS=`strings $TMP_FILE | head -1 2>/dev/null`
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dassfail.c99 common_panic(const char *head, const char *why) argument
110 (void) strcpy(msg, head);

Completed in 207 milliseconds

<<11121314151617181920>>