/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/ |
H A D | user.c | 53 bool found; local 61 found = false; 62 for (i = 0; !found && i < ngroups; i++) 64 found = true; 65 return found;
|
H A D | user_test.c | 92 bool found = false; local 95 for (i = 0; !found && i < ngids; i++) { 97 found = true; 100 if (found) {
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/ |
H A D | nameprep.c | 100 const unsigned long **found); 203 const unsigned long **found) { 204 assert(handle != NULL && str != NULL && found != NULL); 209 return (idn_nameprep_check(handle->prohibited_proc, str, found)); 214 const unsigned long **found) { 215 assert(handle != NULL && str != NULL && found != NULL); 220 return (idn_nameprep_check(handle->unassigned_proc, str, found)); 225 const unsigned long **found) { 236 *found = str; 239 *found 202 idn_nameprep_isprohibited(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument 213 idn_nameprep_isunassigned(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument 224 idn_nameprep_check(nameprep_checkproc proc, const unsigned long *str, const unsigned long **found) argument 249 idn_nameprep_isvalidbidi(idn_nameprep_t handle, const unsigned long *str, const unsigned long **found) argument 342 idn_nameprep_prohibitproc(void *handle, const unsigned long *str, const unsigned long **found) argument 348 idn_nameprep_unassignedproc(void *handle, const unsigned long *str, const unsigned long **found) argument 354 idn_nameprep_bidiproc(void *handle, const unsigned long *str, const unsigned long **found) argument [all...] |
H A D | delimitermap.c | 213 int found; local 224 found = 0; 231 found = 1; 235 if (!found) { 238 found = 1; 243 if (found)
|
H A D | filechecker.c | 125 const unsigned long **found) { 142 *found = str; 147 *found = NULL; 259 const unsigned long **found) { 260 return idn__filechecker_lookup((idn__filechecker_t)ctx, str, found); 124 idn__filechecker_lookup(idn__filechecker_t ctx, const unsigned long *str, const unsigned long **found) argument 258 idn__filechecker_lookupproc(void *ctx, const unsigned long *str, const unsigned long **found) argument
|
H A D | checker.c | 366 const unsigned long **found) { 371 assert(ctx != NULL && ucs4 != NULL && found != NULL); 379 *found = NULL; 386 found); 389 if (*found != NULL) 395 if (*found == NULL) { 396 TRACE(("idn_checker_lookup(): %s (not found)\n", 399 TRACE(("idn_checker_lookup(): %s (found \\x%04lx)\n", 400 idn_result_tostring(r), **found)); 365 idn_checker_lookup(idn_checker_t ctx, const unsigned long *ucs4, const unsigned long **found) argument
|
H A D | ucsset.c | 263 idn_ucsset_lookup(idn_ucsset_t ctx, unsigned long v, int *found) { argument 267 assert(ctx != NULL && ctx->refcnt > 0 && found != NULL); 286 *found = 0; 299 *found = 1;
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/include/idn/ |
H A D | filechecker.h | 107 * the UCS4 string 'str'. If there are none, NULL is stored in '*found'. 109 * stored in '*found'. 116 const unsigned long **found); 130 const unsigned long **found);
|
H A D | nameprep.h | 88 * idn_notfound -- specified version not found. 113 * by the draft. If found, the pointer to the first such character is stored 114 * into '*found'. Otherwise '*found' will be NULL. 119 * was found. Check '*found' to see the 124 const unsigned long **found); 128 * by the draft. If found, the pointer to the first such character is stored 129 * into '*found'. Otherwise '*found' wil [all...] |
H A D | checker.h | 140 const unsigned long **found); 150 const unsigned long **found);
|
H A D | ucsset.h | 131 * '*found' is set to 1 if the specified code point is in the set, 0 otherwise. 139 idn_ucsset_lookup(idn_ucsset_t ctx, unsigned long v, int *found);
|
/bind-9.6-ESV-R11/unit/atf-src/admin/ |
H A D | compile | 99 found=no 106 found=yes 111 found=yes 118 if test "$found" != yes; then
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/ |
H A D | text.cpp | 60 bool found; local 64 found = str.empty(); 77 found = res == 0; 80 return found;
|
H A D | fs.cpp | 479 bool found = false; local 481 !found && iter != dirs.end(); iter++) { 485 found = true; 487 return found;
|
/bind-9.6-ESV-R11/unit/atf-src/atf-run/ |
H A D | requirements.cpp | 61 bool found = false; local 64 found = atf::fs::is_executable(program); 74 !found && iter != dirs.end(); iter++) { 77 found = true; 81 return found; 128 return "Required file '" + file.str() + "' not found"; 219 return "Required program '" + (*iter) + "' not found in the PATH";
|
/bind-9.6-ESV-R11/bin/tests/ |
H A D | zone_test.c | 159 dns_fixedname_t found; local 176 dns_fixedname_init(&found); 218 dns_fixedname_name(&found), 224 print_rdataset(dns_fixedname_name(&found), &rdataset);
|
/bind-9.6-ESV-R11/lib/dns/include/dns/ |
H A D | ncache.h | 160 *\li On a return of ISC_R_SUCCESS, 'rdataset' is bound to the found 164 *\li #ISC_R_SUCCESS - the rdataset was found. 165 *\li #ISC_R_NOTFOUND - the rdataset was not found. 177 dns_ncache_current(dns_rdataset_t *ncacherdataset, dns_name_t *found, 185 * \li 'found' to be valid.
|
/bind-9.6-ESV-R11/unit/atf-src/atf-c/ |
H A D | utils.c | 277 bool found = false; local 279 while (!found && (line = atf_utils_readline(fd)) != NULL) { 280 found = grep_string(atf_dynstr_cstring(&formatted), line); 287 return found;
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/util/ |
H A D | SparseMap.pm | 262 my $found; 269 $found = $self->find_dmap($ref, $r); 274 $found = $self->find_imap($ref, $r); 276 unless ($found) { 277 $found = $r; 278 push @$ref, $found; 280 return $found;
|
/bind-9.6-ESV-R11/bin/win32/BINDInstall/ |
H A D | AccountInfo.cpp | 62 wchar_t **PrivList, /* Ptr to List of Privileges found */ 380 int found; local 389 found = -1; 392 found = wcsncmp(PrivList[j], UserRights[i].Buffer, 394 if (found == 0) 397 if (found != 0) {
|
/bind-9.6-ESV-R11/contrib/queryperf/missing/ |
H A D | getnameinfo.c | 118 goto found; 122 found:
|
/bind-9.6-ESV-R11/lib/lwres/ |
H A D | getaddrinfo.c | 505 int found; local 518 found = 0; 525 if ((found & FOUND_IPV6) == 0) 527 found |= FOUND_IPV6; 530 if ((found & FOUND_IPV4) == 0) 532 found |= FOUND_IPV4; 539 if ((found & FOUND_IPV4) == 0) 541 if ((found & FOUND_IPV6) == 0)
|
/bind-9.6-ESV-R11/win32utils/ |
H A D | BuildSetup.bat | 104 echo "**** %VCRedistPath% not found ****"
127 echo "**** %FrameworkSDKDir%\%vcredist% not found ****"
134 echo "**** vcredist_x86.exe not found ****"
|
/bind-9.6-ESV-R11/contrib/query-loc-0.4.0/ |
H A D | loc.c | 104 printf ("LOC record found for the name %s\n", name); 113 printf ("No LOC record found for the name %s, trying addresses\n", name); 129 printf (" No A record found for %s\n", name); 136 printf ("No LOC record found for the network name %s\n", name); 352 short found = 0; local 466 found = 1; 478 if (found)
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | rbtdb.c | 2409 * to be found in 'rbtdb'. 2569 rdatasetheader_t *found; local 2575 * that counts, so we'll just continue if we've already found a 2581 found = NULL; 2621 * We've found an NS rdataset that 2643 found = ns_header; 2646 found = dname_header; 2649 found = ns_header; 2653 if (found != NULL) { 2660 search->zonecut_rdataset = found; 3275 rdatasetheader_t *header, *header_next, *found, *foundsig; local 3453 rdatasetheader_t *header, *header_next, *found, *nsecheader; local 4091 rdatasetheader_t *found, *foundsig; local 4264 rdatasetheader_t *found, *foundsig; local 4390 rdatasetheader_t *found, *nsheader; local 4733 rdatasetheader_t *found, *foundsig; local 5158 rdatasetheader_t *header, *header_next, *found, *foundsig; local 5245 rdatasetheader_t *header, *header_next, *found, *foundsig; local [all...] |