Searched refs:next (Results 976 - 1000 of 2472) sorted by relevance

<<31323334353637383940>>

/illumos-gate/usr/src/cmd/vntsd/
H A Dqueue.c103 vntsd_que_insert_after(vntsd_que_t *que, void *handle, void *next) argument
124 el = alloc_que_el(next);
/illumos-gate/usr/src/common/fs/
H A Dufsops.c317 * get next entry in a directory.
361 * Get the next block of data from the file. If possible, dma right into
426 * Get the next block of data from the file. Don't attempt to go directly
787 struct cache *next; member in struct:cache
801 entry->next = icache;
805 entry->next = 0;
816 entry = entry->next;
824 struct cache *next, *entry = icache; local
826 next = entry->next;
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/wpad/
H A Dwpa_impl.h133 struct rsn_pmksa_cache *next; member in struct:rsn_pmksa_cache
142 struct rsn_pmksa_candidate *next; member in struct:rsn_pmksa_candidate
/illumos-gate/usr/src/cmd/dis/
H A Ddis_target.c93 struct dis_tgt *dt_next; /* next target (for archives) */
489 dis_tgt_t *next = safe_malloc(sizeof (dis_tgt_t)); local
490 next->dt_elf_root = tgt->dt_elf_root;
491 next->dt_fd = -1;
492 current->dt_next = next;
493 current = next;
572 * Return the next target in the list, if this is an archive.
586 dis_tgt_t *current, *next; local
590 next = current->dt_next;
596 current = next;
[all...]
/illumos-gate/usr/src/cmd/lvm/metassist/layout/
H A Dlayout_dlist_util.c437 for (itr1 = hbas1; itr1 != NULL; itr1 = itr1->next) {
441 for (itr2 = hbas2; itr2 != NULL; itr2 = itr2->next) {
/illumos-gate/usr/src/cmd/mdb/common/modules/ipc/
H A Dipc.c134 msgq_wakeup_t *walker, next; local
144 if (mdb_vread(&next, sizeof (msgq_wakeup_t),
153 next.msgw_thrd, next.msgw_type,
156 msgw_wake_cv), next.msgw_snd_size);
159 next.msgw_thrd, next.msgw_type,
167 (msgq_wakeup_t *)next.msgw_list.list_next;
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java270 long next, step;
287 next = value * factor;
288 step = (next > nsteps) ? (next / nsteps) : 1;
294 if ((value += step) != next)
297 next = value * factor;
298 step = (next > nsteps) ? (next / nsteps) : 1;
/illumos-gate/usr/src/cmd/cmd-crypto/cryptoadm/
H A Dcryptoadm.h71 struct mechlist *next; member in struct:mechlist
87 struct entrylist *next; member in struct:entrylist
/illumos-gate/usr/src/cmd/grep_xpg4/
H A Dgrep.c75 struct _PATTERN *next; member in struct:_PATTERN
596 pp->next = patterns;
621 for (npatterns = 0, pp = patterns; pp != NULL; pp = pp->next) {
921 /* read the next input */
1038 for (pp = patterns; pp; pp = pp->next) {
1047 for (pp = patterns; pp; pp = pp->next) {
1065 for (pp = patterns; pp; pp = pp->next) {
1073 for (pp = patterns; pp; pp = pp->next) {
1082 for (pp = patterns; pp; pp = pp->next) {
/illumos-gate/usr/src/tools/cscope-fast/
H A Dglobal.h60 struct history *next; member in struct:history
141 extern int nextline; /* next line to be shown */
164 struct keystruct *next; member in struct:keystruct
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Dpro_reloc.c244 int next = dbg->de_reloc_next_to_return; local
249 for (i = next; i < NUM_DEBUG_SECTIONS; ++i) {
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dt4_l2t.c132 struct l2t_entry *rover; /* starting point for next allocation */
171 for (p = &d->l2tab[e->hash].first; *p; p = &(*p)->next) {
173 *p = e->next;
174 e->next = NULL;
334 mblk_t *m, *next; local
338 for (m = e->arpq_head; m; m = next) {
339 next = m->b_next;
467 * The TOE wants an L2 table entry that it can use to reach the next hop over
490 for (e = d->l2tab[hash].first; e; e = e->next) {
515 e->next
[all...]
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasGetPortAttributesByWWN.c91 hba_port_ptr = hba_port_ptr->next) {
139 hba_disco_port = hba_disco_port->next) {
H A DSun_sasScsiReportLUNs.c130 hba_port_ptr = hba_port_ptr->next) {
161 hba_disco_port = hba_disco_port->next) {
H A DSun_sasSendSMPPassThru.c150 hba_port_ptr = hba_port_ptr->next) {
181 hba_disco_port = hba_disco_port->next) {
H A Ddevtree_hba_disco.c56 scsi_info = scsi_info->next;
60 tgt_port = tgt_port->next;
70 phy_ptr = phy_ptr->next;
76 hba_port = hba_port->next;
297 port_ptr->next = hba_ptr->first_port;
389 hba_ptr = hba_ptr->next) {
540 new_hba->next = global_hba_head;
581 new_hba->next = global_hba_head;
H A Ddevtree_phy_disco.c56 phy_ptr = phy_ptr->next;
186 phy_ptr->next = port_ptr->first_phy;
/illumos-gate/usr/src/stand/lib/fs/nfs/
H A Dlookup.c125 next:
134 * Process the next component of the pathname.
232 * Save this entry in cache for next time ...
308 * Skip to next component of the pathname.
320 goto next;
/illumos-gate/usr/src/uts/common/io/hotplug/hpcsvc/
H A Dhpcsvc.c109 * bus_next - pointer to next list entry
119 hpc_event_entry_t *next; member in struct:hpc_event_entry
186 * slot_{prev,next} - point to {previous,next} node in the list
222 hpc_callback_entry_t *next; member in struct:hpc_callback_entry
750 eventp->next != NULL; eventp = eventp->next)
752 eventp->next = hpc_alloc_event_entry();
753 eventp = eventp->next;
757 eventp->next
[all...]
/illumos-gate/usr/src/uts/common/io/ral/
H A Drt2560_var.h106 int next; member in struct:rt2560_tx_ring
127 int next; member in struct:rt2560_rx_ring
/illumos-gate/usr/src/uts/common/io/rwd/
H A Drt2661_var.h59 int next; member in struct:rt2661_tx_ring
76 int next; member in struct:rt2661_rx_ring
/illumos-gate/usr/src/uts/common/io/rwn/
H A Drt2860_var.h78 SLIST_ENTRY(rt2860_tx_data) next; member in struct:rt2860_tx_data
87 int next; member in struct:rt2860_tx_ring
/illumos-gate/usr/src/uts/common/sys/ib/clients/of/sol_ofs/
H A Dsol_ofs_common.h194 struct genlist_entry_s *next; member in struct:genlist_entry_s
209 for (_pos = (_head)->head; _pos; _pos = _pos->next)
/illumos-gate/usr/src/uts/common/sys/
H A Dddidevmap.h131 struct devmap_softlock *next; member in struct:devmap_softlock
141 struct devmap_ctx *next; member in struct:devmap_ctx
/illumos-gate/usr/src/lib/libast/common/hash/
H A Dhashalloc.c181 tab->root->next = hash_info.list;
186 tab->next = tab->root->references;

Completed in 136 milliseconds

<<31323334353637383940>>