/system/nfc/src/include/ |
D | bt_trace.h | 33 uintptr_t p1); 34 extern void LogMsg_2(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 36 extern void LogMsg_3(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 38 extern void LogMsg_4(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 40 extern void LogMsg_5(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 42 extern void LogMsg_6(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 102 #define BT_TRACE_1(l, t, m, p1) \ argument 104 (uintptr_t)(p1)) 105 #define BT_TRACE_2(l, t, m, p1, p2) \ argument 107 (uintptr_t)(p1), (uintptr_t)(p2)) [all …]
|
D | gki_target.h | 365 #define GKI_TRACE_1(m, p1) argument 366 #define GKI_TRACE_2(m, p1, p2) argument 367 #define GKI_TRACE_3(m, p1, p2, p3) argument 368 #define GKI_TRACE_4(m, p1, p2, p3, p4) argument 369 #define GKI_TRACE_5(m, p1, p2, p3, p4, p5) argument 370 #define GKI_TRACE_6(m, p1, p2, p3, p4, p5, p6) argument 376 #define GKI_TRACE_ERROR_1(m, p1) \ argument 379 m, p1) 380 #define GKI_TRACE_ERROR_2(m, p1, p2) \ argument 383 m, p1, p2) [all …]
|
D | android_logmsg.h | 37 void LogMsg_1(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1); 38 void LogMsg_2(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 40 void LogMsg_3(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 42 void LogMsg_4(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 44 void LogMsg_5(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 46 void LogMsg_6(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1,
|
/system/nfc/src/hal/include/ |
D | nfc_hal_target.h | 182 #define NCI_TRACE_1(l, t, m, p1) \ argument 183 LogMsg(TRACE_CTRL_GENERAL | (l) | TRACE_ORG_STACK | (t), (m), (uintptr_t)(p1)) 184 #define NCI_TRACE_2(l, t, m, p1, p2) \ argument 186 (uintptr_t)(p1), (uintptr_t)(p2)) 187 #define NCI_TRACE_3(l, t, m, p1, p2, p3) \ argument 189 (uintptr_t)(p1), (uintptr_t)(p2), (uintptr_t)(p3)) 190 #define NCI_TRACE_4(l, t, m, p1, p2, p3, p4) \ argument 192 (uintptr_t)(p1), (uintptr_t)(p2), (uintptr_t)(p3), (uintptr_t)(p4)) 193 #define NCI_TRACE_5(l, t, m, p1, p2, p3, p4, p5) \ argument 195 (uintptr_t)(p1), (uintptr_t)(p2), (uintptr_t)(p3), (uintptr_t)(p4), \ [all …]
|
D | gki_hal_target.h | 219 #define GKI_TRACE_1(m, p1) argument 220 #define GKI_TRACE_2(m, p1, p2) argument 221 #define GKI_TRACE_3(m, p1, p2, p3) argument 222 #define GKI_TRACE_4(m, p1, p2, p3, p4) argument 223 #define GKI_TRACE_5(m, p1, p2, p3, p4, p5) argument 224 #define GKI_TRACE_6(m, p1, p2, p3, p4, p5, p6) argument 230 #define GKI_TRACE_ERROR_1(m, p1) \ argument 233 m, p1) 234 #define GKI_TRACE_ERROR_2(m, p1, p2) \ argument 237 m, p1, p2) [all …]
|
/system/nfc/halimpl/bcm2079x/include/ |
D | android_logmsg.h | 37 void LogMsg_1(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1); 38 void LogMsg_2(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 40 void LogMsg_3(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 42 void LogMsg_4(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 44 void LogMsg_5(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1, 46 void LogMsg_6(uint32_t trace_set_mask, const char* fmt_str, uintptr_t p1,
|
/system/bt/btcore/src/ |
D | property.cc | 50 bool property_equals(const bt_property_t* p1, const bt_property_t* p2) { in property_equals() argument 53 if (!p1 || !p2 || p1->type != p2->type) { in property_equals() 65 if (p1->type == BT_PROPERTY_BDNAME && p1->len != p2->len) { in property_equals() 66 const bt_property_t *shorter = p1, *longer = p2; in property_equals() 67 if (p1->len > p2->len) { in property_equals() 69 longer = p1; in property_equals() 75 return p1->len == p2->len && !memcmp(p1->val, p2->val, p1->len); in property_equals()
|
D | device_class.cc | 95 bool device_class_equals(const bt_device_class_t* p1, in device_class_equals() argument 97 CHECK(p1 != NULL); in device_class_equals() 99 return (memcmp(p1, p2, sizeof(bt_device_class_t)) == 0); in device_class_equals()
|
/system/nfc/src/adaptation/ |
D | android_logmsg.cpp | 274 void LogMsg_1(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1) { in LogMsg_1() argument 275 LogMsg(maskTraceSet, fmt_str, p1); in LogMsg_1() 278 void LogMsg_2(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_2() argument 280 LogMsg(maskTraceSet, fmt_str, p1, p2); in LogMsg_2() 283 void LogMsg_3(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_3() argument 285 LogMsg(maskTraceSet, fmt_str, p1, p2, p3); in LogMsg_3() 288 void LogMsg_4(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_4() argument 290 LogMsg(maskTraceSet, fmt_str, p1, p2, p3, p4); in LogMsg_4() 293 void LogMsg_5(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_5() argument 295 LogMsg(maskTraceSet, fmt_str, p1, p2, p3, p4, p5); in LogMsg_5() [all …]
|
/system/nfc/halimpl/bcm2079x/adaptation/ |
D | android_logmsg.cpp | 273 void LogMsg_1(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1) { in LogMsg_1() argument 274 LogMsg(maskTraceSet, fmt_str, p1); in LogMsg_1() 277 void LogMsg_2(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_2() argument 279 LogMsg(maskTraceSet, fmt_str, p1, p2); in LogMsg_2() 282 void LogMsg_3(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_3() argument 284 LogMsg(maskTraceSet, fmt_str, p1, p2, p3); in LogMsg_3() 287 void LogMsg_4(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_4() argument 289 LogMsg(maskTraceSet, fmt_str, p1, p2, p3, p4); in LogMsg_4() 292 void LogMsg_5(uint32_t maskTraceSet, const char* fmt_str, uintptr_t p1, in LogMsg_5() argument 294 LogMsg(maskTraceSet, fmt_str, p1, p2, p3, p4, p5); in LogMsg_5() [all …]
|
/system/bt/stack/test/ |
D | stack_smp_test.cc | 85 BT_OCTET16 p1); 188 BT_OCTET16 p1; in TEST_F() local 194 smp_gen_p1_4_confirm(&p_cb_, remote_bd_addr_type, p1); in TEST_F() 198 dump_uint128_reverse(p1, p1_str); in TEST_F() 200 smp_xor_128(p1, rand_); in TEST_F() 204 dump_uint128_reverse(p1, p1_xor_r_str); in TEST_F() 209 SMP_Encrypt(p_cb_.tk, BT_OCTET16_LEN, p1, BT_OCTET16_LEN, &output)); in TEST_F()
|
/system/gatekeeper/include/gatekeeper/ |
D | gatekeeper_utils.h | 47 static inline int memcmp_s(const void* p1, const void* p2, size_t length) { in memcmp_s() argument 48 const uint8_t* s1 = static_cast<const uint8_t*>(p1); in memcmp_s()
|
/system/keymaster/ |
D | android_keymaster_utils.cpp | 36 int memcmp_s(const void* p1, const void* p2, size_t length) { in memcmp_s() argument 37 const uint8_t* s1 = static_cast<const uint8_t*>(p1); in memcmp_s()
|
/system/extras/app-launcher/ |
D | computestatsf.c | 23 compare_double(const void *p1, const void *p2) in compare_double() argument 25 double val1 = *(u_int64_t *)p1; in compare_double()
|
D | computestats.c | 23 compare_long(const void *p1, const void *p2) in compare_long() argument 25 u_int64_t val1 = *(u_int64_t *)p1; in compare_long()
|
/system/bt/btif/src/ |
D | bluetooth.cc | 122 static bool is_profile(const char* p1, const char* p2) { in is_profile() argument 123 CHECK(p1); in is_profile() 125 return strlen(p1) == strlen(p2) && strncmp(p1, p2, strlen(p2)) == 0; in is_profile()
|
/system/bt/btcore/include/ |
D | device_class.h | 53 bool device_class_equals(const bt_device_class_t* p1,
|
D | property.h | 38 bool property_equals(const bt_property_t* p1, const bt_property_t* p2);
|
/system/bt/stack/smp/ |
D | smp_keys.cc | 358 BT_OCTET16 p1) { in smp_gen_p1_4_confirm() argument 360 uint8_t* p = (uint8_t*)p1; in smp_gen_p1_4_confirm() 380 smp_debug_print_nbyte_little_endian((uint8_t*)p1, in smp_gen_p1_4_confirm() 439 BT_OCTET16 p1; in smp_calculate_comfirm() local 440 smp_gen_p1_4_confirm(p_cb, remote_bd_addr_type, p1); in smp_calculate_comfirm() 442 smp_xor_128(p1, rand); in smp_calculate_comfirm() 443 smp_debug_print_nbyte_little_endian((uint8_t*)p1, "p1' = p1 XOR r", 16); in smp_calculate_comfirm() 447 if (!SMP_Encrypt(p_cb->tk, BT_OCTET16_LEN, p1, BT_OCTET16_LEN, output)) { in smp_calculate_comfirm() 1758 uint8_t* p1; in smp_calculate_long_term_key_from_link_key() local 1760 p1 = rev_link_key; in smp_calculate_long_term_key_from_link_key() [all …]
|
/system/tpm/trunks/ |
D | mock_tpm.cc | 119 const TPM2B_ECC_POINT& p1, in CommitSync() argument 128 return CommitSyncShort(sign_handle, param_size, p1, y2, param_size_out, k, l, in CommitSync()
|
/system/bt/bta/hf_client/ |
D | bta_hf_client_at.cc | 1473 char *p1, *p2; in bta_hf_client_dump_at() local 1475 p1 = client_cb->at_cb.buf; in bta_hf_client_dump_at() 1478 while (*p1 != '\0') { in bta_hf_client_dump_at() 1479 if (*p1 == '\r') { in bta_hf_client_dump_at() 1482 } else if (*p1 == '\n') { in bta_hf_client_dump_at() 1486 *p2 = *p1; in bta_hf_client_dump_at() 1489 p1++; in bta_hf_client_dump_at()
|
/system/extras/perfprofd/tests/ |
D | perfprofd_test.cc | 591 { const auto &p1 = encodedProfile.programs(0); in TEST_F() local 592 const auto &lm1 = p1.modules(0); in TEST_F() 601 { const auto &p1 = encodedProfile.programs(2); in TEST_F() local 602 const auto &lm2 = p1.modules(0); in TEST_F()
|
/system/tools/hidl/c2hal/test/ |
D | test.h | 280 int (*p1)(struct framebuffer_device_t* dev); member
|
/system/bt/stack/include/ |
D | btm_ble_api_types.h | 283 typedef void(tBTM_RAND_ENC_CB)(tBTM_RAND_ENC* p1);
|
D | btm_api_types.h | 123 typedef void(tBTM_CMPL_CB)(void* p1); 129 typedef void(tBTM_VSC_CMPL_CB)(tBTM_VSC_CMPL* p1); 709 typedef void(tBTM_INQ_DB_CHANGE_CB)(void* p1, bool is_new);
|