Searched refs:found (Results 26 - 50 of 1552) sorted by relevance

1234567891011>>

/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dparsedate.c208 bool found= FALSE; local
215 found=TRUE;
220 return found?i:-1;
227 bool found= FALSE; local
232 found=TRUE;
237 return found?i:-1; /* return the offset or -1, no real offset is -1 */
241 of seconds or -1 if the timezone wasn't found/legal */
247 bool found= FALSE; local
252 found=TRUE;
257 return found
348 bool found=FALSE; local
[all...]
H A Dcurl_fnmatch.c76 int found = FALSE; local
79 for(i = 0; !found; i++) {
94 found = TRUE;
359 int found = FALSE; local
361 found = TRUE;
363 found = ISALNUM(*s);
365 found = ISALPHA(*s);
367 found = ISDIGIT(*s);
369 found = ISXDIGIT(*s);
371 found
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dmake_keys.c52 bool found = FALSE; local
55 found = TRUE;
59 if (!found) {
62 found = TRUE;
67 return found ? n : UNKNOWN;
/macosx-10.10.1/CPANInternal-159.1/Test-use-ok-0.11/inc/Module/Install/
H A DGithubMeta.pm38 my $found = 0;
45 $found = 1;
50 return $found;
/macosx-10.10.1/Heimdal-398.1.2/tests/apple/
H A Dcheck-apple-dump.in66 found=0
69 found=1
72 if test $found != 1; then
73 echo "cifs@LKDC not found"
89 found=0
92 found=1
95 if test $found != 1; then
96 echo "cifs@LKDC not found"
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_x509_cl/lib/
H A DDecodedItem.cpp51 * Returns NULL if specified extension not found.
61 unsigned found = 0; local
78 if(found++ == index) {
91 numFields = found;
/macosx-10.10.1/apache-793/httpd/build/
H A Dmake_var_export.awk24 found = 0
43 if (found != 0) {
53 found++
/macosx-10.10.1/apr-32/apr/apr/build/
H A Dmake_var_export.awk8 found = 0
27 if (found != 0) {
37 found++
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts.v2/
H A Dwhere7 # 92/10/06 Print err msg if no match found.
36 An error message is printed if a no matching file is found for a pattern.
93 found=0 # Pattern not found yet
105 found=1
108 if [ $found = 0 ]; then
109 echo "$arg: not found." 1>&2
/macosx-10.10.1/libxml2-26/libxml2/doc/
H A DbuildDocBookCatalog87 found=`find $1 -name docbookx.dtd -exec grep -l "$s" {} \;`
88 for dtd in $found; do
262 found=`find $top -name iso-amsb.ent`
263 if [ "$found" = "" ] ; then
264 found=`find /usr/share/xml -name iso-amsb.ent`
266 if [ "$found" = "" ] ; then
267 found=`find $HOME -name iso-amsb.ent`
269 if [ "$found" = "" ] ; then
270 found=`find /usr/local -name iso-amsb.ent`
272 if [ "$found"
[all...]
/macosx-10.10.1/sudo-73/src/
H A Dfind_path.c51 * to the array. Returns FOUND if the command was found, NOT_FOUND
52 * if it was not found, or NOT_FOUND_DOT if it would have been found
66 int found = FALSE; /* did we find the command? */ local
106 * Resolve the path and exit the loop if found.
111 if ((found = sudo_goodpath(command, sbp)))
122 if (!found && checkdot) {
126 found = sudo_goodpath(command, sbp);
127 if (found && ignore_dot)
131 if (found) {
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/functions/
H A Dwhatis45 echo whatis: $arg: not found
/macosx-10.10.1/rsync-45/rsync/testsuite/
H A Dwildmatch.test18 No wildmatch errors found.
/macosx-10.10.1/IOGraphics-485/IOGraphicsFamily/
H A DIOAccelerator.cpp187 Boolean found; local
208 found = false;
214 found = (dup->id == requestedID);
215 if (found)
219 if (found)
269 bool found = false; local
277 found = (record->id == id);
278 if (found)
301 return (found ? kIOReturnSuccess : kIOReturnBadMessageID);
314 bool found local
339 bool found = false; local
[all...]
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dstrhash.c172 hash_node *found = table->buckets[bucket]; local
175 if (!found) {
179 if (!strcmp(found->key, key)) {
183 table->buckets[bucket] = found->next;
184 to_free = found;
190 while (found->next) {
191 if (!strcmp(found->next->key, key)) {
192 to_free = found->next;
193 found->next = found
232 hash_node *found = list_find(key, table->buckets[bucket]); local
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bn/
H A Dbn_depr.c74 int found = 0; local
88 found = 1;
90 if (!found && (ret == NULL) && (rnd != NULL)) BN_free(rnd);
91 return(found ? rnd : NULL);
/macosx-10.10.1/cron-39/lib/
H A Denv.c83 register int count, found; local
89 * also set 'found' to -1 or index of entry if already in here.
91 found = -1;
94 found = count;
98 if (found != -1) {
103 q = envp[found];
104 if ((envp[found] = strdup(envstr)) == NULL) {
105 envp[found] = q;
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dmail_conf.c49 /* A null pointer result means the parameter was not found.
120 int found = 0; local
132 while (found == 0 && readlline(buf, fp, (int *) 0)) {
136 while (found == 0 && (cp = mystrtok(&value, ", \t\r\n")) != 0)
138 found = 1;
145 if (found == 0) {
/macosx-10.10.1/vim-55/runtime/indent/
H A Doccam.vim74 let found = 0
76 while found < 1
79 let found = found - 1
81 let found = found + 1
84 if found < 1
89 let found = 1
150 let found = 0
152 while !found
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dacl.c208 krb5_boolean found; local
218 found = acl_match_acl(context, acl, string);
219 acl_free_list(acl, !found);
220 if (found) {
255 krb5_boolean found; local
276 found = FALSE;
281 found = TRUE;
288 acl_free_list(acl, !found);
289 if (found) {
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/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...]
/macosx-10.10.1/vim-55/src/
H A Duninstal.c62 * Returns non-zero when it's found.
87 * Returns non-zero when it's found.
184 int found = FALSE; local
197 found = TRUE;
200 if (found)
205 return found;
213 int found = 0; local
220 ++found;
231 return found;
332 int found local
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dgetvalues.c37 int found = 0; local
56 found = 1;
59 while ( ! found ) {
77 * if we get this far, we've found the attribute and are sitting
94 int found = 0; local
113 found = 1;
116 while ( ! found ) {
133 * if we get this far, we've found the attribute and are sitting
/macosx-10.10.1/diskdev_cmds-576/fstyp.tproj/
H A Dfstyp.c50 * if any match is found, and 0 is returned if no match is found.
65 int numMatches, i, j, found; local
72 found = 0;
84 for (i = 0; (!found && (NULL != DIRS[i])); i++) {
92 for (j = 0; (!found && (j < numMatches)); j++) {
96 found = 1;
105 return found;
/macosx-10.10.1/ncurses-44/ncurses/
H A Dmk-2nd.awk56 found = 0
65 if (found == 0) {
91 found = 1

Completed in 372 milliseconds

1234567891011>>