Searched refs:next (Results 101 - 125 of 2472) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasFreeLibrary.c79 hba_ptr = hba_ptr->next) {
90 scsi_info = scsi_info->next;
94 tgt_port = tgt_port->next;
103 phy_ptr = phy_ptr->next;
108 hba_port = hba_port->next;
117 open_handle = open_handle->next;
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfflsbuf.c56 n = f->next - (data = f->data);
64 if(f->next < f->endb || !(f->flags&SF_STRING) )
65 n = f->next - (data = f->data);
75 { *f->next++ = c;
100 f->next = f->data+n;
122 inpc = f->endb-f->next;
H A Dsfungetc.c69 if(f->next > f->data && f->next[-1] == (uchar)c)
70 { f->next -= 1;
87 if(f->next == f->data)
100 f->next = data+16;
104 *--f->next = (uchar)c;
H A Dsfclrlock.c51 { f->here -= f->endb-f->next;
52 f->endb = f->next;
H A Dsfsync.c36 reg Sfpool_t *p, *next; local
44 for(p = &_Sfpool; p; p = next)
45 { /* find the next legitimate pool */
46 for(next = p->next; next; next = next->next)
47 if(next
[all...]
H A Dsfreserve.c56 { if((n = f->endb - f->next) > 0 && n == f->val )
57 { data = (Void_t*)f->next;
58 f->next += n;
85 if((n = f->endb - f->next) < 0)
104 if((n = now = f->endb - f->next) < 0)
113 { if((iosz = f->push->endb - f->push->next) == 0)
135 if((n = f->endb - f->next) < sz)
137 { f->endb = f->endr = f->next;
151 if((n = f->endb - f->next) <= 0)
169 data = (Void_t*)f->next;
[all...]
/illumos-gate/usr/src/lib/libast/common/stdio/
H A Dfgets.c43 if((p = f->endb - (ps = f->next)) <= 0 )
57 ps = f->next+p;
62 p = ps-f->next;
71 { f->next[p-1] = c;
72 if((ps-f->next) >= p)
79 f->next = ps;
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dmemcluster.c64 void * next; member in struct:__anon3881
222 e->next = NULL;
227 e->next = activelists[max_size];
250 char *curr, *next; local
261 next = curr + mem_target;
263 ((memcluster_element *)curr)->next = next;
264 curr = next;
265 next += mem_target;
271 ((memcluster_element *)curr)->next
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetpwnam_r.c244 char *p, *next; local
265 next = buffer;
267 passwd->pw_name = p = gettok(&next); /* username */
290 passwd->pw_passwd = p = gettok(&next); /* password */
305 p = next; /* uid */
321 tmp = strtoul(p, &next, 10);
322 if (next == p || errno != 0) {
341 if (*next++ != ':') {
343 (void) gettok(&next);
347 p = next; /* gi
[all...]
H A Dlfind.c61 char *next = base + *nelp * width; /* End of table */ local
63 for (; base < next; base += width)
H A Dlsearch.c60 char *next = base + *nelp * width; /* End of table */ local
63 for (; base < next; base += width)
67 res = memcpy(base, key, width); /* base now == next */
/illumos-gate/usr/src/cmd/users/
H A Dusers.c67 * getopt Extract the next option from the command line
68 * optind The argument count of the next option to extract from
74 * getpwent Get next entry from the /etc/passwd file
75 * getgrent Get next entry from the /etc/group file
113 struct reqgrp *next; member in struct:reqgrp
125 struct reqlogin *next; member in struct:reqlogin
260 * nextblkaddr Address of the next available chunk of aligned
376 struct grpmember *next; member in struct:grpmember
404 * to the member-name and a pointer to the next item in the structure.
421 new->next
486 struct display *next; member in struct:display
[all...]
/illumos-gate/usr/src/cmd/projects/
H A Dprojects.c137 struct projlist *pl, *next; local
188 next = pl->pl_next;
192 pl = next;
203 char **next; local
212 next = projent->pj_users;
213 if (*next == NULL) {
216 (void) fprintf(stdout, "%s\n", *next);
217 for (next++; *next != NULL; next
[all...]
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Dttymux_rcm_impl.h58 * (ie the next and prev fields).
66 struct rsrc *next; member in struct:rsrc
90 struct link *next; member in struct:link
/illumos-gate/usr/src/cmd/busstat/
H A Dbusstat.h132 struct evt_node *next; member in struct:evt_node
144 struct dev_node *next; member in struct:dev_node
/illumos-gate/usr/src/uts/common/sys/scsi/impl/
H A Dscsi_reset_notify.h51 struct scsi_reset_notify_entry *next; member in struct:scsi_reset_notify_entry
59 scsi_reset_notify_entry::next))
/illumos-gate/usr/src/uts/common/sys/
H A Dddi_hp_impl.h55 struct ddi_hp_cn_handle *next; /* Next Connector/Port. */ member in struct:ddi_hp_cn_handle
109 (node)->next = NULL; \
110 for (curr = (head); curr; prev = curr, curr = curr->next); \
114 prev->next = (node); \
121 for (curr = (head); curr; prev = curr, curr = curr->next) { \
127 (head) = (head)->next; \
129 prev->next = curr->next; \
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_sack.c208 tmp = tmp->next;
235 prev->next = tmp->next;
237 *head = tmp->next;
263 new->next = tmp->next;
266 tmp->next = new;
286 tmp = tmp->next;
299 prev->next = tmp->next;
[all...]
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp_sack.c214 tmp = tmp->next;
241 prev->next = tmp->next;
243 *head = tmp->next;
268 new->next = tmp->next;
271 tmp->next = new;
291 tmp = tmp->next;
304 prev->next = tmp->next;
[all...]
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_readdir.c156 for (l = list; l != NULL; l = l->next)
235 struct off_tbl *offtp, *next = NULL; local
241 for (offtp = rdcp->offtp; offtp != NULL; offtp = next) {
243 next = offtp->next;
244 this_bucket = (next == NULL);
246 this_bucket = (offset < next->offset);
256 * loop to look in next bucket
260 for (l = list; l != NULL && l->offset < offset; l = l->next)
287 nl = l->next;
428 struct off_tbl *p, *next = NULL; local
442 struct dir_entry *p, *next = NULL; local
566 struct autofs_rddir_cache *p, *next = NULL; local
[all...]
/illumos-gate/usr/src/lib/libtecla/common/
H A Dfreelist.c42 FreeListBlock *next; /* The next block in the list */ member in struct:FreeListBlock
142 for(block=fl->block; block; block=block->next)
148 for(block=fl->block; block; block=block->next) {
198 FreeListBlock *next = fl->block; local
199 while(next) {
200 FreeListBlock *block = next;
201 next = block->next;
245 block->next
[all...]
/illumos-gate/usr/src/lib/libadm/common/
H A Dgetdgrp.c64 * next Pointer to the next in the list
69 struct dgrplist *next; member in struct:dgrplist
246 dgrplistfirst.next = NULL;
279 p = q->next;
282 p = p->next;
297 newnode->next = p;
298 q->next = newnode;
351 for (pmbr = dgrp->membership; notfound && pmbr; pmbr = pmbr->next) {
460 for (pdgrpent = dgrplistfirst.next; pdgrpen
[all...]
/illumos-gate/usr/src/cmd/audio/utilities/
H A DAudioList.cc40 aptr(0), next(0), prev(0)
51 if (next != 0) {
52 next->prev = prev;
55 prev->next = next;
79 next = after->next;
80 after->next = this;
81 if (next != 0)
82 next
[all...]
/illumos-gate/usr/src/cmd/sendmail/db/mp/
H A Dmp_sync.c42 int ar_cnt, nalloc, next, maxpin, ret, wrote; local
183 for (next = 0; next < ar_cnt; ++next) {
191 if (bharray[next]->ref > 1) {
192 --bharray[next]->ref;
197 mfp = R_ADDR(dbmp, bharray[next]->mf_offset);
198 ret = __memp_bhwrite(dbmp, mfp, bharray[next], NULL, &wrote);
201 --bharray[next]->ref;
213 (u_long)bharray[next]
322 int ar_cnt, incomplete, nalloc, next, ret, wrote; local
[all...]
/illumos-gate/usr/src/cmd/sgs/ar/common/
H A Dcmd.c283 ARFILE *next; local
299 for (next = getfile(cmd_info); next; next = getfile(cmd_info)) {
300 if ((next->ar_longname[0] == 0) && (next->ar_rawname[0] != 0))
303 match(next->ar_longname, cmd_info) != NULL ||
304 match(next->ar_rawname, cmd_info) != NULL) {
310 f = create_extract(next, rawname, f_len, cmd_info);
316 mesg('x', next
354 ARFILE *next; local
447 ARFILE *next; local
[all...]

Completed in 597 milliseconds

1234567891011>>