/system/media/audio_utils/include/audio_utils/ |
D | futex.h | 35 int sys_futex(void *addr1, int op, int val1, const struct timespec *timeout, void *addr2, in sys_futex() argument 39 return syscall(SYS_futex, addr1, op, val1, timeout, addr2, val3); in sys_futex() 42 (void) addr1; in sys_futex()
|
/system/bt/gd/hci/ |
D | address_with_type_test.cc | 31 Address addr1{{0x01, 0x02, 0x03, 0x04, 0x05, 0x06}}; in TEST() local 33 AddressWithType address_with_type_1(addr1, type1); in TEST() 57 Address addr1{{0x01, 0x02, 0x03, 0x04, 0x05, 0x06}}; in TEST() local 59 AddressWithType address_with_type_1(addr1, type1); in TEST()
|
D | address_unittest.cc | 207 Address addr1{{0x01, 0x02, 0x03, 0x04, 0x05, 0x06}}; in TEST() local 211 ASSERT_EQ(hasher(addr1), hasher(addr2)); in TEST() 215 data[addr1] = 5; in TEST() 217 ASSERT_EQ(data[addr1], data[addr2]); in TEST() 221 Address addr1{{0x01, 0x02, 0x03, 0x04, 0x05, 0x06}}; in TEST() local 223 ASSERT_NE(hasher(addr1), hasher(Address::kEmpty)); in TEST() 227 Address addr1{{0x01, 0x02, 0x03, 0x04, 0x05, 0x06}}; in TEST() local 229 ASSERT_NE(hasher(addr1), hasher(Address::kAny)); in TEST()
|
/system/bt/btcore/test/ |
D | property_test.cc | 42 const RawAddress* addr1 = property_as_addr(property); in TEST_F() local 43 EXPECT_EQ(addr0.address[0], addr1->address[0]); in TEST_F() 206 RawAddress addr1 = {{0x1, 0x2, 0x3, 0x4, 0x5, 0xff}}; in TEST_F() local 207 bt_property_t* property1 = property_new_addr(&addr1); in TEST_F()
|
/system/memory/libmeminfo/tools/ |
D | wsstop.cpp | 51 const char* addr1 = " start end "; in print_header() local 54 printf("%s virtual shared shared private private\n", addr1); in print_header()
|
D | showmap.cpp | 142 const char* addr1 = g_show_addr ? " start end " : ""; in print_header() local 147 addr1); in print_header()
|
/system/extras/simpleperf/ |
D | cmd_record.cpp | 2015 uint64_t addr1; in ParseOneAddrFilter() local 2021 if (auto p = s.data(); ConsumeStr(p, "start") && ConsumeAddr(p, &addr1)) { in ParseOneAddrFilter() 2024 filters->emplace_back(AddrFilter::KERNEL_START, addr1, 0, ""); in ParseOneAddrFilter() 2029 if (auto elf = ElfFile::Open(p); elf && elf->VaddrToOff(addr1, &off1) && Realpath(p, &path)) { in ParseOneAddrFilter() 2035 if (auto p = s.data(); ConsumeStr(p, "stop") && ConsumeAddr(p, &addr1)) { in ParseOneAddrFilter() 2038 filters->emplace_back(AddrFilter::KERNEL_STOP, addr1, 0, ""); in ParseOneAddrFilter() 2043 if (auto elf = ElfFile::Open(p); elf && elf->VaddrToOff(addr1, &off1) && Realpath(p, &path)) { in ParseOneAddrFilter() 2049 if (auto p = s.data(); ConsumeStr(p, "filter") && ConsumeAddr(p, &addr1) && ConsumeStr(p, "-") && in ParseOneAddrFilter() 2053 filters->emplace_back(AddrFilter::KERNEL_RANGE, addr1, addr2 - addr1, ""); in ParseOneAddrFilter() 2058 if (auto elf = ElfFile::Open(p); elf && elf->VaddrToOff(addr1, &off1) && in ParseOneAddrFilter()
|
/system/netd/tests/ |
D | binder_test.cpp | 2337 IPAddress addr1, addr2; in TEST_F() local 2338 ASSERT_TRUE(IPAddress::forString("192.0.2.1", &addr1)); in TEST_F() 2340 EXPECT_EQ(0, tun1.addAddress(addr1.toString(), 32)); in TEST_F()
|