Searched defs:rcode (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/dns/include/
H A Dresolv_stats.h37 uint8_t rcode; // the DNS rcode or RCODE_XXX defined above member in struct:__res_sample
55 _res_stats_set_sample(struct __res_sample* sample, time_t now, int rcode, int rtt);
/bionic/libc/dns/resolv/
H A Dres_stats.c38 _res_stats_set_sample(struct __res_sample* sample, time_t now, int rcode, int rtt) argument
41 __libc_format_log(ANDROID_LOG_INFO, "libc", "rcode = %d, sec = %d", rcode, rtt);
44 sample->rcode = rcode;
75 switch (stats->samples[i].rcode) {
H A Dres_debug.c282 u_int opcode, rcode, id; local
289 rcode = ns_msg_getflag(handle, ns_f_rcode);
299 if ((!statp->pfcode) || (statp->pfcode & RES_PRF_HEADX) || rcode)
302 _res_opcodes[opcode], p_rcode((int)rcode), id);
716 * Return a string for the rcode.
719 p_rcode(int rcode) { argument
720 return (sym_ntos(__p_rcode_syms, rcode, (int *)0));
H A Dres_send.c503 int rcode = RCODE_INTERNAL_ERROR; local
553 ns, &now, &rcode, &delay);
562 _res_stats_set_sample(&sample, now, rcode, delay);
584 ns, &v_circuit, &gotsomewhere, &now, &rcode, &delay);
589 _res_stats_set_sample(&sample, now, rcode, delay);
752 int *terrno, int ns, time_t* at, int* rcode, int* delay)
755 *rcode = RCODE_INTERNAL_ERROR;
850 *rcode = RCODE_TIMEOUT;
971 *rcode = anhp->rcode;
750 send_vc(res_state statp, const u_char *buf, int buflen, u_char *ans, int anssiz, int *terrno, int ns, time_t* at, int* rcode, int* delay) argument
1080 send_dg(res_state statp, const u_char *buf, int buflen, u_char *ans, int anssiz, int *terrno, int ns, int *v_circuit, int *gotsomewhere, time_t *at, int *rcode, int* delay) argument
[all...]
/bionic/libc/include/arpa/
H A Dnameser_compat.h68 unsigned rcode :4; /* response code */ member in struct:__anon22
78 unsigned rcode :4; /* response code */ member in struct:__anon22
/bionic/libc/kernel/uapi/linux/
H A Dfirewire-cdev.h59 __u32 rcode; member in struct:fw_cdev_event_response
119 __u32 rcode; member in struct:fw_cdev_event_phy_packet
190 __u32 rcode; member in struct:fw_cdev_send_response
/bionic/libc/dns/net/
H A Dgetaddrinfo.c2144 int rcode; local
2150 rcode = NOERROR;
2159 hp->rcode = NOERROR; /* default */
2197 if (n < 0 || hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
2198 rcode = hp->rcode; /* record most recent error */
2201 printf(";; rcode = %u, ancount=%u\n", hp->rcode,
2213 switch (rcode) {
2338 if (hp->rcode
[all...]

Completed in 209 milliseconds