/system/netd/resolv/ |
D | res_state.cpp | 52 _res_thread* rt = (_res_thread*) calloc(1, sizeof(*rt)); in res_thread_alloc() local 54 if (rt) { in res_thread_alloc() 55 memset(rt->_rstatic, 0, sizeof rt->_rstatic); in res_thread_alloc() 57 return rt; in res_thread_alloc() 73 _res_thread* rt = (_res_thread*) _rt; in res_thread_free() local 75 LOG(VERBOSE) << __func__ << ": rt=" << rt << " for thread=" << gettid(); in res_thread_free() 77 res_static_done(rt->_rstatic); in res_thread_free() 78 res_ndestroy(rt->_nres); in res_thread_free() 79 free(rt); in res_thread_free() 89 _res_thread* rt = (_res_thread*) pthread_getspecific(_res_key); in res_thread_get() local [all …]
|
D | res_cache.cpp | 1741 int rt = getaddrinfo_numeric(servers[i], sbuf, hints, &nsaddrinfo[i]); in resolv_set_nameservers_for_net() local 1742 if (rt != 0) { in resolv_set_nameservers_for_net() 1747 << ") = " << gai_strerror(rt); in resolv_set_nameservers_for_net()
|
/system/core/libpixelflinger/codeflinger/ |
D | mips64_disassem.c | 177 if ( (i.RType.func == OP_ADDU && i.RType.rt == 0) || in db_disasm_insn() 178 (i.RType.func == OP_OR && i.RType.rt == 0) ) { in db_disasm_insn() 187 reg_name[i.RType.rt], i.RType.shamt); in db_disasm_insn() 192 reg_name[i.RType.rt], reg_name[i.RType.rs]); in db_disasm_insn() 203 reg_name[i.RType.rs], reg_name[i.RType.rt]); in db_disasm_insn() 213 reg_name[i.RType.rs], reg_name[i.RType.rt]); in db_disasm_insn() 237 reg_name[i.RType.rt], in db_disasm_insn() 249 reg_name[i.RType.rt], in db_disasm_insn() 276 db_printf("\t%d", (i.RType.rs << 5) | i.RType.rt); in db_disasm_insn() 283 reg_name[i.RType.rt]); in db_disasm_insn() [all …]
|
D | mips_disassem.c | 212 if ( (i.RType.func == OP_ADDU && i.RType.rt == 0) || in db_disasm_insn() 213 (i.RType.func == OP_OR && i.RType.rt == 0) ) { in db_disasm_insn() 222 reg_name[i.RType.rt], i.RType.shamt); in db_disasm_insn() 227 reg_name[i.RType.rt], reg_name[i.RType.rs]); in db_disasm_insn() 246 reg_name[i.RType.rt], in db_disasm_insn() 258 reg_name[i.RType.rt], in db_disasm_insn() 287 reg_name[i.RType.rt]); in db_disasm_insn() 296 db_printf("\t%d", (i.RType.rs << 5) | i.RType.rt); in db_disasm_insn() 303 reg_name[i.RType.rt]); in db_disasm_insn() 313 reg_name[i.RType.rt]); in db_disasm_insn() [all …]
|
D | mips_opcode.h | 53 unsigned rt: 5; member 67 unsigned rt: 5; member 86 unsigned rt: 5; member 98 unsigned rt: 5; member
|
D | texturing.cpp | 557 CONTEXT_STORE(width, generated_vars.rt); in build_textures() 709 int rt = scratches.obtain(); in filter8() local 714 CONTEXT_LOAD(rt, generated_vars.rt); in filter8() 718 ADD(AL, 0, offset, lb, rt); in filter8() 738 LDRB(AL, pixel, txPtr.reg, reg_scale_pre(rt)); in filter8() 817 CONTEXT_LOAD(offset, generated_vars.rt); in filter16() 862 CONTEXT_LOAD(offset, generated_vars.rt); in filter16() 907 CONTEXT_LOAD(offset, generated_vars.rt); in filter32() 955 CONTEXT_LOAD(offset, generated_vars.rt); in filter32()
|
/system/core/libnetutils/ |
D | ifc_utils.c | 534 struct rtentry rt; in ifc_act_on_ipv4_route() local 538 memset(&rt, 0, sizeof(rt)); in ifc_act_on_ipv4_route() 540 rt.rt_dst.sa_family = AF_INET; in ifc_act_on_ipv4_route() 541 rt.rt_dev = (void*) ifname; in ifc_act_on_ipv4_route() 544 init_sockaddr_in(&rt.rt_genmask, netmask); in ifc_act_on_ipv4_route() 545 init_sockaddr_in(&rt.rt_dst, dst.s_addr); in ifc_act_on_ipv4_route() 546 rt.rt_flags = RTF_UP; in ifc_act_on_ipv4_route() 549 rt.rt_flags |= RTF_HOST; in ifc_act_on_ipv4_route() 553 rt.rt_flags |= RTF_GATEWAY; in ifc_act_on_ipv4_route() 554 init_sockaddr_in(&rt.rt_gateway, gw.s_addr); in ifc_act_on_ipv4_route() [all …]
|
/system/bt/stack/gatt/ |
D | gatt_cl.cc | 141 uint8_t rt = GATT_INTERNAL_ERROR; in gatt_act_read() local 202 if (op_code != 0) rt = attp_send_cl_msg(tcb, p_clcb, op_code, &msg); in gatt_act_read() 204 if (op_code == 0 || (rt != GATT_SUCCESS && rt != GATT_CMD_STARTED)) { in gatt_act_read() 205 gatt_end_operation(p_clcb, rt, NULL); in gatt_act_read() 221 uint8_t rt = gatt_send_write_msg(tcb, p_clcb, op_code, attr.handle, in gatt_act_write() local 223 if (rt != GATT_CMD_STARTED) { in gatt_act_write() 224 if (rt != GATT_SUCCESS) { in gatt_act_write() 226 "gatt_act_write() failed op_code=0x%x rt=%d", op_code, rt); in gatt_act_write() 228 gatt_end_operation(p_clcb, rt, NULL); in gatt_act_write() 237 uint8_t rt = gatt_send_write_msg(tcb, p_clcb, GATT_REQ_WRITE, in gatt_act_write() local [all …]
|
/system/bt/bta/gatt/ |
D | bta_gattc_main.cc | 304 bool rt = true; in bta_gattc_sm_execute() local 333 rt = false; in bta_gattc_sm_execute() 352 return rt; in bta_gattc_sm_execute() 367 bool rt = true; in bta_gattc_hdl_event() local 390 rt = in bta_gattc_hdl_event() 399 return rt; in bta_gattc_hdl_event()
|
/system/netd/resolv/dns_responder/ |
D | dns_tls_frontend.cpp | 407 if (const ssize_t rt = write(event_fd_.get(), &data, sizeof(data)); rt != sizeof(data)) { in sendToEventFd() local 408 APLOGI("failed to write eventfd, rt=%zd", rt); in sendToEventFd() 416 if (const ssize_t rt = read(event_fd_.get(), &data, sizeof(data)); rt != sizeof(data)) { in handleEventFd() local 417 APLOGI("ignore reading eventfd failed, rt=%zd", rt); in handleEventFd()
|
D | dns_responder.cpp | 980 if (const ssize_t rt = write(event_fd_.get(), &data, sizeof(data)); rt != sizeof(data)) { in sendToEventFd() local 981 APLOGI("failed to write eventfd, rt=%zd", rt); in sendToEventFd() 989 if (const ssize_t rt = read(event_fd_.get(), &data, sizeof(data)); rt != sizeof(data)) { in handleEventFd() local 990 APLOGI("ignore reading eventfd failed, rt=%zd", rt); in handleEventFd()
|
/system/vold/ |
D | wait_for_keymaster.rc | 5 ioprio rt 0
|
D | cryptfs.cpp | 235 static void cryptfs_reboot(RebootType rt) { in cryptfs_reboot() argument 236 switch (rt) { in cryptfs_reboot()
|
/system/bt/stack/btm/ |
D | btm_ble_gap.cc | 1463 uint8_t flag = 0, rt = 0; in btm_ble_is_discoverable() local 1469 rt |= BTM_BLE_OBS_RESULT; in btm_ble_is_discoverable() 1475 return rt; in btm_ble_is_discoverable() 1487 rt |= BTM_BLE_INQ_RESULT; in btm_ble_is_discoverable() 1493 rt |= BTM_BLE_INQ_RESULT; in btm_ble_is_discoverable() 1497 return rt; in btm_ble_is_discoverable() 2172 bool rt = false; in btm_ble_adv_states_operation() local 2176 rt = (*p_handler)(BTM_BLE_STATE_CONN_ADV_BIT); in btm_ble_adv_states_operation() 2180 rt = (*p_handler)(BTM_BLE_STATE_NON_CONN_ADV_BIT); in btm_ble_adv_states_operation() 2183 rt = (*p_handler)(BTM_BLE_STATE_HI_DUTY_DIR_ADV_BIT); in btm_ble_adv_states_operation() [all …]
|
/system/core/fs_mgr/libfs_avb/tests/data/ |
D | testkey_rsa2048.pem | 4 gXXI2IR7vVSoImREvDQGEDyJwtHzLANlkbGg0cghVhWZSCAndO8BenalC2v94/rt
|
/system/extras/memtrack/ |
D | Android.bp | 49 // updating compiler-rt to be a superset of libgcc will allow this WAR to be
|
/system/extras/cppreopts/ |
D | cppreopts.rc | 20 ioprio rt 0
|
/system/nfc/src/nfa/ee/ |
D | nfa_ee_act.cc | 2801 for (int rt = NCI_ROUTE_ORDER_AID; rt <= NCI_ROUTE_ORDER_TECHNOLOGY; rt++) { in nfa_ee_lmrt_to_nfcc() local 2809 nfa_ee_route_add_one_ecb_by_route_order(p_cb, rt, &max_len, more, p, in nfa_ee_lmrt_to_nfcc() 2813 if (rt == NCI_ROUTE_ORDER_TECHNOLOGY) more = false; in nfa_ee_lmrt_to_nfcc() 2817 nfa_ee_route_add_one_ecb_by_route_order(&nfa_ee_cb.ecb[NFA_EE_CB_4_DH], rt, in nfa_ee_lmrt_to_nfcc()
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_context.h | 503 int32_t rt;
|
/system/core/rootdir/ |
D | init.rc | 66 mkdir /dev/stune/rt 71 chown system system /dev/stune/rt 76 chown system system /dev/stune/rt/tasks 81 chmod 0664 /dev/stune/rt/tasks
|
/system/core/init/ |
D | README.md | 224 _class_ must be one of "rt", "be", or "idle". _priority_ must be an integer in the range 0 - 7.
|