/bind-9.11.3/bin/tests/system/checkds/ |
H A D | dig.pl | 11 my $arg; 15 foreach $arg (@ARGV) { 16 if ($arg =~ /^\+/) { 19 if ($arg =~ /^-t/) { 22 if ($arg =~ /^ds$/i) { 26 if ($arg =~ /^dlv$/i) { 30 if ($arg =~ /^dnskey$/i) { 34 $file = $arg;
|
H A D | dig.bat | 6 @set arg=%1 variable 7 if "%arg%" == "" goto end 8 if "%arg:~0,1%" == "+" goto next 9 if "%arg%" == "-t" goto next 10 if "%arg%" == "ds" goto ds 11 if "%arg%" == "DS" goto ds 12 if "%arg%" == "dlv" goto dlv 13 if "%arg%" == "DLV" goto dlv 14 if "%arg%" == "dnskey" goto dnskey 15 if "%arg [all...] |
/bind-9.11.3/lib/lwres/ |
H A D | context_p.h | 21 #define CTXMALLOC(len) ctx->malloc(ctx->arg, (len)) 22 #define CTXFREE(addr, len) ctx->free(ctx->arg, (addr), (len)) 49 void *arg; member in struct:lwres_context
|
/bind-9.11.3/bin/named/include/named/ |
H A D | sortlist.h | 24 (*dns_addressorderfunc_t)(const isc_netaddr_t *address, const void *arg); 52 ns_sortlist_addrorder1(const isc_netaddr_t *addr, const void *arg); 54 * Find the sort order of 'addr' in 'arg', the matching element 59 ns_sortlist_addrorder2(const isc_netaddr_t *addr, const void *arg); 61 * Find the sort order of 'addr' in 'arg', a topology-like
|
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/tests/ |
H A D | testutil.c | 58 const char *arg; local 71 arg = va_arg(ap, const char *); 72 if (arg == NULL) 76 fputs(arg, file);
|
/bind-9.11.3/conftools/perllib/dnsconf/ |
H A D | DNSConf-macros.h | 13 void CONCAT(DNSConf_set, FIELD)(DNSConf *cfg, const char *arg) { \ 20 if (arg == NULL) { \ 23 } else if (*arg == '\0') { \ 27 CONCAT(dns_c_ctx_set, FIELD)(cfg->confctx, arg); \
|
/bind-9.11.3/lib/dns/ |
H A D | stats.c | 75 void *arg; member in struct:rdatadumparg 80 void *arg; member in struct:opcodedumparg 85 void *arg; member in struct:rcodedumparg 302 void *arg, unsigned int options) 307 arg, options); 312 dns_rdatatypestats_dumper_t dump_fn, void * arg) 327 dump_fn(type, value, arg); 331 rdatatype_dumpcb(isc_statscounter_t counter, isc_uint64_t value, void *arg) { argument 332 rdatadumparg_t *rdatadumparg = arg; 334 dump_rdentry(counter, value, 0, rdatadumparg->fn, rdatadumparg->arg); 301 dns_generalstats_dump(dns_stats_t *stats, dns_generalstats_dumper_t dump_fn, void *arg, unsigned int options) argument 311 dump_rdentry(int rdcounter, isc_uint64_t value, dns_rdatastatstype_t attributes, dns_rdatatypestats_dumper_t dump_fn, void * arg) argument 341 rdatadumparg_t arg; local 350 rdataset_dumpcb(isc_statscounter_t counter, isc_uint64_t value, void *arg) argument 388 rdatadumparg_t arg; local 399 opcode_dumpcb(isc_statscounter_t counter, isc_uint64_t value, void *arg) argument 406 rcode_dumpcb(isc_statscounter_t counter, isc_uint64_t value, void *arg) argument 416 opcodedumparg_t arg; local 429 rcodedumparg_t arg; local [all...] |
/bind-9.11.3/make/ |
H A D | mkdep.in | 119 for arg in $* ; do 120 case "$arg" in 122 newargs="$newargs $arg" 125 newargs="$newargs $VPATH/$arg"
|
/bind-9.11.3/lib/isc/ |
H A D | backtrace.c | 94 trace_arg_t *arg = (trace_arg_t *)opq; local 96 if (arg->skip_count > 0) 97 arg->skip_count--; 99 arg->result[arg->count++] = (void *)_Unwind_GetIP(uc); 100 if (arg->count == arg->max_depth) 108 trace_arg_t arg; local 114 arg.skip_count = 1; 115 arg [all...] |
H A D | print.c | 33 isc__print_printf(void (*emit)(char, void *), void *arg, 37 file_emit(char c, void *arg) { argument 38 FILE *fp = arg; 82 nocheck_emit(char c, void *arg) { argument 83 struct { char *str; } *a = arg; 90 struct { char *str; } arg; local 94 arg.str = str; 97 n = isc__print_printf(nocheck_emit, &arg, format, ap); 123 string_emit(char c, void *arg) { argument 124 struct { char *str; size_t size; } *p = arg; 134 struct { char *str; size_t size; } arg; local 150 isc__print_printf(void (*emit)(char, void *), void *arg, const char *format, va_list ap) argument [all...] |
H A D | lfsr.c | 27 isc_lfsrreseed_t reseed, void *arg) 38 lfsr->arg = arg; 41 reseed(lfsr, arg); 62 lfsr->reseed(lfsr, lfsr->arg); 102 lfsr->reseed(lfsr, lfsr->arg); 25 isc_lfsr_init(isc_lfsr_t *lfsr, isc_uint32_t state, unsigned int bits, isc_uint32_t tap, unsigned int count, isc_lfsrreseed_t reseed, void *arg) argument
|
H A D | event.c | 35 isc_taskaction_t action, void *arg, size_t size) 46 ISC_EVENT_INIT(event, size, 0, NULL, type, action, arg, 54 isc_taskaction_t action, const void *arg, size_t size) 67 * Removing the const attribute from "arg" is the best of two 70 * which are not passing in an "arg" which starts its life as 72 * to not have "arg" prototyped as const (which is quite legitimate, 73 * because neither of those functions modify arg) can cause 75 * arg that they themselves never modify, such as with 76 * gcc -Wwrite-strings and using a string "arg". 78 DE_CONST(arg, deconst_ar 34 isc_event_allocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type, isc_taskaction_t action, void *arg, size_t size) argument 53 isc_event_constallocate(isc_mem_t *mctx, void *sender, isc_eventtype_t type, isc_taskaction_t action, const void *arg, size_t size) argument [all...] |
H A D | socket_api.c | 144 isc_taskaction_t action, void *arg, 151 action, arg, address, pktinfo)); 153 return (sock->methods->sendto(sock, region, task, action, arg, address, 159 isc_taskaction_t action, void *arg) 164 return (isc__socket_connect(sock, addr, task, action, arg)); 166 return (sock->methods->connect(sock, addr, task, action, arg)); 171 isc_task_t *task, isc_taskaction_t action, void *arg) 177 task, action, arg)); 179 return (sock->methods->recv(sock, region, minimum, task, action, arg)); 307 isc_taskaction_t action, void *arg) 143 isc_socket_sendto(isc_socket_t *sock, isc_region_t *region, isc_task_t *task, isc_taskaction_t action, void *arg, isc_sockaddr_t *address, struct in6_pktinfo *pktinfo) argument 158 isc_socket_connect(isc_socket_t *sock, isc_sockaddr_t *addr, isc_task_t *task, isc_taskaction_t action, void *arg) argument 170 isc_socket_recv(isc_socket_t *sock, isc_region_t *region, unsigned int minimum, isc_task_t *task, isc_taskaction_t action, void *arg) argument 305 isc_socket_recvv(isc_socket_t *sock, isc_bufferlist_t *buflist, unsigned int minimum, isc_task_t *task, isc_taskaction_t action, void *arg) argument 321 isc_socket_send(isc_socket_t *sock, isc_region_t *region, isc_task_t *task, isc_taskaction_t action, void *arg) argument 328 isc_socket_sendv(isc_socket_t *sock, isc_bufferlist_t *buflist, isc_task_t *task, isc_taskaction_t action, void *arg) argument 335 isc_socket_sendtov(isc_socket_t *sock, isc_bufferlist_t *buflist, isc_task_t *task, isc_taskaction_t action, void *arg, isc_sockaddr_t *address, struct in6_pktinfo *pktinfo) argument 344 isc_socket_sendtov2(isc_socket_t *sock, isc_bufferlist_t *buflist, isc_task_t *task, isc_taskaction_t action, void *arg, isc_sockaddr_t *address, struct in6_pktinfo *pktinfo, unsigned int flags) argument 386 isc_socket_accept(isc_socket_t *sock, isc_task_t *task, isc_taskaction_t action, void *arg) argument [all...] |
/bind-9.11.3/lib/isc/include/isc/ |
H A D | lfsr.h | 42 void *arg; /*%< reseed function argument */ member in struct:isc_lfsr 51 isc_lfsrreseed_t reseed, void *arg);
|
H A D | entropy.h | 57 void *arg, isc_boolean_t blocking); 59 void *arg, isc_boolean_t blocking); 60 typedef void (*isc_entropystop_t)(isc_entropysource_t *source, void *arg); 185 void *arg,
|
/bind-9.11.3/bin/tests/ |
H A D | rbt_test.c | 78 delete_name(void *data, void *arg) { argument 81 UNUSED(arg); 249 char *command, *arg, buffer[1024]; local 321 arg = strpbrk(command, whitespace); 322 if (arg != NULL) { 323 *arg++ = '\0'; 324 arg += strspn(arg, whitespace); 330 name = create_name(arg); 332 printf("adding name %s\n", arg); [all...] |
H A D | lwresconf_test.c | 36 mem_alloc(void *arg, size_t size) { argument 37 return (isc_mem_get(arg, size)); 41 mem_free(void *arg, void *mem, size_t size) { argument 42 isc_mem_put(arg, mem, size);
|
/bind-9.11.3/util/ |
H A D | altbuild.sh | 21 2) arg=$1 tmpdir="$2" ;; 22 1) arg=$1 ;; 51 case $arg in 53 kit="$arg" 56 tag="$arg"
|
/bind-9.11.3/lib/dns/include/dns/ |
H A D | request.h | 161 isc_taskaction_t action, void *arg, 199 isc_taskaction_t action, void *arg, 208 isc_task_t *task, isc_taskaction_t action, void *arg, 218 isc_taskaction_t action, void *arg, 227 isc_task_t *task, isc_taskaction_t action, void *arg, 269 isc_task_t *task, isc_taskaction_t action, void *arg, 278 isc_taskaction_t action, void *arg, 287 isc_task_t *task, isc_taskaction_t action, void *arg, 296 isc_taskaction_t action, void *arg,
|
H A D | tcpmsg.h | 30 void *arg; member in struct:dns_tcpmsg 72 isc_task_t *task, isc_taskaction_t action, void *arg); 81 *\li "task", "taskaction", and "arg" be valid.
|
H A D | update.h | 26 void (*func)(void *arg, dns_zone_t *zone, int level, 28 void *arg; member in struct:__anon151
|
/bind-9.11.3/lib/isccc/include/isccc/ |
H A D | ccmsg.h | 45 void *arg; member in struct:isccc_ccmsg 87 isc_task_t *task, isc_taskaction_t action, void *arg); 96 *\li "task", "taskaction", and "arg" be valid.
|
/bind-9.11.3/unit/atf-src/bootstrap/ |
H A D | h_app_opts_args.cpp | 76 h_app_opts_args::process_option(int ch, const char* arg) argument 84 std::cout << "-v given with argument " << arg << "\n"; local
|
/bind-9.11.3/lib/lwres/include/lwres/ |
H A D | context.h | 29 typedef void *(*lwres_malloc_t)(void *arg, size_t length); 30 typedef void (*lwres_free_t)(void *arg, void *mem, size_t length); 62 lwres_context_create(lwres_context_t **contextp, void *arg, 70 * If one is non-NULL, they must both be non-NULL. "arg" is passed to
|
/bind-9.11.3/unit/atf-src/tools/ |
H A D | generate-revision.sh | 107 while getopts :g:r:o:v: arg; do 108 case ${arg} in 122 err "Unknown option ${arg}"
|