HomeSort by relevance Sort by last modified time
    Searched refs:nextp (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /onnv/onnv-gate/usr/src/cmd/vntsd/
queue.c 60 el->nextp = NULL;
91 while (p->nextp != NULL)
92 p = p->nextp;
93 p->nextp = el;
116 q = q->nextp;
130 el->nextp = q->nextp;
131 q->nextp = el;
153 p = p->nextp;
164 *que_hd = p->nextp;
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/ib/clients/rds/
rdsib_sc.c 73 struct rds_node_record_s *nextp; member in struct:rds_node_record_s
133 p = p->nextp;
142 p->nextp = NULL;
160 p->nextp = rds_pathmap;
200 p = p->nextp;
246 p->prevp->nextp = p->nextp;
250 rds_pathmap = p->nextp;
253 if (p->nextp) {
254 p->nextp->prevp = p->prevp
    [all...]
  /onnv/onnv-gate/usr/src/tools/ctf/common/
list.c 61 list_t **nextp; local
63 for (nextp = list; *nextp; nextp = &((*nextp)->l_next)) {
64 if (cmp((*nextp)->l_data, data) > 0)
68 list_add(nextp, data);
  /onnv/onnv-gate/usr/src/cmd/write/
write.c 585 char *cp, *nextp, *lastp; local
604 nextp = buf;
606 while (nextp < lastp) {
607 if ((n = (lastp - nextp)) > (unsigned int)MB_CUR_MAX)
609 if ((n = mbtowc((wchar_t *)0, nextp, n)) <= 0) {
610 if ((lastp - nextp) < (unsigned int)MB_CUR_MAX)
614 nextp += n;
617 delta_size = lastp - nextp;
619 if (nextp[delta_size - 1] != '\n') {
621 memcpy(delta_pool, nextp, delta_size)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/enhance/
enhance.c 567 char *nextp; /* A pointer to the next unprocessed character */ local
612 nextp = crptr && crptr < nlptr ? crptr : nlptr;
614 nextp = crptr;
616 nextp = rbuff + len;
618 nextp = NULL;
623 if(nextp) {
635 (void) pty_write_to_fd(STDOUT_FILENO, rbuff, nextp - rbuff);
643 while(*nextp=='\n' || *nextp=='\r')
644 nextp++
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4v/sys/
vsw_fdb.h 57 struct mfdb_ent *nextp; /* next entry in list */ member in struct:mfdb_ent
vio_util.h 112 struct vio_mblk_pool *nextp; /* next in a list */ member in struct:vio_mblk_pool
  /onnv/onnv-gate/usr/src/uts/common/crypto/api/
kcf_cbufcall.c 163 kcf_cbuf_elem_t *nextp = cbufp->kc_next; local
166 if (nextp != NULL)
167 nextp->kc_prev = prevp;
172 prevp->kc_next = nextp;
174 cbuf_list_head = nextp;
  /onnv/onnv-gate/usr/src/lib/libdiskmgt/common/
cache.c 165 slice_t *nextp; local
167 nextp = dp->next;
170 dp = nextp;
176 slice_t *nextp; local
178 nextp = dp->next;
181 dp = nextp;
271 alias_t *nextp; local
273 nextp = ap->next;
275 ap = nextp;
880 disk_t *nextp; local
887 controller_t *nextp; local
894 bus_t *nextp; local
    [all...]
inuse_fs.c 341 struct vfstab_list *nextp; local
344 nextp = listp->next;
348 listp = nextp;
inuse_lu.c 156 struct lu_list *nextp; local
159 nextp = listp->next;
163 listp = nextp;
inuse_mnt.c 166 struct mntpnt_list *nextp; local
169 nextp = listp->next;
173 listp = nextp;
inuse_vxvm.c 242 struct vxvm_list *nextp; local
245 nextp = listp->next;
248 listp = nextp;
  /onnv/onnv-gate/usr/src/uts/common/io/aggr/
aggr_send.c 79 mblk_t *nextp; local
96 nextp = mp->b_next;
134 ret_mp->b_next = nextp;
140 if ((mp = nextp) == NULL)
  /onnv/onnv-gate/usr/src/cmd/fps/fpsd/
fpsd_esutil.c 131 di_prop_t nextp; local
180 for (nextp = di_prop_next(node, DI_PROP_NIL); nextp != DI_PROP_NIL;
181 nextp = di_prop_next(node, nextp)) {
182 if (strcmp(di_prop_name(nextp), "pm-components") == 0) {
  /onnv/onnv-gate/usr/src/lib/libtecla/common/
expand.c 128 int xplicit, const char *nextp);
501 const char *nextp; /* The pointer to the character that follows the part */ local
518 for(nextp=pattern; *nextp && strncmp(nextp, FS_DIR_SEP, FS_DIR_SEP_LEN) != 0;
519 nextp++)
527 * Does the latest file match the pattern up to nextp?
529 if(ef_string_matches_pattern(file, pattern, file[0]=='.', nextp)) {
543 if(*nextp == '\0') {
553 strncmp(nextp, FS_DIR_SEP, FS_DIR_SEP_LEN) == 0)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/hal/utils/
cdutils.c 285 intlist_t **nextp; local
302 for (nextp = speeds; *nextp != NULL; nextp = &((*nextp)->next)) {
303 if (current->val == (*nextp)->val) {
306 } else if (current->val > (*nextp)->val) {
311 current->next = *nextp;
312 *nextp = current;
  /onnv/onnv-gate/usr/src/uts/common/io/1394/
s1394_fa.c 148 s1394_target_t *curp, **nextp, *prevp = NULL; local
150 for (nextp = &fal->fal_head; (curp = *nextp) != NULL; ) {
152 *nextp = target->target_fa[type].fat_next;
159 nextp = &curp->target_fa[type].fat_next;
  /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/nfslog/
buffer_list.c 265 struct buffer_ent *bep, *nextp; local
267 for (bep = *be_listpp; bep != NULL; bep = nextp) {
268 nextp = bep->be_next;
290 struct sharepnt_ent *nextp; local
292 for (; sep_listp != NULL; sep_listp = nextp) {
293 nextp = sep_listp->se_next;
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
getspent_r.c 114 getfield(constp *nextp, constp limit, int uns, void *valp)
116 constp p = *nextp;
126 *nextp = p;
162 *nextp = p;
  /onnv/onnv-gate/usr/src/uts/common/fs/ctfs/
ctfs_all.c 124 offset_t *offp, offset_t *nextp, void *unused, int flags)
143 *nextp = next + 1;
ctfs_tdir.c 111 offset_t *offp, offset_t *nextp, void *data, int flags)
131 *nextp = next + 1;
  /onnv/onnv-gate/usr/src/uts/common/fs/objfs/
objfs_root.c 109 offset_t *offp, offset_t *nextp, void *data, int flags)
151 *nextp = mp->mod_id + 1;
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
defs.h 126 struct linkbuf *nextp; member in struct:linkbuf
  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/disk-monitor/
diskmon_conf.c 214 indicator_t *nextp; local
217 nextp = indp->next;
223 indp = nextp;
257 ind_action_t *nextp; local
261 nextp = lap->next;
265 lap = nextp;
300 indrule_t *nextp; local
304 nextp = lrp->next;
308 lrp = nextp;
372 diskmon_t *nextp; local
    [all...]

Completed in 6139 milliseconds

1 2 3 4