| /src/usr.bin/xlint/lint1/ |
| err.c | 733 static const char *queries[] = { variable 734 "", /* unused, to make queries 1-based */ 762 // queries are enabled. Function calls in message details don't need to be 765 bool is_query_enabled[sizeof(queries) / sizeof(queries[0])]; 779 (void)vfprintf(out, queries[query_id], ap); 793 id >= sizeof(queries) / sizeof(queries[0]) || 794 queries[id][0] == '\0')
|
| /src/external/bsd/nsd/dist/ |
| xdp-server.h | 78 struct query **queries; member in struct:xdp_server
|
| server.c | 218 static struct query *queries[NUM_RECV_PER_SELECT]; variable in typeref:struct:query 279 * The number of queries handled by this specific TCP connection. 289 * If the connection is allowed to have further queries on it. 324 * Handle incoming queries on the UDP server sockets. 340 * Handle incoming queries on a TCP connection. The TCP connections 362 * Handle incoming queries on a TLS over TCP connection. The TLS 2815 /* Start the child processes that handle incoming queries */ 3498 queries[i] = query_create(nsd->server_region, 3501 query_reset(queries[i], UDP_MAX_MESSAGE_LEN, 0); 3502 iovecs[i].iov_base = buffer_begin(queries[i]->packet) [all...] |
| /src/external/bsd/unbound/dist/libunbound/ |
| context.h | 62 * qq : write queries to the async service pid/tid. 136 /** number of async queries outstanding */ 139 * Tree of outstanding queries. Indexed by querynum 145 rbtree_type queries; member in struct:ub_ctx 149 * The queries outstanding for the libunbound resolver. 228 * @param cbarg: user arg for async queries.
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| property_test.c | 444 } queries[] = { local 475 * The first check of queries is with NULL given as provider. All 476 * queries are expected to succeed. 478 for (i = 0; i < OSSL_NELEM(queries); i++) { 483 queries[i].nid, queries[i].prop, 485 || !TEST_str_eq((char *)result, queries[i].expected)) { 493 * The second check of queries is with &address1 given as provider. 495 for (i = 0; i < OSSL_NELEM(queries); i++) { 499 if (queries[i].prov == &fake_prov1) [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| property_test.c | 422 } queries[] = { local 453 * The first check of queries is with NULL given as provider. All 454 * queries are expected to succeed. 456 for (i = 0; i < OSSL_NELEM(queries); i++) { 461 queries[i].nid, queries[i].prop, 463 || !TEST_str_eq((char *)result, queries[i].expected)) { 471 * The second check of queries is with &address1 given as provider. 473 for (i = 0; i < OSSL_NELEM(queries); i++) { 477 if (queries[i].prov == &fake_prov1) [all...] |
| /src/external/apache2/mDNSResponder/dist/DSO/ |
| dso.h | 109 dso_outstanding_query_t queries[0]; member in struct:dso_outstanding_query_state 245 * Update the context of the outstanding queries in the DSO state.
|
| /src/external/bsd/openldap/dist/servers/slapd/overlays/ |
| pcache.c | 73 TAvlnode *scopes[4]; /* threaded AVL trees of cached queries */ 75 int queries; member in struct:Qbase_s 145 ldap_pvt_thread_rdwr_t t_rwlock; /* Rd/wr lock for accessing queries in the template */ 156 int no_of_queries; /* Total number of queries in the template */ 157 time_t ttl; /* TTL for the queries of this template */ 211 unsigned long num_cached_queries; /* total number of cached queries */ 212 unsigned long max_queries; /* upper bound on # of cached queries */ 213 int save_queries; /* save cached queries across restarts */ 297 "DESC 'Number of cached queries' " 765 /* ignore expired queries */ [all...] |
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| dnssd-proxy.c | 21 * name resolution, we need a DNS proxy that implements DNSSD Discovery Proxy for local queries, but 22 * forwards other queries to an ISP resolver. The SRP gateway is already expecting to do this. 141 // the dnssd query is finished. We could optimize retransmissions, but currently do not. UDP queries can 146 // For DNS Push queries, there is an "activity" object which tracks a particular subscription. Each activity 150 // For DNS queries, a disconnect should cancel every query associated with the connection. This is complicated 151 // by the fact that we are not tracking outstanding queries--the query survives because the dnssd_txn_t object 200 dnssd_query_t *queries; // dnssd queries that are asking this question. member in struct:question 219 dnssd_query_t *next; // For DNS queries, tracks other queries on the same connection, if any [all...] |