type_to_fetch     433 ext/standard/dns.c static u_char *php_parserr(u_char *cp, u_char *end, querybuf *answer, int type_to_fetch, int store, int raw, zval *subarray)
type_to_fetch     457 ext/standard/dns.c 	if (type_to_fetch != T_ANY && type != type_to_fetch) {
type_to_fetch     772 ext/standard/dns.c 	int type_to_fetch;
type_to_fetch     842 ext/standard/dns.c 				type_to_fetch = type_param;
type_to_fetch     847 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_A     ? DNS_T_A     : 0;
type_to_fetch     850 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_NS    ? DNS_T_NS    : 0;
type_to_fetch     853 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_CNAME ? DNS_T_CNAME : 0;
type_to_fetch     856 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_SOA   ? DNS_T_SOA   : 0;
type_to_fetch     859 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_PTR   ? DNS_T_PTR   : 0;
type_to_fetch     862 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_HINFO ? DNS_T_HINFO : 0;
type_to_fetch     865 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_MX    ? DNS_T_MX    : 0;
type_to_fetch     868 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_TXT   ? DNS_T_TXT   : 0;
type_to_fetch     871 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_AAAA	 ? DNS_T_AAAA  : 0;
type_to_fetch     874 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_SRV   ? DNS_T_SRV   : 0;
type_to_fetch     877 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_NAPTR ? DNS_T_NAPTR : 0;
type_to_fetch     880 ext/standard/dns.c 				type_to_fetch = type_param&PHP_DNS_A6	 ? DNS_T_A6 : 0;
type_to_fetch     887 ext/standard/dns.c 				type_to_fetch = DNS_T_ANY;
type_to_fetch     891 ext/standard/dns.c 		if (type_to_fetch) {
type_to_fetch     908 ext/standard/dns.c 			n = php_dns_search(handle, hostname, C_IN, type_to_fetch, answer.qb2, sizeof answer);
type_to_fetch     956 ext/standard/dns.c 				cp = php_parserr(cp, end, &answer, type_to_fetch, store_results, raw, &retval);
type_to_fetch     141 ext/standard/dns_win32.c static void php_parserr(PDNS_RECORD pRec, int type_to_fetch, int store, int raw, zval *subarray)
type_to_fetch     149 ext/standard/dns_win32.c 	if (type_to_fetch != DNS_TYPE_ANY && type != type_to_fetch) {
type_to_fetch     350 ext/standard/dns_win32.c 	int type, type_to_fetch, first_query = 1, store_results = 1;
type_to_fetch     401 ext/standard/dns_win32.c 				type_to_fetch = type_param;
type_to_fetch     406 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_A     ? DNS_TYPE_A     : 0;
type_to_fetch     409 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_NS    ? DNS_TYPE_NS    : 0;
type_to_fetch     412 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_CNAME ? DNS_TYPE_CNAME : 0;
type_to_fetch     415 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_SOA   ? DNS_TYPE_SOA   : 0;
type_to_fetch     418 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_PTR   ? DNS_TYPE_PTR   : 0;
type_to_fetch     421 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_HINFO ? DNS_TYPE_HINFO : 0;
type_to_fetch     424 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_MX    ? DNS_TYPE_MX    : 0;
type_to_fetch     427 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_TXT   ? DNS_TYPE_TEXT   : 0;
type_to_fetch     430 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_AAAA	 ? DNS_TYPE_AAAA  : 0;
type_to_fetch     433 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_SRV   ? DNS_TYPE_SRV   : 0;
type_to_fetch     436 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_NAPTR ? DNS_TYPE_NAPTR : 0;
type_to_fetch     439 ext/standard/dns_win32.c 				type_to_fetch = type_param&PHP_DNS_A6	 ? DNS_TYPE_A6 : 0;
type_to_fetch     446 ext/standard/dns_win32.c 				type_to_fetch = DNS_TYPE_ANY;
type_to_fetch     450 ext/standard/dns_win32.c 		if (type_to_fetch) {
type_to_fetch     451 ext/standard/dns_win32.c 			status = DnsQuery_A(hostname, type_to_fetch, DNS_QUERY_STANDARD, NULL, &pResult, NULL);
type_to_fetch     467 ext/standard/dns_win32.c 					php_parserr(pRec, type_to_fetch, store_results, raw, &retval);
type_to_fetch     475 ext/standard/dns_win32.c 					php_parserr(pRec, type_to_fetch, 1, raw, &retval);
type_to_fetch     490 ext/standard/dns_win32.c 					php_parserr(pRec, type_to_fetch, 1, raw, &retval);