Searched defs:head (Results 1 - 25 of 126) sorted by relevance

123456

/osnet-11/usr/src/lib/libc/port/unwind/
H A Dunwind.c73 __cleanup_t *head; local
91 if ((head = self->ul_clnup_hdr) != NULL && fp == head->fp) {
92 self->ul_clnup_hdr = head->next;
94 _ex_clnup_handler(head->arg, head->func);
102 } else if (head != NULL) {
/osnet-11/usr/src/lib/libpp/common/
H A Dppcomment.c31 ppcomment(char* head, char* comment, char* tail, int line) argument
34 ppprintf("%s%-.*s%s", head, MAXTOKEN - 4, comment, tail);
H A Dppargs.c169 pplint(char* head, char* comment, char* tail, int line) argument
/osnet-11/usr/src/grub/grub2/include/grub/net/
H A Dnetbuff.h12 grub_uint8_t *head; member in struct:grub_net_buff
/osnet-11/usr/src/lib/mpapi/libmpscsi_vhci/common/
H A DMP_SetTPGAccess.c46 MP_TPG_STATE_PAIR *head = pTpgStateList; local
99 if (head->tpgOid.ownerId != g_pluginOwnerID) {
111 if (head->tpgOid.objectType !=
125 head++;
129 head = pTpgStateList;
138 = head->desiredState;
142 = head->tpgOid.objectSequenceNumber;
200 head++;
/osnet-11/usr/src/lib/udapl/udapl_tavor/include/
H A Ddapl_provider.h68 DAPL_PROVIDER_LIST_NODE *head; member in struct:DAPL_PROVIDER_LIST
/osnet-11/usr/src/lib/efcode/engine/
H A Dresource.c37 find_resource(fc_resource_t **head, void *ptr, int (cmp)(void *, void *)) argument
39 fc_resource_t *f, *prev, *r = *head;
50 *head = r->next;
68 add_resource(fc_resource_t **head, void *ptr, int (cmp)(void *, void *)) argument
72 r = find_resource(head, ptr, cmp);
76 r->next = *head;
77 *head = r;
85 free_resource(fc_resource_t **head, void *ptr, int (cmp)(void *, void *)) argument
89 if ((r = find_resource(head, ptr, cmp)) != NULL)
108 fc_resource_t **head; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/kern/
H A Dlist.c25 grub_list_push (grub_list_t *head, grub_list_t item) argument
27 item->next = *head;
28 *head = item;
32 grub_list_remove (grub_list_t *head, grub_list_t item) argument
36 for (p = head, q = *p; q; p = &(q->next), q = q->next)
45 grub_named_list_find (grub_named_list_t head, const char *name) argument
49 FOR_LIST_ELEMENTS (item, head)
57 grub_prio_list_insert (grub_prio_list_t *head, grub_prio_list_t nitem) argument
63 for (p = head, q = *p; q; p = &(q->next), q = q->next)
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-macho2img.c41 struct grub_macho_header32 *head; local
80 head = (struct grub_macho_header32 *) buf;
81 if (grub_le_to_cpu32 (head->magic) != GRUB_MACHO_MAGIC32)
89 curcmd = (struct grub_macho_segment32 *) (buf + sizeof (*head));
90 for (i = 0; i < grub_le_to_cpu32 (head->ncmds); i++,
/osnet-11/usr/src/lib/libc/amd64/unwind/
H A Dthrp_unwind.c53 __cleanup_t *head; local
69 while ((head = *headp) != NULL &&
70 (caddr_t)cfa == head->fp + CFA_ADJUST) {
71 *headp = head->next;
72 (*head->func)(head->arg);
91 __cleanup_t *head; local
114 while ((head = *headp) != NULL) {
115 *headp = head->next;
116 (*head
[all...]
/osnet-11/usr/src/lib/libc/port/gen/
H A Datfork.c55 atfork_t *head; local
70 if ((head = udp->atforklist) == NULL) {
74 head->back->forw = atfp;
75 atfp->forw = head;
76 atfp->back = head->back;
77 head->back = atfp;
/osnet-11/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_ring_buffer_util.c85 rbuf->head = 0;
127 if (rbuf->head != rbuf->tail) {
208 pos = rbuf->head;
211 rbuf->head = (pos + 1) & rbuf->lim;
242 if (rbuf->head != rbuf->tail) {
273 int head; local
277 head = rbuf->head;
280 if (head == tail)
282 if (head > tai
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derror_map.h33 static inline int gsserrmap_init (struct gsserrmap__head *head) argument
35 head->first = NULL;
38 static inline void gsserrmap_destroy (struct gsserrmap__head *head) argument
43 for (e = head->first; e; e = e_next) {
51 head->first = NULL;
55 gsserrmap__find_node (struct gsserrmap__head *head, OM_uint32 key) argument
58 for (e = head->first; e; e = e->next)
65 gsserrmap_find (struct gsserrmap__head *head, OM_uint32 key) argument
67 struct gsserrmap__element *e = gsserrmap__find_node(head, key);
85 gsserrmap_replace_or_insert (struct gsserrmap__head *head, argument
[all...]
/osnet-11/usr/src/lib/libast/common/path/
H A Dpathfind.c45 Dir_t* head; /* directory list head */ member in struct:__anon1175
61 for (dp = state.head; dp; dp = dp->next)
71 state.head = state.tail = dp;
136 for (dp = state.head; dp; dp = dp->next)
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfpool.c97 /* move a stream to head */
107 reg Sfio_t* head; local
116 head = p->sf[0];
117 if(SFFROZEN(head) )
120 SFLOCK(head,0);
123 if(!(p->mode&SF_SHARE) || (head->mode&SF_READ) || (f->mode&SF_READ) )
124 { if(SFSYNC(head) < 0)
128 { if(SFMODE(head,1) != SF_WRITE && _sfmode(head,SF_WRITE,1) < 0)
132 v = head
[all...]
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmopen.c43 Head_t head; /* space for the fake header */ member in struct:_vminit_
/osnet-11/usr/src/lib/libslp/clib/
H A Dslp_queue.c61 slp_queue_entry_t *head; member in struct:queue
105 q->head = NULL;
130 if (q->head != NULL) { /* queue is not emptry */
134 q->head = q->tail = qe;
144 * Inserts a message at the head of the queue. This is useful for inserting
158 qe->next = q->head;
159 q->head = qe;
173 slp_queue_entry_t *qe = q->head;
179 q->head = q->tail = NULL;
181 q->head
[all...]
/osnet-11/usr/src/lib/libsmedia/library/common/
H A Dl_defines.h46 int32_t head; member in struct:format_track
/osnet-11/usr/src/lib/libntfs/common/include/ntfs/
H A Dlist.h71 * @head: list head to add it after
73 * Insert a new entry after the specified head.
76 static __inline__ void list_add(struct list_head *new, struct list_head *head) argument
78 __list_add(new, head, head->next);
84 * @head: list head to add it before
86 * Insert a new entry before the specified head.
89 static __inline__ void list_add_tail(struct list_head *new, struct list_head *head) argument
137 list_empty(struct list_head *head) argument
147 list_splice(struct list_head *list, struct list_head *head) argument
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Ddnssrv.c71 struct srv_dns_entry *head = NULL; local
154 if (head == NULL || head->priority > srv->priority) {
155 srv->next = head;
156 head = srv;
166 for (entry = head; entry != NULL; entry = entry->next) {
183 *answers = head;
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/
H A Drc_mem.c36 struct authlist *ta, *pta = NULL, *head; local
66 head = t->h[rephash];
68 free(head);
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/mpool/
H A Dmpool.c120 struct _hqh *head; local
132 * it to the head of the hash chain, the tail of the lru chain,
145 head = &mp->hqh[HASHKEY(bp->pgno)];
146 CIRCLEQ_INSERT_HEAD(head, bp, hq);
156 struct _hqh *head; local
170 head = &mp->hqh[HASHKEY(bp->pgno)];
171 CIRCLEQ_REMOVE(head, bp, hq);
188 struct _hqh *head; local
207 * Move the page to the head of the hash chain and the tail
210 head
353 struct _hqh *head; local
449 struct _hqh *head; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dgptsync.c43 int cylinder, head, sector; local
47 head = (lba / sectors) % heads;
58 *dh = head;
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dlist.h33 void EXPORT_FUNC(grub_list_push) (grub_list_t *head, grub_list_t item);
34 void EXPORT_FUNC(grub_list_remove) (grub_list_t *head, grub_list_t item);
70 void * EXPORT_FUNC(grub_named_list_find) (grub_named_list_t head,
94 void EXPORT_FUNC(grub_prio_list_insert) (grub_prio_list_t *head,
98 grub_prio_list_remove (grub_prio_list_t *head, grub_prio_list_t item) argument
102 grub_list_remove (GRUB_AS_LIST_P (head), GRUB_AS_LIST (item));
H A Drelocator_private.h94 grub_mm_header_t head; member in struct:grub_relocator_mmap_event::__anon806::__anon807

Completed in 92 milliseconds

123456