Searched refs:where (Results 26 - 50 of 273) sorted by relevance

1234567891011

/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_table_c.x56 entryp where;
230 % 'where'. Return NULL in both if no next entry is found. */
231 % entry_object_p first_entry( entryp * where );
237 %/* Returns entry at location 'where', NULL if location is invalid. */
241 % or add to end of table) and return the the position of where the record
278 % void setEntryExp(entryp where, entry_object *obj, int initialLoad);
H A Ddb_mindex.cc427 db_mindex::first(entryp *where, entry_object ** answer) argument
456 entry_object_p ptr = table->first_entry(where);
469 * valid and next entry is found; DB_NOTFOUND otherwise. Sets 'where' to
470 * location of where entry is found for input as subsequent 'next' operation.
473 db_mindex::next(entryp previous, entryp *where, entry_object **answer) argument
482 entry_object * ptr = table->next_entry(previous, where);
540 * setting the pointer 'answer' to point to a copy of it. 'where' is set
541 * so that the other answers could be gotten by passing 'where' to 'next'
547 db_next_index_desc **where, entry_object ** answer)
562 *where
546 first(db_query *q, db_next_index_desc **where, entry_object ** answer) argument
583 next(db_next_index_desc *previous, db_next_index_desc **where, entry_object **answer) argument
654 entryp where; local
[all...]
/illumos-gate/usr/src/cmd/ypcmd/
H A Dypxfrd_client.c91 off64_t where; local
107 where = (((off64_t)PAG->pag_u.ok.blkno) * PBLKSIZ);
108 (void) lseek64(db->dbm_pagf, where, L_SET);
142 off64_t where; local
152 where = (((off64_t)DIR->dir_u.ok.blkno) * DBLKSIZ);
153 (void) lseek64(db->dbm_dirf, where, L_SET);
/illumos-gate/usr/src/uts/common/io/aggr/
H A Daggr_ctl.c136 uchar_t *where; /* in user buffer */ member in struct:aggr_ioc_info_state
161 if (ddi_copyout(&grp, state->where, sizeof (grp), state->mode) != 0)
164 state->where += sizeof (grp);
185 if (ddi_copyout(&port, state->where, sizeof (port), state->mode) != 0)
188 state->where += sizeof (port);
202 state.where = (uchar_t *)arg + sizeof (laioc_info_t);
/illumos-gate/usr/src/cmd/sgs/rtld.4.x/
H A Drtld.4.x.c277 long *where = (long *)((caddr_t)rp->r_address + ip->crt_baseaddr); local
283 what += *where << (32-22);
284 value = (*where & ~MASK(22)) | ((what >> (32-22)) & MASK(22));
285 wrt(where, value);
286 where++;
287 what += (*where & MASK(10));
288 value = (*where & ~MASK(10)) | (what & MASK(10));
289 wrt(where, value);
293 what += *where;
294 wrt(where, wha
[all...]
/illumos-gate/usr/src/common/avl/
H A Davl.c89 * adjacent to where a new value would be inserted in the tree. The value
226 avl_nearest(avl_tree_t *tree, avl_index_t where, int direction) argument
228 int child = AVL_INDEX2CHILD(where);
229 avl_node_t *node = AVL_INDEX2NODE(where);
251 * *where (if not NULL) is set to indicate the insertion point
255 avl_find(avl_tree_t *tree, const void *value, avl_index_t *where) argument
272 if (where != NULL)
273 *where = 0;
281 if (where != NULL)
282 *where
482 avl_insert(avl_tree_t *tree, void *new_data, avl_index_t where) argument
634 avl_index_t where; local
[all...]
/illumos-gate/usr/src/uts/common/fs/smbclnt/netsmb/
H A Dsmb_pass.c79 * ZoneID: ZoneID of the zone from where the login request is initiated.
207 avl_index_t where; local
226 tmp, &where)) != NULL) {
279 avl_index_t where; local
312 tmp = (smb_passid_t *)avl_find(t, cpid, &where);
314 avl_insert(t, cpid, where);
333 avl_index_t where; local
352 tmp = (smb_passid_t *)avl_find(t, cpid, &where);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_rlock.c108 avl_index_t where; local
158 rl = avl_find(tree, new, &where);
162 rl = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
166 rl = (rl_t *)avl_nearest(tree, where, AVL_BEFORE);
171 avl_insert(tree, new, where);
271 zfs_range_add_reader(avl_tree_t *tree, rl_t *new, rl_t *prev, avl_index_t where) argument
301 next = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
305 avl_insert(tree, new, where);
360 avl_index_t where; local
368 prev = avl_find(tree, new, &where);
[all...]
H A Drange_tree.c166 avl_index_t where; local
176 rs = avl_find(&rt->rt_root, &rsearch, &where);
188 rs_before = avl_nearest(&rt->rt_root, where, AVL_BEFORE);
189 rs_after = avl_nearest(&rt->rt_root, where, AVL_AFTER);
227 avl_insert(&rt->rt_root, rs, where);
241 avl_index_t where; local
252 rs = avl_find(&rt->rt_root, &rsearch, &where);
306 avl_index_t where; local
315 return (avl_find(&rt->rt_root, &rsearch, &where));
H A Ddsl_deadlist.c218 avl_index_t where; local
236 dle = avl_find(&dl->dl_tree, &dle_tofind, &where);
238 dle = avl_nearest(&dl->dl_tree, where, AVL_BEFORE);
382 avl_index_t where; local
395 dle = avl_find(&dl->dl_tree, &dle_tofind, &where);
401 avl_nearest(&dl->dl_tree, where, AVL_AFTER) == NULL);
423 avl_index_t where; local
441 dle = avl_find(&dl->dl_tree, &dle_tofind, &where);
443 dle = avl_nearest(&dl->dl_tree, where, AVL_BEFORE);
503 avl_index_t where; local
[all...]
/illumos-gate/usr/src/lib/libumem/common/
H A Denvvar.c668 const char *where; local
676 where = "before getenv(3C) calls -- "
680 where = "during getenv(3C) calls -- "
684 where = "during dlopen(3C) call -- "
688 where = "during dlsym(3C) call -- "
692 where = "during _umem_*() call -- "
696 where = "after dlsym() or _umem_*() calls.";
699 where = "at unknown point -- "
704 log_message("recursive allocation %s\n", where);
/illumos-gate/usr/src/boot/sys/boot/i386/pxeldr/
H A Dpxeldr.S50 .set MEM_BTX_ADDRESS,0x9000 # where BTX lives
51 .set MEM_BTX_ENTRY,0x9010 # where BTX starts to execute
53 .set MEM_BTX_CLIENT,0xa000 # where BTX clients live
175 movl $MEM_BTX_ADDRESS, %edi # %edi -> where BTX needs to go
202 * Copy the boot[12] args to where the BTX client can see them
204 movw $MEM_ARG, %si # where the args are at now
205 movw $MEM_ARG_BTX, %di # where the args are moving to
/illumos-gate/usr/src/cmd/filesync/
H A Dmain.c288 * 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);
/illumos-gate/usr/src/uts/common/io/usb/usba/
H A Dusba_devdb.c482 avl_index_t where; local
511 if (avl_find(&usba_devdb, dbnode, &where) ==
514 avl_insert(&usba_devdb, dbnode, where);
579 avl_index_t where; local
598 dbnode = (usba_devdb_info_t *)avl_find(&usba_devdb, req_node, &where);
606 &where);
/illumos-gate/usr/src/cmd/rexd/
H A DMakefile29 # where under
53 ONOBJS= on.o sharetab.o where.o rex.o mntent.o
54 #WHEREOBJS= sharetab.o where.o where_main.o mntent.o
55 CLEANOBJS= exportent.o sharetab.o on.o rpc.rexd.o where.o
56 #under.o where.o where_main.o
93 #where: $(WHEREOBJS)
H A Dwhere_main.c74 where(pn, host, fsname, within);
/illumos-gate/usr/src/boot/sys/boot/userboot/userboot/
H A Dhost.c88 host_seek(struct open_file *f, off_t offset, int where) argument
91 return (CALLBACK(seek, f->f_fsdata, offset, where));
/illumos-gate/usr/src/lib/libsec/common/
H A Daclutils.c547 * in newentries. The where argument specifies where to begin
548 * the replacement. If the where argument is 1 greater than the
550 * where argument is 2+ greater than the number of acl entries then
554 acl_modifyentries(acl_t *acl1, acl_t *newentries, int where) argument
565 if (where < 0 || where >= acl1->acl_cnt)
571 slot = where;
598 * Add acl2 entries into acl1. The where argument specifies where
602 acl_addentries(acl_t *acl1, acl_t *acl2, int where) argument
[all...]
/illumos-gate/usr/src/cmd/localedef/
H A Dcollate.c105 * RESOLVED is used for an entry where the priority indicates the final
466 avl_index_t where; local
475 if (avl_find(&collsyms, sym, &where) != NULL) {
483 avl_insert(&collsyms, sym, where);
509 avl_index_t where; local
513 if ((ud = avl_find(&collundefs, &srch, &where)) == NULL) {
522 avl_insert(&collundefs, ud, where);
533 avl_index_t where; local
537 cc = avl_find(&collchars, &srch, &where);
547 avl_insert(&collchars, cc, where);
896 avl_index_t where; local
1001 avl_index_t where; local
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_dh/dh_common/
H A Ddh_common.c55 you need to define where under /usr the LP64 libraries live for this platform
/illumos-gate/usr/src/lib/libbc/inc/include/rpc/
H A Drpc_msg.h84 caddr_t where; member in struct:accepted_reply::__anon2774::__anon2776
/illumos-gate/usr/src/cmd/sendmail/libmilter/
H A Dsmfi.c108 ** hdridx -- index into header list where insertion should occur
315 ** where -- SMTP stage
323 smfi_setsymlist(ctx, where, macros)
325 int where;
332 if (where < SMFIM_FIRST || where > SMFIM_LAST)
334 if (where < 0 || where >= MAX_MACROS_ENTRIES)
337 if (ctx->ctx_mac_list[where] != NULL)
340 ctx->ctx_mac_list[where]
[all...]
/illumos-gate/usr/src/lib/print/mod_ipp/
H A Dmod_ipp.c68 #define AP_INIT_NO_ARGS(directive, action, arg, where, mesg) \
69 { directive, action, arg, where, NO_ARGS, mesg }
70 #define AP_INIT_TAKE1(directive, action, arg, where, mesg) \
71 { directive, action, arg, where, TAKE1, mesg }
72 #define AP_INIT_TAKE2(directive, action, arg, where, mesg) \
73 { directive, action, arg, where, TAKE2, mesg }
/illumos-gate/usr/src/cmd/rpcgen/
H A Drpc_util.h96 extern char *where;
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dentry.c315 ld_seg_lookup(Ofl_desc *ofl, const char *name, avl_index_t *where) argument
320 return (avl_find(&ofl->ofl_segs_avl, &sg, where));
340 ld_ent_lookup(Ofl_desc *ofl, const char *name, avl_index_t *where) argument
345 return (avl_find(&ofl->ofl_ents_avl, &en, where));

Completed in 362 milliseconds

1234567891011