HomeSort by relevance Sort by last modified time
    Searched refs:ITestService (Results 1 - 18 of 18) sorted by null

  /system/tools/aidl/tests/
aidl_test_client_primitives.h 22 #include "android/aidl/tests/ITestService.h"
30 bool ConfirmPrimitiveRepeat(const sp<ITestService>& s);
31 bool ConfirmReverseArrays(const android::sp<ITestService>& s);
32 bool ConfirmReverseLists(const android::sp<ITestService>& s);
33 bool ConfirmReverseBinderLists(const android::sp<ITestService>& s);
aidl_test_client_file_descriptors.h 22 #include "android/aidl/tests/ITestService.h"
30 bool ConfirmFileDescriptors(const sp<ITestService>& s);
31 bool ConfirmFileDescriptorArrays(const sp<ITestService>& s);
aidl_test_client_parcelables.h 22 #include "android/aidl/tests/ITestService.h"
30 bool ConfirmSimpleParcelables(const sp<ITestService>& s);
31 bool ConfirmPersistableBundles(const sp<ITestService>& s);
aidl_test_client_primitives.cpp 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) |
    [all...]
aidl_test_client_utf8_strings.h 22 #include "android/aidl/tests/ITestService.h"
31 const android::sp<android::aidl::tests::ITestService>& s);
33 const android::sp<android::aidl::tests::ITestService>& s);
35 const android::sp<android::aidl::tests::ITestService>& s);
aidl_test_client_nullables.h 22 #include "android/aidl/tests/ITestService.h"
30 bool ConfirmNullables(const sp<ITestService>& s);
aidl_test_client_service_exceptions.h 22 #include "android/aidl/tests/ITestService.h"
30 bool ConfirmServiceSpecificExceptions(const sp<ITestService>& s);
aidl_test_client_nullables.cpp 34 using android::aidl::tests::ITestService;
92 bool ConfirmNullableType(const sp<ITestService>& s, string type_name,
94 Status(ITestService::*func)(const unique_ptr<T>&,
137 bool ConfirmNullables(const sp<ITestService>& s) {
144 &ITestService::RepeatNullableIntArray)) {
150 &ITestService::RepeatNullableString)) {
166 &ITestService::RepeatNullableStringList)) {
173 &ITestService::RepeatNullableParcelable)) {
aidl_test_client_service_exceptions.cpp 32 bool ConfirmServiceSpecificExceptions(const sp<ITestService>& s) {
test_helpers.h 24 #include "android/aidl/tests/ITestService.h"
33 const android::sp<android::aidl::tests::ITestService>& service,
34 android::binder::Status(android::aidl::tests::ITestService::*func)(T, T*),
48 const android::sp<android::aidl::tests::ITestService>& service,
49 android::binder::Status(android::aidl::tests::ITestService::*func)(
aidl_test_client.cpp 24 #include "android/aidl/tests/ITestService.h"
43 using android::aidl::tests::ITestService;
54 const char kServiceName[] = "android.aidl.tests.ITestService";
56 bool GetService(sp<ITestService>* service) {
75 sp<ITestService> service;
aidl_test_client_utf8_strings.cpp 27 #include "android/aidl/tests/ITestService.h"
37 using android::aidl::tests::ITestService;
48 bool ConfirmUtf8InCppStringRepeat(const sp<ITestService>& s) {
103 bool ConfirmUtf8InCppStringArrayReverse(const sp<ITestService>& s) {
105 if (!ReverseArray(s, &ITestService::ReverseUtf8CppString,
113 bool ConfirmUtf8InCppStringListReverse(const sp<ITestService>& s) {
aidl_test_client_file_descriptors.cpp 35 using android::aidl::tests::ITestService;
104 bool ConfirmFileDescriptors(const sp<ITestService>& s) {
135 bool ConfirmFileDescriptorArrays(const sp<ITestService>& s) {
aidl_test_client_parcelables.cpp 29 using android::aidl::tests::ITestService;
42 bool ConfirmSimpleParcelables(const sp<ITestService>& s) {
78 bool ConfirmPersistableBundles(const sp<ITestService>& s) {
  /packages/experimental/RpcPerformance/
rpcperftest.cpp 31 class ITestService : public IInterface {
36 typedef BpInterface<ITestService> BpTestService;
54 status_t status = sm->addService(name, new BnInterface<ITestService>());
  /system/tools/aidl/tests/java_app/src/android/aidl/tests/
TestServiceClient.java 43 import android.aidl.tests.ITestService;
103 private ITestService getService() throws TestFailException {
105 ITestService.class.getName());
109 ITestService ret = ITestService.Stub.asInterface(service);
116 private void checkPrimitiveRepeat(ITestService service)
153 int query[] = {ITestService.TEST_CONSTANT,
154 ITestService.TEST_CONSTANT2,
155 ITestService.TEST_CONSTANT3,
156 ITestService.TEST_CONSTANT4
    [all...]
  /system/tools/aidl/
Android.mk 141 tests/android/aidl/tests/ITestService.aidl \
192 tests/android/aidl/tests/ITestService.aidl \
  /system/tools/aidl/tests/android/aidl/tests/
ITestService.aidl 23 interface ITestService {

Completed in 260 milliseconds