Searched refs:next (Results 701 - 725 of 2472) sorted by relevance

<<21222324252627282930>>

/illumos-gate/usr/src/cmd/krb5/kwarn/
H A Dkwarnd_proc.c75 struct config_entry_s *next; member in struct:config_entry_s
89 struct cred_warning_list_s *next; member in struct:cred_warning_list_s
117 for (cw = cred_warning_list; cw != NULL; cw = cw->next) {
195 cred_warning->next = cred_warning_list;
248 cred_warning = cred_warning->next) {
251 cred_warning_list = cred_warning->next;
253 prev->next = cred_warning->next;
577 config_entry->next = config_entry_list;
596 config_entry = config_entry->next) {
[all...]
/illumos-gate/usr/src/cmd/tcpd/
H A Dinetcf.c46 struct inet_ent *next; member in struct:inet_ent
284 ip->next = inet_list;
300 for (ip = inet_list; ip; ip = ip->next)
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7curi.h120 struct uri_rd_s *next; /* Next response descriptor */ member in struct:uri_rd_s
124 struct uri_desc_s *hash; /* Hash *next */
184 (uri)->tail->next = (rdp); \
188 (rdp)->next = NULL; \
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_harmless.c126 unsigned next = 0; local
135 next = (cur+1) % dhp->dh_maxcount;
137 dhp->dh_next_to_use = next;
H A Ddwarf_ranges.c48 struct ranges_entry *next; member in struct:ranges_entry
115 last->next = re;
142 curre = curre->next;
/illumos-gate/usr/src/uts/common/inet/kssl/
H A Dksslimpl.h54 struct kssl_chain_s *next; member in struct:kssl_chain_s
60 struct kssl_proxy_s *next; member in struct:kssl_proxy_s
66 struct kssl_fallback_s *next; member in struct:kssl_fallback_s
/illumos-gate/usr/src/uts/common/io/1394/
H A Ds1394_misc.c513 uint_t next; local
525 for (next = CRC, shift = 28; shift >= 0; shift -= 4) {
526 sum = ((next >> 12) ^ (data >> shift)) & 0xF;
527 next = (next << 4) ^ (sum << 12) ^ (sum << 5) ^ (sum);
529 CRC = next & IEEE1394_CRC16_MASK;
550 uint_t next; local
559 for (next = CRC, shift = 28; shift > 0; shift -= 4) {
560 sum = ((next >> 12) ^ (data >> shift)) & 0xF;
561 next
[all...]
/illumos-gate/usr/src/lib/sun_sas/common/
H A Devent.c91 hba_ptr = hba_ptr->next) {
95 hba_port_ptr = hba_port_ptr->next) {
103 phy_ptr->next) {
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxnbo.c63 struct xmca *next; member in struct:xmca
218 mblk_t *next, *keep, *keep_head, *free, *free_head; local
229 for (; mp != NULL; mp = next) {
232 next = mp->b_next;
401 xmca_t *next = loop->next; local
409 loop = next;
539 xnbop->o_mca = this->next;
541 prev->next = this->next;
[all...]
/illumos-gate/usr/src/uts/common/ipp/ipgpc/
H A Dclassifier-objects.h147 ipp_action_id_t next_action; /* next action id */
157 plink next; member in struct:element_node_s
182 ht_node_p next; /* link to next node in chain */ member in struct:ht_node_s
281 ht_chain next; /* link to next node in chain */ member in struct:ht_match_s
/illumos-gate/usr/src/uts/sun4v/promif/
H A Dpromif_node.c106 pnode_t next; local
110 next = promif_stree_nextnode(p1275_cell2dnode(ci[3]));
112 ci[4] = p1275_dnode2cell(next);
285 * next component of the path.
/illumos-gate/usr/src/cmd/fm/modules/sun4v/generic-mem/
H A Dgmem_dimm.c66 tstamp_t *tsp, *next; local
90 tsp != NULL; tsp = next) {
91 next = gmem_list_next(tsp);
330 gmem_dimm_t *dimm, *next; local
332 for (dimm = gmem_list_next(&gmem.gm_dimms); dimm != NULL; dimm = next) {
333 next = gmem_list_next(dimm);
532 gmem_dimm_t *dimm = NULL, *next = NULL; local
535 dimm = next) {
536 next = gmem_list_next(dimm);
547 gmem_dimm_t *dimm = NULL, *next local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A Ddnssec.h36 RRVerifier *next; member in struct:RRVerifier_struct
52 AuthChain *next; // Next element in the chain member in struct:AuthChain_struct
105 RRVerifierSet next; member in struct:DNSSECVerifier_struct
/illumos-gate/usr/src/lib/libc/port/aio/
H A Daio.c76 aio_worker_t *__nextworker_rw; /* next worker in list of workers */
83 aio_worker_t *__nextworker_no; /* next worker in list of workers */
250 * The next open may re-use this file descriptor and the new file
694 aio_worker_t *next; local
710 next = first;
712 _aio_cancel_work(next, fd, &canceled, &done);
713 } while ((next = next->work_forw) != first);
1709 * Add an AIO request onto the next work queue.
1710 * A circular list of workers is used to choose the next worke
1919 aio_req_t *next; local
2046 aio_req_t *next; local
2072 aio_req_t *next = NULL; local
2099 aio_req_t *next = NULL; local
[all...]
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dregcomp.c63 char *next; /* next character in RE */ member in struct:parse
130 #define PEEK() (*p->next)
131 #define PEEK2() (*(p->next+1))
132 #define MORE() (p->next < p->end)
133 #define MORE2() (p->next+1 < p->end)
138 #define NEXT() (p->next++)
139 #define NEXT2() (p->next += 2)
140 #define NEXTn(n) (p->next += (n))
141 #define GETNEXT() (*p->next
[all...]
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Drap.c57 smb_rap_parserqparam(const char *s, char **next, int *rlen) argument
88 *(const char **)next = s;
93 smb_rap_parserpparam(const char *s, char **next, int *rlen) argument
117 *(const char **)next = s;
122 smb_rap_parserpdata(const char *s, char **next, int *rlen) argument
147 *(const char **)next = s;
/illumos-gate/usr/src/lib/libproc/common/
H A Dproc_names.c414 char *next; local
417 i = strtol(str, &next, 0);
418 if (i > 0 && i <= PRMAXFAULT && *next == '\0') {
457 char *next; local
460 i = strtol(str, &next, 0);
461 if (i > 0 && i <= PRMAXSYS && *next == '\0') {
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_argvec.c140 const char *next; local
149 next = strchr(start, ',');
151 if (next == NULL)
154 len = next - start;
173 if (next == NULL)
175 start = next + 1;
316 * Otherwise use the next argv element as
/illumos-gate/usr/src/cmd/rpcbind/
H A Dcheck_bound.c68 struct fdlist *next; member in struct:fdlist
165 fdl->next = NULL;
170 fdtail->next = fdl;
309 for (fdl = fdhead; fdl; fdl = fdl->next)
333 for (fdl = fdhead; fdl; fdl = fdl->next)
423 for (fdl = fdhead; fdl; fdl = fdl->next)
/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Dserver.c233 state.sid_history[i].next = state.sid_history_size;
548 result->mappings.mappings_val[cb_data->next].id1.idmap_id_u.sid.prefix =
550 result->mappings.mappings_val[cb_data->next].id1.idmap_id_u.sid.rid =
552 result->mappings.mappings_val[cb_data->next].id1.idtype =
555 result->mappings.mappings_val[cb_data->next].id2.idmap_id_u.uid =
557 result->mappings.mappings_val[cb_data->next].id2.idtype =
564 result->mappings.mappings_val[cb_data->next].direction =
567 result->mappings.mappings_val[cb_data->next].direction =
570 result->mappings.mappings_val[cb_data->next].direction =
573 STRDUP_OR_FAIL(result->mappings.mappings_val[cb_data->next]
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dlistmgr.c53 char *avail_ptr; /* ptr to the next available list element */
56 struct alloc_seg *next; /* next record */ member in struct:alloc_seg
114 nextstr_ptr = segstr_ptr->next;
176 alloc_segment->next = NULL;
207 * next one and then point to the new one.
209 bl_ptr->cur_segment->next = new_alloc_cs;
212 new_alloc_cs->next = NULL;
279 * Get the next available entry in the list. This will allocate memory as
331 cur_as_ptr = cur_as_ptr->next;
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dsubr.c90 static major_t next = 0; local
100 if (next == 0)
101 next = devcnt;
102 if (next <= L_MAXMAJ32 && next >= devcnt)
103 ret = next++;
230 p = strchr(s, ','); /* find next option */
234 *p++ = '\0'; /* mark end and point to next */
236 *optionsp = p; /* point to next option */
/illumos-gate/usr/src/uts/common/io/
H A Dwinlockio.c305 struct segproc *next; /* next client of this lock */ member in struct:segproc
319 struct seglock *next; /* next lock */ member in struct:seglock
368 * "next" field in SegLock
396 static int next_lock = 0; /* next lock cookie */
837 for (lp = lock_list; lp != NULL; lp = lp->next) {
861 for (lp = lock_list; lp != NULL; lp = lp->next) {
886 lock_free_list = lp->next;
916 lp->next
[all...]
/illumos-gate/usr/src/uts/common/io/lvm/raid/
H A Draid_hotspare.c328 md_link_t *next; local
340 for (next = raid_md_ops.md_head; next != NULL; next = next->ln_next) {
341 ui = MDI_UNIT(next->ln_id);
/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc.c134 mdoc->next = ROFF_NEXT_CHILD;
150 mdoc->next = ROFF_NEXT_SIBLING;
177 mdoc->next = ROFF_NEXT_CHILD;
200 mdoc->next = ROFF_NEXT_CHILD;
208 p->prev = p->next = NULL;
267 * where they should be put on the next line.
273 * outside, they affect the next line.
306 mdoc->next = ROFF_NEXT_SIBLING;
377 /* Jump to the next non-whitespace word. */

Completed in 136 milliseconds

<<21222324252627282930>>