HomeSort by relevance Sort by last modified time
    Searched defs:where (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /netvirt/usr/src/lib/libcmdutils/common/
avltree.c 164 avl_index_t where; local
189 if (avl_find(*stree, tnode, &where) == NULL) {
190 avl_insert(*stree, tnode, where);
  /netvirt/usr/src/cmd/ssh/sshd/
auth2-pam.c 89 const char *where = "authenticating"; local
97 where = "authorizing";
129 where = "changing authentication tokens (password)";
165 "while %s", where);
190 "while %s: %.200s", retval, where,
  /netvirt/usr/src/cmd/rexd/
where.c 28 * where.c - get full pathname including host:
31 #pragma ident "@(#)where.c 1.15 07/04/02 SMI"
61 * where(pn, host, fsname, within)
71 where(pn, host, fsname, within) function
83 printf("where: pn %s\n", pn);
92 printf("where: stat failed");
  /netvirt/usr/src/lib/libzfs/common/
libzfs_config.c 179 uu_avl_index_t where; local
200 verify(uu_avl_find(hdl->libzfs_ns_avl, cn, NULL, &where)
203 uu_avl_insert(hdl->libzfs_ns_avl, cn, where);
libzfs_changelist.c 420 char where[64]; local
437 sizeof (property), &sourcetype, where, sizeof (where),
450 sizeof (property), &share_sourcetype, where, sizeof (where),
  /netvirt/usr/src/uts/common/fs/zfs/
zfs_rlock.c 107 avl_index_t where; local
157 rl = avl_find(tree, new, &where);
161 rl = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
165 rl = (rl_t *)avl_nearest(tree, where, AVL_BEFORE);
170 avl_insert(tree, new, where);
270 zfs_range_add_reader(avl_tree_t *tree, rl_t *new, rl_t *prev, avl_index_t where)
300 next = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
304 avl_insert(tree, new, where);
359 avl_index_t where; local
367 prev = avl_find(tree, new, &where);
    [all...]
spa_errlog.c 48 * This log is then shipped into an nvlist where the key is the dataset name and
132 avl_index_t where; local
153 if (avl_find(tree, &search, &where) != NULL) {
160 avl_insert(tree, new, where);
vdev_cache.c 328 avl_index_t where; local
335 ve = avl_find(&vc->vc_offset_tree, &ve_search, &where);
338 ve = avl_nearest(&vc->vc_offset_tree, where, AVL_AFTER);
space_map.c 83 avl_index_t where; local
98 ss = avl_find(&sm->sm_root, &ssearch, &where);
110 ss_before = avl_nearest(&sm->sm_root, where, AVL_BEFORE);
111 ss_after = avl_nearest(&sm->sm_root, where, AVL_AFTER);
128 avl_insert(&sm->sm_root, ss, where);
137 avl_index_t where; local
149 ss = avl_find(&sm->sm_root, &ssearch, &where);
186 avl_index_t where; local
197 ss = avl_find(&sm->sm_root, &ssearch, &where);
231 avl_index_t where; local
    [all...]
  /netvirt/usr/src/cmd/sgs/libld/common/
groups.c 81 avl_index_t where; local
97 if ((gpnp = avl_find(avlt, &gpn, &where)) != NULL) {
111 avl_insert(avlt, gpnp, where);
version.c 199 avl_index_t where; local
253 if (sdp = ld_sym_find(name, vdp->vd_hash, &where, ofl)) {
296 &where)) == (Sym_desc *)S_ERROR)
  /netvirt/usr/src/cmd/sgs/tools/common/
string_table.c 203 avl_index_t where; local
229 if ((lnp = avl_find(stp->st_lentree, &ln, &where)) == NULL) {
233 avl_insert(stp->st_lentree, lnp, where);
248 if ((snp = avl_find(lnp->ln_strtree, &sn, &where)) == NULL) {
252 avl_insert(lnp->ln_strtree, snp, where);
  /netvirt/usr/src/cmd/xntpd/xntpd/
ntp_unixclock.c 345 off_t where; local
517 if ((where = nl[N_TICK].n_value) == 0)
524 if (lseek(kmem, where, SEEK_SET) == -1)
644 if ((where = nl[N_TICKADJ].n_value) == 0)
651 if (lseek(kmem, where, SEEK_SET) == -1)
  /netvirt/usr/src/lib/libsec/common/
aclcheck.c 377 int where; local
382 &where, flag);
  /netvirt/usr/src/lib/print/libprint/common/
misc.c 425 char *where = NULL; local
428 for (element = strtok_r(string, seperators, &where); element != NULL;
429 element = strtok_r(NULL, seperators, &where))
  /netvirt/usr/src/uts/common/io/aggr/
aggr_ctl.c 132 uchar_t *where; /* in user buffer */ member in struct:aggr_ioc_info_state
154 if (copyout(&grp, state->where, sizeof (grp)) != 0)
157 state->where += sizeof (grp);
178 if (copyout(&port, state->where, sizeof (port)) != 0)
181 state->where += sizeof (port);
203 state.where = (uchar_t *)arg + sizeof (laioc_info_t);
  /netvirt/usr/src/uts/common/io/vnic/
vnic_ctl.c 312 uchar_t *where; member in struct:vnic_ioc_info_state
335 if (copyout(&vn, state->where, sizeof (vn)) != 0)
338 state->where += sizeof (vn);
351 state.where = (uchar_t *)arg + sizeof (*info_arg);
  /netvirt/usr/src/cmd/filesync/
main.c 288 * analysis (where we don't even look at the other side. This
496 { char *s, *where; local
501 /* figure out where the files should be located */
503 where = (s && *s) ? expand(s) : expand(DFLT_PRFX);
506 if (where == 0) {
512 strcpy(namebuf, where);
519 strcpy(namebuf, where);
531 strcpy(namebuf, where);
  /netvirt/usr/src/cmd/rpcgen/
rpc_util.c 60 char *where = curline; /* current point in line */ variable
81 where = curline;
399 for (i = 0; i < where - curline; i++) {
  /netvirt/usr/src/common/avl/
avl.c 87 * adjacent to where a new value would be inserted in the tree. The value
217 avl_nearest(avl_tree_t *tree, avl_index_t where, int direction)
219 int child = AVL_INDEX2CHILD(where);
220 avl_node_t *node = AVL_INDEX2NODE(where);
242 * *where (if not NULL) is set to indicate the insertion point
246 avl_find(avl_tree_t *tree, void *value, avl_index_t *where)
263 if (where != NULL)
264 *where = 0;
272 if (where != NULL)
273 *where = AVL_MKINDEX(prev, child)
625 avl_index_t where; local
    [all...]
  /netvirt/usr/src/lib/libbc/inc/include/rpc/
rpc_msg.h 84 caddr_t where; member in struct:accepted_reply::__anon2536::__anon2538
  /netvirt/usr/src/lib/libdtrace/common/
dt_handle.c 153 char where[30]; local
185 len = sizeof (where) + sizeof (offinfo) + strlen(faultstr) +
193 (void) sprintf(where, "predicate");
195 (void) sprintf(where, "action #%d", err.dteda_action);
221 details, where, offinfo);
  /netvirt/usr/src/lib/libnisdb/
db.cc 173 entryp where, prev; local
206 res->status = internal_db.first(&where, &single);
208 assign_next_desc(&(res->nextinfo), where);
235 res->status = internal_db.next(prev, &where,
239 where);
337 * Where as on the replica these operations are not synchronous
565 * Where as on the replica these operations are not synchronous
  /netvirt/usr/src/stand/lib/fs/nfs/
xdr_rec.c 45 * by n bytes of data, where n is contained in the header. The header
481 caddr_t where; local
485 where = rstrm->in_base;
487 where += i;
493 if ((len = (*(rstrm->readit))(rstrm->tcp_handle, where, len)) == -1)
495 rstrm->in_finger = where;
496 where += len;
497 rstrm->in_boundry = where;
  /netvirt/usr/src/ucblib/libucb/port/gen/
nlist.c 494 long where = 0L; local
496 if ((where = lseek(fd, 0L, 1)) == -1L) {
512 if ((lseek(fd, where + SYMESZ + (AUXESZ * sym->n_numaux), 0)) == -1L) {

Completed in 1098 milliseconds

1 2 3 4