Home
last modified time | relevance | path

Searched refs:ByteEnum (Results 1 – 15 of 15) sorted by relevance

/cts/tests/tests/binder_ndk/libbinder_ndk_test/test_package/
DSimpleUnion.aidl4 import test_package.ByteEnum;
18 ByteEnum d;
19 ByteEnum[] e;
DFoo.aidl4 import test_package.ByteEnum;
24 ByteEnum shouldBeByteBar;
27 ByteEnum[] shouldContainTwoByteFoos;
DITest.aidl19 import test_package.ByteEnum;
63 ByteEnum RepeatByteEnum(ByteEnum value); in RepeatByteEnum()
92 ByteEnum[] RepeatByteEnumArray(in ByteEnum[] input, out ByteEnum[] repeated); in RepeatByteEnumArray()
111 @nullable ByteEnum[] RepeatNullableByteEnumArray(in @nullable ByteEnum[] input); in RepeatNullableByteEnumArray()
DByteEnum.aidl20 enum ByteEnum { enum
/cts/tests/tests/binder_ndk/libbinder_ndk_test/aidl_api/libbinder_ndk_test_interface/current/test_package/
DSimpleUnion.aidl24 test_package.ByteEnum d;
25 test_package.ByteEnum[] e;
DITest.aidl51 test_package.ByteEnum RepeatByteEnum(test_package.ByteEnum value); in RepeatByteEnum()
72 …test_package.ByteEnum[] RepeatByteEnumArray(in test_package.ByteEnum[] input, out test_package.Byt… in RepeatByteEnumArray()
87 …@nullable test_package.ByteEnum[] RepeatNullableByteEnumArray(in @nullable test_package.ByteEnum[]… in RepeatNullableByteEnumArray()
DFoo.aidl27 test_package.ByteEnum shouldBeByteBar;
30 test_package.ByteEnum[] shouldContainTwoByteFoos;
DByteEnum.aidl36 enum ByteEnum { enum
/cts/tests/tests/binder_ndk/libbinder_ndk_test/aidl_api/libbinder_ndk_test_interface/1/test_package/
DITest.aidl51 test_package.ByteEnum RepeatByteEnum(test_package.ByteEnum value); in RepeatByteEnum()
72 …test_package.ByteEnum[] RepeatByteEnumArray(in test_package.ByteEnum[] input, out test_package.Byt… in RepeatByteEnumArray()
87 …@nullable test_package.ByteEnum[] RepeatNullableByteEnumArray(in @nullable test_package.ByteEnum[]… in RepeatNullableByteEnumArray()
DFoo.aidl27 test_package.ByteEnum shouldBeByteBar;
30 test_package.ByteEnum[] shouldContainTwoByteFoos;
DByteEnum.aidl36 enum ByteEnum { enum
/cts/tests/tests/binder_ndk/libbinder_ndk_test/
Dtest_native_aidl_client.cpp42 using ::aidl::test_package::ByteEnum;
278 ByteEnum out; in TEST_P()
279 ASSERT_OK(iface->RepeatByteEnum(ByteEnum::FOO, &out)); in TEST_P()
280 EXPECT_EQ(ByteEnum::FOO, out); in TEST_P()
296 EXPECT_EQ(toString(ByteEnum::FOO), "FOO"); in TEST_P()
304 auto range = ::ndk::enum_range<ByteEnum>(); in TEST_P()
306 EXPECT_EQ(ByteEnum::FOO, *iter++); in TEST_P()
307 EXPECT_EQ(ByteEnum::BAR, *iter++); in TEST_P()
579 foo.shouldBeByteBar = ByteEnum::BAR; in TEST_P()
582 foo.shouldContainTwoByteFoos = {ByteEnum::FOO, ByteEnum::FOO}; in TEST_P()
[all …]
Ditest_impl.h31 using ::aidl::test_package::ByteEnum;
141 ::ndk::ScopedAStatus RepeatByteEnum(ByteEnum in_value, ByteEnum* _aidl_return) override { in RepeatByteEnum()
277 ::ndk::ScopedAStatus RepeatByteEnumArray(const std::vector<ByteEnum>& in_value, in RepeatByteEnumArray()
278 std::vector<ByteEnum>* out_repeated, in RepeatByteEnumArray()
279 std::vector<ByteEnum>* _aidl_return) override { in RepeatByteEnumArray()
387 const std::optional<std::vector<ByteEnum>>& in_value, in RepeatNullableByteEnumArray()
388 std::optional<std::vector<ByteEnum>>* _aidl_return) override { in RepeatNullableByteEnumArray()
DAndroid.bp33 "test_package/ByteEnum.aidl",
/cts/tests/tests/binder_ndk/src/android/binder/cts/
DJavaClientTest.java46 import test_package.ByteEnum;
177 assertEquals(ByteEnum.FOO, mInterface.RepeatByteEnum(ByteEnum.FOO)); in testRepeatPrimitives()
433 byte[] value = {ByteEnum.FOO, ByteEnum.BAR}; in testArrays()
568 byte[] value = {ByteEnum.FOO, ByteEnum.BAR}; in testNullableArrays()
631 foo.shouldBeByteBar = ByteEnum.BAR; in testRepeatFoo()
635 foo.shouldContainTwoByteFoos = new byte[]{ByteEnum.FOO, ByteEnum.FOO}; in testRepeatFoo()
639 foo.u = SimpleUnion.e(new byte[]{ByteEnum.FOO, ByteEnum.FOO}); in testRepeatFoo()