Searched refs:found (Results 1 - 25 of 67) sorted by relevance

123

/bind-9.11.3/bin/tests/system/coverage/
H A Dtests.sh37 found=$?
38 if [ $found -ne $retcode ]; then
39 echo "retcode was $found expected $retcode"
44 found=`grep ERROR coverage.$n | wc -l`
45 if [ $found -ne $error ]; then
46 echo "error count was $found expected $error"
51 found=`grep WARNING coverage.$n | wc -l`
52 if [ $found -ne $warn ]; then
53 echo "warning count was $found expected $warn"
58 found
[all...]
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Duser.c50 bool found; local
58 found = false;
59 for (i = 0; !found && i < ngroups; i++)
61 found = true;
62 return found;
H A Duser_test.c89 bool found = false; local
92 for (i = 0; !found && i < ngids; i++) {
94 found = true;
97 if (found) {
/bind-9.11.3/bin/tests/system/keymgr/
H A Dtests.sh45 found=$?
46 if [ $found -ne $kret ]; then
47 echo "keymgr retcode was $found expected $kret"
51 found=`matchall keymgr.$n "$kmatch"`
52 if [ "$found" = "FAIL" ]; then
60 found=$?
61 if [ $found -ne $cret ]; then
62 echo "coverage retcode was $found expected $cret"
67 found=`grep ERROR coverage.$n | wc -l`
68 if [ $found
[all...]
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/
H A Dnameprep.c100 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 Ddelimitermap.c213 int found; local
224 found = 0;
231 found = 1;
235 if (!found) {
238 found = 1;
243 if (found)
H A Dfilechecker.c125 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 Dchecker.c366 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 Ducsset.c263 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.11.3/contrib/idn/idnkit-1.0-src/include/idn/
H A Dfilechecker.h107 * 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 Dnameprep.h88 * 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 Dchecker.h140 const unsigned long **found);
150 const unsigned long **found);
H A Ducsset.h131 * '*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.11.3/unit/atf-src/tools/
H A Duser.cpp77 bool found; local
85 found = false;
86 for (i = 0; !found && i < ngroups; i++)
88 found = true;
89 return found;
H A Dtext.cpp55 bool found; local
59 found = str.empty();
72 found = res == 0;
75 return found;
H A Drequirements.cpp59 bool found = false; local
62 found = tools::fs::is_executable(program);
72 !found && iter != dirs.end(); iter++) {
75 found = true;
79 return found;
126 return "Required file '" + file.str() + "' not found";
226 return "Required program '" + (*iter) + "' not found in the PATH";
/bind-9.11.3/lib/isc/
H A Dbacktrace.c261 isc_backtrace_symmap_t *found; local
277 found = bsearch(addr, isc__backtrace_symtable, isc__backtrace_nsymbols,
279 if (found == NULL)
282 *symbolp = found->symbol;
284 (char *)found->addr);
/bind-9.11.3/unit/atf-src/atf-c++/detail/
H A Dtext.cpp56 bool found; local
60 found = str.empty();
73 found = res == 0;
76 return found;
/bind-9.11.3/lib/irs/
H A Dgetnameinfo.c61 * A name is required. If the hostname cannot be found in the DNS
63 * hostname is not found and the flag is not set, the address is
174 goto found;
178 found:
275 isc_boolean_t found = ISC_FALSE; local
369 found = ISC_TRUE;
380 if (found) {
/bind-9.11.3/unit/atf-src/admin/
H A Dcompile99 found=no
106 found=yes
111 found=yes
116 found=yes
123 if test "$found" != yes; then
/bind-9.11.3/lib/dns/include/dns/
H A Dncache.h151 *\li On a return of ISC_R_SUCCESS, 'rdataset' is bound to the found
155 *\li #ISC_R_SUCCESS - the rdataset was found.
156 *\li #ISC_R_NOTFOUND - the rdataset was not found.
168 dns_ncache_current(dns_rdataset_t *ncacherdataset, dns_name_t *found,
176 * \li 'found' to be valid.
/bind-9.11.3/contrib/idn/idnkit-1.0-src/util/
H A DSparseMap.pm262 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.11.3/bin/win32/BINDInstall/
H A DAccountInfo.cpp51 wchar_t **PrivList, /* Ptr to List of Privileges found */
397 int found; local
406 found = -1;
409 found = wcsncmp(PrivList[j], UserRights[i].Buffer,
411 if (found == 0)
414 if (found != 0) {
/bind-9.11.3/lib/dns/
H A Ddns64.c206 isc_boolean_t found = ISC_FALSE; local
236 if (!found && aaaaok != NULL) {
240 found = ISC_TRUE;
288 if (!found && aaaaok != NULL) {
292 return (found ? answer : ISC_TRUE);
H A Drpz.c49 * is kept in the policy zone. After an IP address has been found in a radix
50 * tree, the node in the policy zone's database is found by converting
399 * depend on the A, AAAA, and NS records that would be found
1066 trim_zbits(dns_rpz_zbits_t zbits, dns_rpz_zbits_t found) { argument
1073 x = zbits & found;
1084 * and *found=longest match node
1091 dns_rpz_cidr_node_t **found)
1101 *found = NULL;
1109 * Quit with whatever we already found
1126 *found
1088 search(dns_rpz_zones_t *rpzs, const dns_rpz_cidr_key_t *tgt_ip, dns_rpz_prefix_t tgt_prefix, const dns_rpz_addr_zbits_t *tgt_set, isc_boolean_t create, dns_rpz_cidr_node_t **found) argument
1277 dns_rpz_cidr_node_t *found; local
1748 dns_rpz_cidr_node_t *found; local
2162 dns_rpz_cidr_node_t *found; local
[all...]

Completed in 34 milliseconds

123