Searched defs:find (Results 1 - 25 of 31) sorted by relevance

12

/illumos-gate/usr/src/test/libc-tests/tests/catopen/
H A Dcatopen.c35 catopen_verify(boolean_t find) argument
40 if (find == B_TRUE) {
/illumos-gate/usr/src/boot/lib/libc/string/
H A Dstrstr.c42 * Find the first occurrence of find in s.
45 strstr(const char *s, const char *find) argument
50 if ((c = *find++) != '\0') {
51 len = strlen(find);
57 } while (strncmp(s, find, len) != 0);
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dputenv.c48 static int find(char *);
57 if ((which = find(change)) < 0) {
87 /* find - find where s2 is in environ
95 find(char *str) function
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/
H A DBST.java96 public BSTItem find(String newKey) { method in class:BST
97 return find(newKey, true);
126 public BSTItem find(String newKey, boolean exactMatch) { method in class:BST
137 rv = left.find(newKey, exactMatch);
140 rv = right.find(newKey, exactMatch);
286 bst.find("Echo");
290 bst.find("Xray");
294 bst.find("Delta");
298 bst.find("Root");
301 bst.find("Alph
[all...]
/illumos-gate/usr/src/lib/libxcurses/src/tic/
H A Dticmain.c186 find(char const *capname, void **arrayp, int *indexp) function
/illumos-gate/usr/src/tools/ctf/cvt/
H A Diidesc.c71 iidesc_cmp(iidesc_t *src, iidesc_find_t *find) argument
73 iidesc_t *tgt = find->iif_tgt;
79 find->iif_ret = src;
87 iidesc_find_t find; local
89 find.iif_tgt = new;
90 find.iif_ret = NULL;
92 (void) hash_match(hash, new, (int (*)())iidesc_cmp, &find);
94 if (find.iif_ret != NULL) {
95 iidesc_t *old = find.iif_ret;
/illumos-gate/usr/src/ucbcmd/whereis/
H A Dwhereis.c127 void find(char **, char *);
275 find(srcdirs, cp);
284 find(bindirs, cp);
293 find(mandirs, cp);
307 find(char **dirs, char *cp) function
/illumos-gate/usr/src/cmd/vi/port/
H A Dex_voper.c417 * , Invert last find with f F t or T, like inverse
438 * ; Repeat last find with f F t or T.
451 case 'F': /* inverted find */
460 case 'f': /* find */
476 forbid(find(i) == 0);
1006 find(wchar_t c) function
/illumos-gate/usr/src/cmd/fs.d/udfs/fsdb/
H A Dfsdb_yacc.y115 | base | block | cd | directory | file | find | fill
290 find : xfind label
332 gettext("find dir-name {-name n | -inum n}\n"));
346 gettext("find dir-name {-name n | -inum n}\n"));
350 gettext("find dir-name {-name n | -inum n}\n"));
360 gettext("find dir-name {-name n | -inum n}\n"));
/illumos-gate/usr/src/cmd/strings/
H A Dstrings.c76 static void find(long);
169 find((long)shdr.sh_size);
319 find((long)ahdr.xa_data);
336 find(LONG_MAX);
345 find(cnt) function
/illumos-gate/usr/src/lib/libast/common/misc/
H A Dtranslate.c126 * find catalog in locale and return catopen() descriptor
130 find(const char* locale, const char* catalog) function
179 if ((d = find("C", s)) != NOCAT)
363 if ((cp->cat = find(cp->locale, cp->name)) == NOCAT)
H A Dmime.c372 * find entry matching type
378 find(Mime_t* mp, const char* type) function
455 else if (ent = find(mp, ws.pattern))
610 if (ent = find(mp, type))
/illumos-gate/usr/src/man/man1m/
H A DMakefile167 hal-find.1m \
618 hal-find-by-capability.1m \
619 hal-find-by-property.1m \
716 hal-find-by-capability.1m := LINKSRC = hal-find.1m
717 hal-find-by-property.1m := LINKSRC = hal-find.1m
/illumos-gate/usr/src/lib/libtnfctl/
H A Dcomb.c105 static boolean_t find(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down,
138 if (find(hndl, op, down, next, comb_p)) {
200 /* see if we can find the previously decoded answer */
357 /* find the number of bits before the highest bit in mask */
436 * findname() - find a name for a function given its address.
451 * If we find "tnf_trace_end" then we should not report it
477 * find() - try to find an existing combination that satisfies ...
480 find(tnfctl_handle_t *hndl, comb_op_t op, uintptr_t down, uintptr_t next, function
/illumos-gate/usr/src/common/fs/
H A Dufsops.c77 static ino_t find(fileid_t *filep, char *path);
143 find(fileid_t *filep, char *path) function
172 q++; /* find end of component */
379 /* find the amt left to be read in the file */
444 /* find the amt left to be read in the file */
635 inode = find(filep, (char *)filename);
637 dprintf("open: cannot find %s\n", filename);
H A Dhsfs.c133 static ino_t find(char *, fileid_t *);
195 find(char *path, fileid_t *filep) function
201 dprintf("find: %s\n", path);
496 ino = find(str, filep);
808 /* couldn't find a legit susp, terminate loop */
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dconfig.c594 * config_bydev_lookup -- look up the path in our devcache lut. If we find
600 struct config *find; local
606 if ((find = lut_lookup(fromcfg->devcache,
610 np = config_nodeize(find);
621 * If we find it return the config path, but as a struct node.
626 struct config *find; local
632 if ((find = lut_lookup(fromcfg->devidcache,
636 np = config_nodeize(find);
647 * If we find it return the config path, but as a struct node.
652 struct config *find; local
678 struct config *find; local
[all...]
/illumos-gate/usr/src/uts/common/idmap/
H A Didmap_cache.c488 sid2pid_t find; local
492 find.sid_prefix = sid_prefix;
493 find.rid = rid;
497 result = avl_find(&cache->sid2pid.tree, &find, &where);
530 pid2sid_t find; local
534 find.pid = uid;
538 result = avl_find(&cache->uid2sid.tree, &find, &where);
577 sid2pid_t find; local
581 find.sid_prefix = sid_prefix;
582 find
619 pid2sid_t find; local
665 sid2pid_t find; local
726 pid2sid_t find; local
863 sid_prefix_node_t find; local
[all...]
/illumos-gate/usr/src/lib/libidmap/common/
H A Didmap_cache.c802 sid2uid_gid_t find; local
806 find.sid_prefix = sid_prefix;
807 find.rid = rid;
810 result = avl_find(&idmap_cache.sid2uid_gid.tree, &find, &where);
850 pid2sid_winname_t find; local
854 find.pid = uid;
857 result = avl_find(&idmap_cache.uid2sid_winname.tree, &find,
914 sid2uid_gid_t find; local
918 find.sid_prefix = sid_prefix;
919 find
962 pid2sid_winname_t find; local
1024 sid2uid_gid_t find; local
1091 pid2sid_winname_t find; local
1203 winname2uid_gid_t find; local
1260 pid2sid_winname_t find; local
1333 winname2uid_gid_t find; local
1391 pid2sid_winname_t find; local
[all...]
/illumos-gate/usr/src/stand/lib/fs/ufs/
H A Dufsops.c89 static ino_t find(fileid_t *filep, char *path);
168 find(fileid_t *filep, char *path) function
195 q++; /* find end of component */
244 * Reads indirect blocks as needed to find the block. Returns zero when
463 /* find the amt left to be read in the file */
697 inode = find(filep, filename);
893 if (!(n = find(&fx, strcpy(pn, fp->fi_memp))) ||
/illumos-gate/usr/src/cmd/lp/filter/postscript/postio/
H A Dpostio.c208 static char *find(char *, char *);
993 if (*(mesgptr = find("%%[ ", mesg)) != '\0' &&
994 *(e = find(" ]%%", mesgptr+4)) != '\0') {
1030 find(char *str1, char *str2) function
/illumos-gate/usr/src/uts/common/smbsrv/
H A Dsmb_kproto.h184 SMB_COM_DECL(find); variable
/illumos-gate/usr/src/stand/lib/fs/hsfs/
H A Dhsfsops.c103 static ino_t find(fileid_t *, char *);
156 find(fileid_t *filep, char *path) function
168 printf("find(): path=<%s>\n", path);
172 printf("find(): root_ino opendir() failed!\n");
190 printf("find(): opendir(%d) failed!\n", inode);
333 /* find the amt left to be read in the file */
592 inode = find(filep, filename);
/illumos-gate/usr/src/lib/libshare/common/
H A Dlibshare.c92 * with a group or share and find the library handle needed for
818 * find all the shared objects
866 * and find out what is there.
1118 * search the XML document subtree specified by node to find the group
1171 * We want to find the, possibly, named group. If
1173 * NULL, we only do the find if groupname is also
1181 /* if a subgroup, find it before returning */
1277 * find the child node of the specified node that has "type". This is
2627 * error to not find one.
3251 /* It is legitimate to not find
3484 sa_get_next_protocol_section(sa_property_t prop, char *find) argument
3572 sa_get_next_protocol_property(sa_property_t prop, char *find) argument
[all...]
/illumos-gate/usr/src/cmd/pg/
H A Dpg.c95 static off_t find(int, off_t);
161 static off_t nchars; /* return from getaline in find() */
433 if (find(0, new_ss.last_line + 1) != EOF)
467 (void) find(0, start);
470 new_ss.last_line = find(1, 0);
727 while (find(1, (off_t)10000) != EOF)
1262 (void) find(0, old_ss.first_line);
1266 (void) find(0, old_ss.last_line);
1270 while (find(1, direction) != END_COND) {
1278 find(
1340 find(how, line) /* find the line and seek there */ function
[all...]

Completed in 142 milliseconds

12