Searched refs:next (Results 251 - 275 of 2472) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/lib/libast/common/path/
H A Dpathfind.c39 struct Dir_s* next; /* next in list */ member in struct:Dir_s
61 for (dp = state.head; dp; dp = dp->next)
67 dp->next = 0;
69 state.tail = state.tail->next = dp;
136 for (dp = state.head; dp; dp = dp->next)
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dschedule.c40 struct later * next; member in struct:later
205 prs = prs->next);
213 prs = prs->next);
229 if (!LaterHead.next)
232 pl->next = LaterHead.next;
233 LaterHead.next = pl;
271 TempHead.next = 0;
272 for (pl = (plprev = &LaterHead)->next; pl; pl = plnext) {
273 plnext = pl->next;
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/sunw/
H A Dsunw_updrec.c56 new->r_glink.next =
58 new->r_link.next = 0;
103 __ISC_ns_updrec *next; local
105 for (; list != 0; list = next) {
106 next = list->r_link.next;
128 r->r_link.next = 0;
132 r->r_glink.next = 0;
135 r->r_glink.next = (void *)-1;
138 p->r_link.next
[all...]
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Diexpr.c54 struct iexpr *next; /* next entry in hash bucket */ member in struct:iexpr
195 return (iexpr_cmp(np1->u.name.next, np2->u.name.next));
240 for (cp = bucketp; cp != NULL; cp = cp->next)
251 cp->next = bucketp;
268 for (cp = Cache[idx]; cp != NULL; cp = cp->next) {
275 Cache[idx] = cp->next;
277 prevcp->next = cp->next;
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_tree.c41 int final:1; /* Indicate don't search next file */
45 struct profile_node *next, *prev; member in struct:profile_node
57 struct profile_node *child, *next; local
67 for (child=node->first_child; child; child = next) {
68 next = child->next;
135 for (p = node->first_child; p; last = p, p = p->next) {
138 if (last && (last->next != p))
170 for (p=section->first_child, last = 0; p; last = p, p = p->next) {
183 new->next
[all...]
/illumos-gate/usr/src/lib/libslp/clib/
H A Dslp_queue.c37 * slp_dequeue: remove and return the next message on the queue
39 * slp_dequeue_timed: remove and return the next message on the queue
56 struct queue_entry *next; member in struct:queue_entry
129 qe->next = NULL;
131 q->tail->next = qe;
158 qe->next = q->head;
178 if (!qe->next) /* last one in queue */
181 q->head = qe->next;
244 pn = p->next;
/illumos-gate/usr/src/lib/libcpc/common/
H A Dsubr.c157 p->next = NULL;
169 p = p->next;
188 for (p = hash; p != NULL; p = p->next) {
197 tmp = hash->next;
198 hash->next = p;
199 p->next = tmp;
216 hash->cur = hash->cur->next;
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/locality/
H A DLocalityDomain.java172 Component comp = (Component) cpuIt.next();
198 Component comp = (Component) cpuIt.next();
213 LocalityGroup cand = (LocalityGroup) groupIt.next();
236 LocalityGroup g1 = (LocalityGroup) outer.next();
238 LocalityGroup g2 = (LocalityGroup) inner.next();
282 next();
325 next();
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipqosconf/
H A Dipqosconf.h149 #define IPQOS_CONF_NEXT_STR "next"
191 struct ipqos_list_el_s *next; member in struct:ipqos_list_el_s
206 struct str_val_nd *next; member in struct:str_val_nd
246 struct ipqos_conf_filter_s *next; member in struct:ipqos_conf_filter_s
270 struct ipqos_conf_act_ref_s *next; member in struct:ipqos_conf_act_ref_s
282 struct ipqos_conf_class_s *next; member in struct:ipqos_conf_class_s
299 struct ipqos_conf_params_s *next; member in struct:ipqos_conf_params_s
318 struct ipqos_conf_action_s *next; member in struct:ipqos_conf_action_s
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dstats.c39 struct stats *next; member in struct:stats
91 Laststats->next = ret;
105 for (p = NULL, s = Statslist; s != NULL; s = s->next)
113 Statslist = s->next;
115 p->next = s->next;
239 for (sp = Statslist; sp; sp = sp->next)
/illumos-gate/usr/src/cmd/avs/dsstat/
H A Dsndr_stats.c117 for (cur = sndr_top; cur != NULL; cur = cur->next) {
129 goto next;
144 goto next;
157 goto next;
170 goto next;
174 next:
240 for (cur = sndr_top; cur != NULL; cur = cur->next) {
363 sndrstat_t *next; local
373 next = sndr_del_stat(cur);
377 cur = sndr_top = next;
580 sndrstat_t *next = sndrstat->next; local
[all...]
/illumos-gate/usr/src/uts/common/fs/ctfs/
H A Dctfs_all.c127 ctid_t next; local
133 next = contract_lookup(zuniqid, *offp);
135 if (next == -1) {
140 odp->d_ino = CTFS_INO_CT_LINK(next);
141 numtos(next, odp->d_name);
142 *offp = next;
143 *nextp = next + 1;
H A Dctfs_tdir.c114 ctid_t next; local
121 next = contract_type_lookup(ty, zuniqid, *offp);
123 if (next == -1) {
128 odp->d_ino = CTFS_INO_CT_DIR(next);
129 numtos(next, odp->d_name);
130 *offp = next;
131 *nextp = next + 1;
/illumos-gate/usr/src/lib/libnisdb/
H A Dldap_parse.c177 told = t->next;
179 t->next = tlist;
181 t->next = 0;
188 told = t->next;
189 t->next = 0;
250 for (o = to = t->objectDN; o != 0; o = o->next) {
275 x->next = 0;
302 /* Insert last on the 't->next' list */
303 for (p = t; p->next != 0; p = p->next);
[all...]
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Dmemory.c197 /* Move offset to next bank_status string */
246 new->next = NULL;
258 while (bank->next)
259 bank = bank->next;
262 bank->next = new;
284 for (bank = bank_head; bank; bank = bank->next) {
328 tmp_bank = bank->next;
331 tmp_bank = tmp_bank->next;
334 /* Is next bank on the same mc ? */
344 tmp_bank = tmp_bank->next;
[all...]
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dtdb_agent.c154 sap->next = (uintptr_t)(sap + 1);
155 sap->next = (uintptr_t)0;
161 tdbp->tdb_sync_addr_free = (tdb_sync_stats_t *)(uintptr_t)sap->next;
162 sap->next = (uintptr_t)0;
209 sap->next = (uintptr_t)(sap + 1);
210 sap->next = (uintptr_t)0;
214 udp->tdb_hash_lock_stats.next = (uintptr_t)0;
282 sap = (tdb_sync_stats_t *)(uintptr_t)sap->next) {
309 sap = (tdb_sync_stats_t *)(uintptr_t)sap->next)
331 sapp = &sap->next;
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dbeep.c349 int next; local
371 next = beep_state.queue_tail + 1;
372 if (next == beep_state.queue_size)
373 next = 0;
375 if (next != beep_state.queue_head) {
387 beep_state.queue_tail = next;
437 int next; local
462 next = beep_state.queue_head;
464 frequency = beep_state.queue[next].frequency;
466 duration = beep_state.queue[next]
[all...]
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfrd.c41 for(p = _Sfpool.next; p; p = p->next)
45 if(!SFFROZEN(f) && f->next > f->data &&
54 if(!SFFROZEN(f) && f->next > f->data &&
88 if(f->next < f->endb)
92 { f->endb = f->next = f->endr = f->data;
101 f->next = f->endb = f->endr = f->endw = f->data;
114 { if((r = (f->data+f->extent) - f->next) < 0)
142 { n += f->endb - f->next;
150 else f->here -= f->endb-f->next;
[all...]
H A Dsfseek.c43 f->next = f->endr = f->endw = f->data;
119 r = p + (f->next - f->data);
126 f->next = f->data+p;
147 { s = f->here + (f->next - f->data);
155 if(f->next > f->data && SFSYNC(f) < 0)
175 s = f->here - (f->endb - f->next);
194 f->next = f->endb - (f->here - r);
208 if((f->next - f->data) < ((f->endb - f->data)/4) )
222 if(f->endb > f->next)
224 f->iosz = (f->next
[all...]
/illumos-gate/usr/src/uts/common/io/myri10ge/drv/
H A Dmyri10ge_lro.c131 lro->next = ss->lro_free;
225 for (lro = ss->lro_active; lro != NULL; lro = lro->next) {
235 ss->lro_active = lro->next;
238 while (curr->next != lro)
239 curr = curr->next;
240 curr->next = lro->next;
302 ss->lro_active = lro->next;
305 while (curr->next != lro)
306 curr = curr->next;
[all...]
/illumos-gate/usr/src/uts/common/rpc/
H A Drpc_subr.c225 char *next, *p; local
244 (void) strtoi(addr, &next);
245 (void) strtoi(next, &next);
246 (void) strtoi(next, &next);
247 (void) strtoi(next, &next);
248 p1 = strtoi(next, &next);
[all...]
/illumos-gate/usr/src/cmd/fm/modules/sun4v/etm/
H A Detm_ckpt.c177 int i, next; /* temp counters */ local
204 for (i = il1->il_head; i != il1->il_tail; i = next) {
205 next = (i + 1) % il1->il_max;
206 p1 = s1 + next;
211 next, il2->il_tail);
244 int i, next; /* temp counter */ local
256 for (i = etm_id_lst->il_head; i != etm_id_lst->il_tail; i = next) {
257 next = (i + 1) % etm_id_lst->il_max;
258 p = s + next;
273 int next; local
316 int i, next; /* temp counter */ local
419 int i, next; /* temp counter */ local
[all...]
/illumos-gate/usr/src/uts/common/vm/
H A Dvm_usage.c702 * by the previous node. We know that the next node
706 * start we want and the next node.
802 vmu_bound_t *next, *new_next, *tmp; local
805 next = *first;
817 /* If bound already has type, proceed to next bound. */
818 if (next->vmb_type != VMUSAGE_BOUND_UNKNOWN) {
819 if (next == *last)
821 next = AVL_NEXT(tree, next);
824 while (new_next->vmb_end < next
861 vmu_bound_t *next; local
899 vmu_bound_t *next; local
994 vmu_bound_t *next; local
[all...]
/illumos-gate/usr/src/cmd/geniconvtbl/
H A Dassemble.c79 for (name = name_first; name; name = name->next) {\
168 "size(10) referencer next\n"));
171 for (ref = ref_first[i], j = 0; ref; ref = ref->next, j++) {
177 ref->referencer, ref->next));
213 ref; sec_num += 1, sec_size += ref->size, ref = ref->next) {}
222 ref; sec_num += 1, sec_size += ref->size, ref = ref->next) {}
231 ref; sec_num += 1, sec_size += ref->size, ref = ref->next) {}
240 ref; sec_num += 1, sec_size += ref->size, ref = ref->next) {
250 ref; sec_num += 1, sec_size += ref->size, ref = ref->next) {
260 ref; sec_num += 1, sec_size += ref->size, ref = ref->next) {}
[all...]
/illumos-gate/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSessionUtil.c69 session_p1 = session_p->next;
158 new_sp->next = NULL;
162 new_sp->next = soft_session_list;
201 sp->next = NULL;
206 ses_delay_freed.last->next = sp;
216 tmp = ses_delay_freed.first->next;
260 if (session_p->next) {
261 soft_session_list = session_p->next;
262 session_p->next->prev = NULL;
269 if (session_p->next) {
[all...]

Completed in 87 milliseconds

<<11121314151617181920>>