Home
last modified time | relevance | path

Searched refs:one (Results 1 – 25 of 261) sorted by relevance

1234567891011

/system/core/libbacktrace/
Dbacktrace_testlib.cpp38 int test_level_four(int one, int two, int three, int four, void (*callback_func)(void*), in test_level_four() argument
46 return one + two + three + four; in test_level_four()
49 int test_level_three(int one, int two, int three, int four, void (*callback_func)(void*), in test_level_three() argument
51 return test_level_four(one + 3, two + 6, three + 9, four + 12, callback_func, data) + 3; in test_level_three()
54 int test_level_two(int one, int two, int three, int four, void (*callback_func)(void*), void* data)… in test_level_two() argument
55 return test_level_three(one + 2, two + 4, three + 6, four + 8, callback_func, data) + 2; in test_level_two()
58 int test_level_one(int one, int two, int three, int four, void (*callback_func)(void*), void* data)… in test_level_one() argument
59 return test_level_two(one + 1, two + 2, three + 3, four + 4, callback_func, data) + 1; in test_level_one()
/system/bt/gd/packet/parser/test/
Dtest_packets.pdl152 one : Variable,
175 one : TwoRelatedNumbers,
179 one : TwoRelatedNumbers,
205 one : StructWithFixedTypes,
233 one : ArrayOfStructAndAnotherStruct,
237 one : SizedArrayOfStructAndAnotherStruct,
399 one : 8,
Dbig_endian_test_packets.pdl145 one : Variable,
168 one : TwoRelatedNumbersBe,
172 one : TwoRelatedNumbersBe,
193 one : StructWithFixedTypesBe,
Dgenerated_packet_test.cc622 auto one = view.GetOne(); in TEST() local
623 ASSERT_EQ(one->data, variable_one.data); in TEST()
635 auto one = view.GetOne(); in TEST() local
636 ASSERT_EQ(one, nullptr); in TEST()
902 auto one = view.GetOne(); in TEST() local
903 ASSERT_EQ(one.id_, copy_trn.id_); in TEST()
904 ASSERT_EQ(one.count_, copy_trn.count_); in TEST()
936 auto one = view.GetOne(); in TEST() local
937 ASSERT_EQ(one.id_, count_array[0].id_); in TEST()
938 ASSERT_EQ(one.count_, count_array[0].count_); in TEST()
[all …]
/system/core/adb/
DSERVICES.TXT48 Ask to switch the connection to one device connected through USB
49 to the host machine. This will fail if there are more than one such
53 Ask to switch the connection to one emulator connected through TCP.
54 This will fail if there is more than one such emulator instance
60 Will fail if there is more than one such device/emulator available.
66 for information related to a specific device. <request> can be in one
71 to the host. This will fail if there is none or more than one.
75 running on the host. This will fail if there is none or more than one.
99 There, <host-prefix> can be one of the
103 the format of <local> is one of:
[all …]
DOVERVIEW.TXT23 to each one of them: OFFLINE, BOOTLOADER, RECOVERY or ONLINE (more on
26 The ADB server is really one giant multiplexing loop whose purpose is
50 and will start one automatically if none is found.
98 The server should answer a request with one of the following:
120 An ADB transport models a connection between the ADB server and one device
132 Each transport can carry one or more multiplexed streams between clients
/system/iorap/docs/binder/
DTaskResult.dot26 // graph-easy does not support multiple state syntax {}, write one-by-one
/system/timezone/input_tools/iana/
DNOTICE2 this one) are in the public domain. The exceptions are date.c,
/system/timezone/testing/data/test1/output_data/iana/
DNOTICE2 this one) are in the public domain. The exceptions are date.c,
/system/timezone/input_data/iana/
DNOTICE2 this one) are in the public domain. The exceptions are date.c,
/system/timezone/output_data/iana/
DNOTICE2 this one) are in the public domain. The exceptions are date.c,
/system/timezone/testing/data/test3/output_data/iana/
DNOTICE2 this one) are in the public domain. The exceptions are date.c,
/system/timezone/testing/data/test2/output_data/iana/
DNOTICE2 this one) are in the public domain. The exceptions are date.c,
/system/extras/simpleperf/
Dreport_sample.proto40 // Simpleperf generates one sample whenever a specified amount of events happen
41 // while running a monitored thread. So each sample belongs to one event type.
43 // By using '-e' option, we can ask simpleperf to record samples for one or more
/system/timezone/debug_tools/host/
DREADME.android17 from being the same as one major region to be the same as a different major
24 same from time X until the end of time? If the answer is no, one of the
/system/timezone/input_data/android/
Dtelephonylookup.txt29 # in multiple countries where the MCC country is one of them must also not be
34 # There must only be one network element per MCC+MNC combination.
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java502 LargeSafeUnion one = safeunionInterface.newLargeSafeUnion(); in runClientSafeUnionTests() local
504 ExpectTrue(one.equals(two)); in runClientSafeUnionTests()
506 one = safeunionInterface.setA(one, (byte) 1); in runClientSafeUnionTests()
507 ExpectFalse(one.equals(two)); in runClientSafeUnionTests()
510 ExpectFalse(one.equals(two)); in runClientSafeUnionTests()
513 ExpectFalse(one.equals(two)); in runClientSafeUnionTests()
516 ExpectTrue(one.equals(two)); in runClientSafeUnionTests()
523 LargeSafeUnion one = safeunionInterface.newLargeSafeUnion(); in runClientSafeUnionTests() local
526 one = safeunionInterface.setI(one, testVectorA); in runClientSafeUnionTests()
528 ExpectFalse(one.equals(two)); in runClientSafeUnionTests()
[all …]
/system/extras/boottime_tools/bootanalyze/
DREADME.md14 To ensure correct adjustment of time, one has to include event in config that will
/system/tools/hidl/test/java_test/
Dhidl_test_java_native.cpp1159 EXPECT_OK(safeunionInterface->newLargeSafeUnion([&](const LargeSafeUnion& one) { in TEST_F() argument
1161 EXPECT_TRUE(one == two); in TEST_F()
1162 EXPECT_FALSE(one != two); in TEST_F()
1165 EXPECT_OK(safeunionInterface->setA(one, 1, [&](const LargeSafeUnion& one) { in TEST_F() argument
1167 EXPECT_FALSE(one == two); in TEST_F()
1168 EXPECT_TRUE(one != two); in TEST_F()
1173 EXPECT_FALSE(one == two); in TEST_F()
1174 EXPECT_TRUE(one != two); in TEST_F()
1180 EXPECT_FALSE(one == two); in TEST_F()
1181 EXPECT_TRUE(one != two); in TEST_F()
[all …]
/system/bt/service/common/
DREADME11 one common include path exported to them, and our headers can find eachother
/system/sepolicy/prebuilts/api/26.0/private/
Dmls30 # Datagram send: Sender must be equivalent to the receiver unless one of them
35 # Stream connect: Client must be equivalent to server unless one of them
96 # Presently commented out, as apps are expected to call one another.
/system/sepolicy/prebuilts/api/27.0/private/
Dmls30 # Datagram send: Sender must be equivalent to the receiver unless one of them
35 # Stream connect: Client must be equivalent to server unless one of them
96 # Presently commented out, as apps are expected to call one another.
/system/hardware/interfaces/net/netd/1.1/
DINetd.hal28 * Either both, or one of the ifname and nexthop must be specified.
51 * Either both, or one of the ifname and nexthop must be specified.
106 * Enables forwarding between two interfaces, one of which must be in an
/system/sepolicy/prebuilts/api/28.0/private/
Dmls30 # Datagram send: Sender must be equivalent to the receiver unless one of them
35 # Stream connect: Client must be equivalent to server unless one of them
96 # Presently commented out, as apps are expected to call one another.
/system/bt/osi/test/
Dconfig_test.cc159 std::string one = std::string("one"); in TEST_F() local
161 config_get_string(*config, CONFIG_DEFAULT_SECTION, "first_key", &one) in TEST_F()
163 config_get_string(*clone, CONFIG_DEFAULT_SECTION, "first_key", &one) in TEST_F()

1234567891011