Home | History | Annotate | Download | only in tests

Lines Matching refs:ITestService

38 using android::aidl::tests::ITestService;
51 bool ConfirmPrimitiveRepeat(const sp<ITestService>& s) {
54 if (!RepeatPrimitive(s, &ITestService::RepeatBoolean, true) ||
55 !RepeatPrimitive(s, &ITestService::RepeatByte, int8_t{-128}) ||
56 !RepeatPrimitive(s, &ITestService::RepeatChar, char16_t{'A'}) ||
57 !RepeatPrimitive(s, &ITestService::RepeatInt, int32_t{1 << 30}) ||
58 !RepeatPrimitive(s, &ITestService::RepeatLong, int64_t{1ll << 60}) ||
59 !RepeatPrimitive(s, &ITestService::RepeatFloat, float{1.0f/3.0f}) ||
60 !RepeatPrimitive(s, &ITestService::RepeatDouble, double{1.0/3.0}) ||
62 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT) ||
64 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT2) ||
66 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT3) ||
68 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT4) ||
70 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT5) ||
72 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT6) ||
74 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT7) ||
76 s, &ITestService::RepeatInt, ITestService::TEST_CONSTANT8)
103 bool ConfirmReverseArrays(const sp<ITestService>& s) {
106 if (!ReverseArray(s, &ITestService::ReverseBoolean,
108 !ReverseArray(s, &ITestService::ReverseByte,
110 !ReverseArray(s, &ITestService::ReverseChar,
112 !ReverseArray(s, &ITestService::ReverseInt,
114 !ReverseArray(s, &ITestService::ReverseLong,
116 !ReverseArray(s, &ITestService::ReverseFloat,
118 !ReverseArray(s, &ITestService::ReverseDouble,
120 !ReverseArray(s, &ITestService::ReverseString,
128 bool ConfirmReverseLists(const sp<ITestService>& s) {
131 if (!ReverseArray(s, &ITestService::ReverseStringList,
139 bool ConfirmReverseBinderLists(const sp<ITestService>& s) {