Searched defs:found (Results 1 - 25 of 531) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasCloseAdapter.c39 int found = 0; local
82 found = 1;
89 if (found == 0) {
/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Dinuse_dump.c58 int found = 0; local
64 return (found);
90 found = 1;
95 return (found);
H A Dinuse_zpool.c70 int found = 0; local
78 return (found);
89 return (found);
101 found = 1;
103 found = 1;
106 found = 1;
110 found = 1;
113 if (found) {
126 return (found);
/illumos-gate/usr/src/ucbcmd/printenv/
H A Dprintenv.c57 int found = 0; local
66 found++;
75 return (!found);
/illumos-gate/usr/src/lib/libadm/common/
H A Ddevattr.c86 * was found. If the function returns (char *) NULL and the error was
92 * ENOENT The specified device-table file could not be found
93 * ENODEV Device not found in the device table
108 int found; /* TRUE if attribute found */ local
118 found = FALSE;
123 found = TRUE;
129 found = TRUE;
135 found = TRUE;
141 found
[all...]
H A Dckkeywd.c43 char *found; local
48 found = NULL;
51 if (found)
53 found = set[i];
57 if (found) {
58 (void) strcpy(strval, found);
/illumos-gate/usr/src/lib/pkcs11/pkcs11_tpm/common/
H A Dcert.c308 CK_BBOOL found; local
314 found = template_attribute_find(tmpl,
316 if (found == FALSE) {
352 CK_BBOOL found; local
354 found = template_attribute_find(tmpl, CKA_SUBJECT, &attr);
355 if (! found) {
358 found = template_attribute_find(tmpl, CKA_VALUE, &attr);
359 if (! found) {
H A Dhwf_obj.c299 CK_BBOOL found; local
301 found = template_attribute_find(tmpl, CKA_HW_FEATURE_TYPE, &attr);
302 if (! found) {
315 CK_BBOOL found; local
318 found = template_attribute_find(tmpl, CKA_VALUE, &attr);
319 if (! found) {
331 CK_BBOOL found; local
334 found = template_attribute_find(tmpl, CKA_VALUE, &attr);
335 if (! found) {
339 found
[all...]
/illumos-gate/usr/src/lib/libsip/common/
H A Dsip_hash.c84 * if found.
146 int found; local
152 if (del_func(tmp->sip_obj, digest, &found)) {
184 * If we found the object, we are done
186 } else if (found == 1) {
/illumos-gate/usr/src/lib/libeti/menu/common/
H A Dpattern.c65 int found; local
88 found = FALSE;
102 found = TRUE;
108 if (found) {
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dfriendly.c91 int esc = 0, found = 0; local
93 for ( ++s; *s && !found; s++ ) {
100 found = 1;
/illumos-gate/usr/src/cmd/cmd-crypto/kmfcfg/
H A Dexport.c47 int opt, found = 0; local
131 while (pnode != NULL && !found) {
135 found++;
148 if (!found) {
H A Dimport.c48 int opt, found = 0; local
133 while (pnode != NULL && !found) {
137 found++;
150 if (!found) {
H A Dcreate.c464 int found = 0; local
471 while (pnode != NULL && !found) {
473 found++;
478 if (found) {
H A Dkmfcfg.c182 int found; local
209 found = -1;
212 found = i;
217 if (found < 0) {
223 ret = (*cmds[found].action)(argc, argv);
257 "error 0x%02x\n"), cmds[found].verb, ret);
H A Duninstall.c55 boolean_t found; local
161 found = B_FALSE;
192 found = B_TRUE;
196 if (found) {
198 * If found and not in_package, then don't write
/illumos-gate/usr/src/cmd/tbl/
H A Dt3.c51 int c, ci, found; local
67 found=0;
95 found=1;
99 if (!found)
/illumos-gate/usr/src/lib/libast/common/sfio/
H A Dsfgetr.c41 int found; local
55 found = 0;
64 found = 1;
68 found = 1;
73 while(!found)
103 if(s < ends) /* found separator */
105 found = 1;
121 if(!found && (_Sfmaxr > 0 && un+n+1 >= _Sfmaxr || (f->flags&SF_STRING))) /* already exceed limit */
149 if(found && rc != 0 && (type&SF_STRING) )
159 rsrv->slen = found
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Detheraddr.c40 static int found = 0; local
44 if (!found) {
49 found = 1;
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dgenget.c88 register char **c, **found; local
94 found = 0;
101 if (found)
103 found = c;
105 return (found);
/illumos-gate/usr/src/cmd/mdb/i86pc/modules/uppc/
H A Duppc.c68 boolean_t found = B_FALSE; local
96 found = B_TRUE;
100 if (found == B_FALSE) {
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_lookup.c57 int found = 0; local
83 found = (rddir_entry_lookup(key, rdcp->entp) != NULL);
99 if (found)
103 * entry not found in cache, try the name service now
118 * If the entry isn't found in the map and the
152 * was found or not. The mount will be done on a later RPC to
/illumos-gate/usr/src/cmd/acct/lib/
H A Ddevtolin.c33 * return ptr to LSZ-byte string, "?" if not found
70 int found = 0; local
79 while ((!found) && (srch_dirs[dirno] != NULL)) {
83 found = srch_dir(device, srch_dirs[dirno],
90 /* if not yet found search remaining /dev directory skipping the
93 if (!found)
94 found = srch_dir(device, dev_dir, 0, srch_dirs);
96 /* if found then put it (without the "/dev/" prefix) in the tlist
99 if (found) {
107 /* if not found pu
129 int found = 0; local
[all...]
/illumos-gate/usr/src/cmd/hal/tools/
H A Dhal-storage-cleanup-mountpoint.c58 gboolean found; local
87 found = FALSE;
88 for (i = 0; lines[i] != NULL && !found; i++) {
113 found = TRUE;
127 if (!found) {
/illumos-gate/usr/src/cmd/stat/common/
H A Dmnt.c113 int found; local
136 while ((found = getextmntent(mpt, &mnt,
138 if (found == 0) {

Completed in 2210 milliseconds

1234567891011>>