Home
last modified time | relevance | path

Searched refs:two (Results 1 – 25 of 110) sorted by relevance

12345

/system/tools/hidl/test/java_test/
Dhidl_test_java_native.cpp1149 EXPECT_OK(safeunionInterface->newLargeSafeUnion([&](const LargeSafeUnion& two) { in TEST_F() argument
1150 EXPECT_TRUE(one == two); in TEST_F()
1151 EXPECT_FALSE(one != two); in TEST_F()
1155 EXPECT_OK(safeunionInterface->newLargeSafeUnion([&](const LargeSafeUnion& two) { in TEST_F() argument
1156 EXPECT_FALSE(one == two); in TEST_F()
1157 EXPECT_TRUE(one != two); in TEST_F()
1160 EXPECT_OK(safeunionInterface->newLargeSafeUnion([&](const LargeSafeUnion& two) { in TEST_F() argument
1161 EXPECT_OK(safeunionInterface->setB(two, 1, [&](const LargeSafeUnion& two) { in TEST_F() argument
1162 EXPECT_FALSE(one == two); in TEST_F()
1163 EXPECT_TRUE(one != two); in TEST_F()
[all …]
/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
DHidlTestJava.java516 LargeSafeUnion two = safeunionInterface.newLargeSafeUnion(); in runClientSafeUnionTests() local
517 ExpectTrue(one.equals(two)); in runClientSafeUnionTests()
520 ExpectFalse(one.equals(two)); in runClientSafeUnionTests()
522 two = safeunionInterface.setB(two, (byte) 1); in runClientSafeUnionTests()
523 ExpectFalse(one.equals(two)); in runClientSafeUnionTests()
525 two = safeunionInterface.setA(two, (byte) 2); in runClientSafeUnionTests()
526 ExpectFalse(one.equals(two)); in runClientSafeUnionTests()
528 two = safeunionInterface.setA(two, (byte) 1); in runClientSafeUnionTests()
529 ExpectTrue(one.equals(two)); in runClientSafeUnionTests()
537 LargeSafeUnion two = safeunionInterface.newLargeSafeUnion(); in runClientSafeUnionTests() local
[all …]
/system/tools/hidl/test/error_test/no_empty_safe_union/1.0/
Drequired_error1 Safe union must contain at least two types to be useful
/system/tools/hidl/test/error_test/no_single_element_safe_union/1.0/
Drequired_error1 Safe union must contain at least two types to be useful
/system/tools/aidl/tests/lazy_test/
DREADME4 This test can be run in one of two ways:
73 Only two lines are required in this file.
78 The first two lines establish types for aidl_lazy_test_server and aidl_lazy_test_server_exec.
/system/libsysprop/srcs/android/sysprop/
DCrashRecoveryProperties.sysprop26 # Below two properties track individual system server boot events, and are reset once the boot
44 # Below two properties track multiple calls made to observers tracking boot loops. They are reset
/system/sepolicy/private/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
Dhal_omx.te17 # between those two: it talks to hal_omx_server via Binder and talks to bufferhubd
/system/sepolicy/prebuilts/api/34.0/public/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
Dhal_omx.te17 # between those two: it talks to hal_omx_server via Binder and talks to bufferhubd
/system/sepolicy/prebuilts/api/33.0/public/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
Dhal_omx.te17 # between those two: it talks to hal_omx_server via Binder and talks to bufferhubd
/system/sepolicy/prebuilts/api/30.0/public/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
/system/sepolicy/prebuilts/api/202404/public/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
/system/sepolicy/prebuilts/api/32.0/public/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
/system/sepolicy/prebuilts/api/31.0/public/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
/system/sepolicy/prebuilts/api/29.0/public/
Dbufferhubd.te19 # those two: it talks to hal_omx_server via Binder and talks to bufferhubd via PDX.
Dhal_omx.te17 # between those two: it talks to hal_omx_server via Binder and talks to bufferhubd
/system/timezone/input_tools/android/tzids/src/main/proto/
Dtz_ids_proto.proto47 // before some point in time. After that point in time, the two zones have been judged as
49 // 1974, so the two can be considered equivalent today, but not for dates before that.
/system/tools/hidl/test/hidl_test/
Dhidl_test_client.cpp2462 EXPECT_OK(safeunionInterface->newLargeSafeUnion([&](const LargeSafeUnion& two) { in TEST_F() argument
2463 EXPECT_TRUE(one == two); in TEST_F()
2464 EXPECT_FALSE(one != two); in TEST_F()
2468 EXPECT_OK(safeunionInterface->newLargeSafeUnion([&](const LargeSafeUnion& two) { in TEST_F() argument
2469 EXPECT_FALSE(one == two); in TEST_F()
2470 EXPECT_TRUE(one != two); in TEST_F()
2473 EXPECT_OK(safeunionInterface->newLargeSafeUnion([&](const LargeSafeUnion& two) { in TEST_F() argument
2474 EXPECT_OK(safeunionInterface->setB(two, 1, [&](const LargeSafeUnion& two) { in TEST_F() argument
2475 EXPECT_FALSE(one == two); in TEST_F()
2476 EXPECT_TRUE(one != two); in TEST_F()
[all …]
/system/libhidl/
Dtest_main.cpp550 hidl_string two = "2"; in TEST_F() local
553 EXPECT_EQ(one, Return<hidl_string>(one).withDefault(two)); in TEST_F()
554 EXPECT_EQ(two, ret.withDefault(two)); in TEST_F()
556 hidl_string&& moved = ret.withDefault(std::move(two)); in TEST_F()
/system/unwinding/libunwindstack/tests/
DMemoryTest.cpp49 bool two; member
/system/extras/simpleperf/doc/
Ddebug_dwarf_unwinding.md11 debug-unwind command, to help debug and profile dwarf unwinding. Below are two use cases.
19 and be able to reproduce them. simpleperf record cmd has two options for this:
/system/chre/doc/
Dnanoapp_clients.md6 as the *client* of the nanoapp. There are two ways to interact with nanoapps
48 `createClient()` API supports two modes of operation, which define how events
/system/hardware/interfaces/net/netd/1.1/
DINetd.hal106 * Enables forwarding between two interfaces, one of which must be in an
112 * two interfaces.

12345