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

1234567891011>>

/illumos-gate/usr/src/lib/libc/port/unwind/
H A Dunwind.c75 __cleanup_t *head; local
93 if ((head = self->ul_clnup_hdr) != NULL && fp == head->fp) {
94 self->ul_clnup_hdr = head->next;
96 _ex_clnup_handler(head->arg, head->func);
104 } else if (head != NULL) {
/illumos-gate/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.c167 pplint(char* head, char* comment, char* tail, int line) argument
/illumos-gate/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++;
/illumos-gate/usr/src/cmd/audio/include/
H A DAudioList.h67 AudioListEntry head; // list head member in class:AudioList
/illumos-gate/usr/src/lib/udapl/udapl_tavor/include/
H A Ddapl_provider.h68 DAPL_PROVIDER_LIST_NODE *head; member in struct:DAPL_PROVIDER_LIST
/illumos-gate/usr/src/cmd/lp/cmd/lpadmin/
H A Dpick_opts.c54 char ** head; local
61 head = new_opts;
82 for (new_opts = head; *new_opts != NULL; new_opts++) {
/illumos-gate/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...]
/illumos-gate/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...]
/illumos-gate/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;
/illumos-gate/usr/src/cmd/mailx/
H A Dreceipt.c55 char head[LINESIZE]; local
78 readline(fp, head);
79 if (parse_headline(head, hl) != 0) {
/illumos-gate/usr/src/cmd/sgs/include/
H A Dlist.h51 Listnode *head; /* the first element */ member in struct:list
66 Elf32_Addr head; /* the first element */ member in struct:list32
/illumos-gate/usr/src/cmd/syslogd/
H A Dlist.c36 ll_init(llh_t *head) argument
38 head->back = &head->front;
39 head->front = NULL;
42 ll_enqueue(llh_t *head, ll_t *data) argument
45 *head->back = data;
46 head->back = &data->n;
54 ll_mapf(llh_t *head, void (*func)(void *)) argument
56 ll_t *t = head->front;
66 ll_peek(llh_t *head) argument
71 ll_dequeue(llh_t *head) argument
104 ll_check(llh_t *head) argument
[all...]
/illumos-gate/usr/src/tools/cscope-fast/
H A Dhistory.c42 HISTORY *head, *tail, *current; variable
57 head = tail = h;
/illumos-gate/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...]
/illumos-gate/usr/src/uts/common/io/mr_sas/
H A Dmr_sas_list.c38 * @head: list head to add it after
40 * Insert a new entry after the specified head.
44 mlist_add(struct mlist_head *new, struct mlist_head *head) argument
46 __list_add(new, head, head->next);
52 * @head: list head to add it before
54 * Insert a new entry before the specified head.
58 mlist_add_tail(struct mlist_head *new, struct mlist_head *head) argument
93 mlist_empty(struct mlist_head *head) argument
104 mlist_splice(struct mlist_head *list, struct mlist_head *head) argument
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derror_map.h34 static inline int gsserrmap_init (struct gsserrmap__head *head) argument
36 head->first = NULL;
39 static inline void gsserrmap_destroy (struct gsserrmap__head *head) argument
44 for (e = head->first; e; e = e_next) {
52 head->first = NULL;
56 gsserrmap__find_node (struct gsserrmap__head *head, OM_uint32 key) argument
59 for (e = head->first; e; e = e->next)
66 gsserrmap_find (struct gsserrmap__head *head, OM_uint32 key) argument
68 struct gsserrmap__element *e = gsserrmap__find_node(head, key);
86 gsserrmap_replace_or_insert (struct gsserrmap__head *head, argument
[all...]
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_path.c76 au_buff_t *head; local
81 head = NULL;
90 if (head)
91 tail->next_buf = m; /* tail set if head set */
93 head = m;
99 return (head);
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_sack.c44 * sack_blk_t *head: pointer to the array of SACK blks.
50 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num) argument
57 head[0].begin = begin;
58 head[0].end = end;
69 * 4. head part of new SACK blk overlaps with another blk.
73 * to head.
82 if (SEQ_LT(end, head[i].begin) || SEQ_GT(begin, head[i].end)) {
84 tmp[j].begin = head[i].begin;
85 tmp[j].end = head[
133 tcp_sack_remove(sack_blk_t *head, tcp_seq end, int32_t *num) argument
192 tcp_notsack_insert(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
337 tcp_notsack_remove(notsack_blk_t **head, tcp_seq end, int32_t *num, uint32_t *sum) argument
391 tcp_notsack_update(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
[all...]
/illumos-gate/usr/src/uts/common/io/aggr/
H A Daggr_recv.c84 mblk_t *cmp, *last, *head; local
90 head = cmp = mp;
94 if (head == cmp) {
96 head = cmp->b_next;
99 cmp = head;
105 head);
107 freemsgchain(head);
109 head = cmp->b_next;
112 cmp = head;
126 if (head
[all...]
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp_sack.c50 * sack_blk_t *head: pointer to the array of SACK blks.
56 tcp_sack_insert(sack_blk_t *head, tcp_seq begin, tcp_seq end, int32_t *num) argument
63 head[0].begin = begin;
64 head[0].end = end;
75 * 4. head part of new SACK blk overlaps with another blk.
79 * to head.
88 if (SEQ_LT(end, head[i].begin) || SEQ_GT(begin, head[i].end)) {
90 tmp[j].begin = head[i].begin;
91 tmp[j].end = head[
139 tcp_sack_remove(sack_blk_t *head, tcp_seq end, int32_t *num) argument
198 tcp_notsack_insert(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
342 tcp_notsack_remove(notsack_blk_t **head, tcp_seq end, int32_t *num, uint32_t *sum) argument
398 tcp_notsack_update(notsack_blk_t **head, tcp_seq begin, tcp_seq end, int32_t *num, uint32_t *sum) argument
[all...]
/illumos-gate/usr/src/lib/libast/common/path/
H A Dpathfind.c45 Dir_t* head; /* directory list head */ member in struct:__anon2658
61 for (dp = state.head; dp; dp = dp->next)
71 state.head = state.tail = dp;
136 for (dp = state.head; dp; dp = dp->next)
/illumos-gate/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...]
/illumos-gate/usr/src/lib/libast/common/vmalloc/
H A Dvmopen.c43 Head_t head; /* space for the fake header */ member in struct:_vminit_
/illumos-gate/usr/src/cmd/lp/lib/forms/
H A Dwrform.c189 print_sdn(int fd, char *head, SCALED sdn) argument
194 (void)fdprintf(fd, "%s ", head);
201 print_str(int fd, char *head, char *str) argument
206 (void)fdprintf(fd, "%s %s\n", head, str);

Completed in 151 milliseconds

1234567891011>>