Home
last modified time | relevance | path

Searched refs:nestedService (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/system/tools/aidl/tests/java/src/android/aidl/tests/
DNestedTypesTests.java39 INestedService nestedService = INestedService.Stub.asInterface(binder); in testUseNestedTypes() local
40 assertNotNull(nestedService); in testUseNestedTypes()
45 INestedService.Result result = nestedService.flipStatus(p); in testUseNestedTypes()
57 nestedService.flipStatusWithCallback(p.status, cb); in testUseNestedTypes()
/aosp_15_r20/system/tools/aidl/tests/
Daidl_test_client_nested.cpp41 sp<INestedService> nestedService = in TEST_F() local
43 ASSERT_NE(nullptr, nestedService); in TEST_F()
49 EXPECT_TRUE(nestedService->flipStatus(p, &r).isOk()); in TEST_F()
61 EXPECT_TRUE(nestedService->flipStatusWithCallback(r.status, cb).isOk()); in TEST_F()
Daidl_test_client_ndk_nested.cpp51 auto nestedService = getService<INestedService>(); in TEST_F() local
52 ASSERT_NE(nullptr, nestedService); in TEST_F()
58 auto status = nestedService->flipStatus(p, &r); in TEST_F()
71 status = nestedService->flipStatusWithCallback(r.status, cb); in TEST_F()