/frameworks/native/libs/vr/libpdx_uds/ |
D | service_framework_tests.cpp | 81 friend class TestService; 91 class TestService : public ServiceBase<TestService> { class 236 std::shared_ptr<TestService> other_service_; 242 TestService(const std::string& name, in TestService() function in __anon2687ab1c0111::TestService 243 const std::shared_ptr<TestService>& other_service) in TestService() 244 : TestService(name, other_service, false) {} in TestService() 246 TestService(const std::string& name, in TestService() function in __anon2687ab1c0111::TestService 247 const std::shared_ptr<TestService>& other_service, bool blocking) in TestService() 253 explicit TestService(const std::string& name) : TestService(name, nullptr) {} in TestService() function in __anon2687ab1c0111::TestService 255 TestService(const TestService&) = delete; [all …]
|
D | remote_method_tests.cpp | 343 class TestService : public ServiceBase<TestService> { class 348 DispatchRemoteMethod<TestInterface::Add>(*this, &TestService::OnAdd, in HandleMessage() 353 DispatchRemoteMethod<TestInterface::Foo>(*this, &TestService::OnFoo, in HandleMessage() 359 *this, &TestService::OnConcatenate, message); in HandleMessage() 364 *this, &TestService::OnSumVector, message); in HandleMessage() 369 *this, &TestService::OnStringLength, message); in HandleMessage() 374 *this, &TestService::OnSendTestType, message); in HandleMessage() 379 *this, &TestService::OnSendVector, message); in HandleMessage() 383 DispatchRemoteMethod<TestInterface::Rot13>(*this, &TestService::OnRot13, in HandleMessage() 389 *this, &TestService::OnNoArgs, message); in HandleMessage() [all …]
|
D | client_channel_tests.cpp | 46 class TestService : public ServiceBase<TestService> { class 48 explicit TestService(std::unique_ptr<Endpoint> endpoint) in TestService() function in __anon8afdb3350111::TestService 54 DispatchRemoteMethod<TestProtocol::Sum>(*this, &TestService::OnSum, in HandleMessage() 84 service_ = TestService::Create(std::move(endpoint)); in TestServiceRunner() 98 std::shared_ptr<TestService> service_;
|
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
D | FrameworkPerfActivity.java | 73 TestService.Op mFgTest; 74 TestService.Op mBgTest; 124 case TestService.RES_TEST_FINISHED: { 140 mAvailOpLabels = new String[TestService.mAvailOps.length]; in FrameworkPerfActivity() 141 mAvailOpDescriptions = new String[TestService.mAvailOps.length]; in FrameworkPerfActivity() 142 for (int i=0; i<TestService.mAvailOps.length; i++) { in FrameworkPerfActivity() 143 TestService.Op op = TestService.mAvailOps[i]; in FrameworkPerfActivity() 213 TestService.Op op = TestService.mAvailOps[position]; in onItemSelected() 282 Message msg = Message.obtain(null, TestService.CMD_START_TEST, bundle); in dispatchCurOp() 310 if (mCurOpIndex >= TestService.mOpPairs.length) { in completeCurOp() [all …]
|
D | LocalTestService.java | 3 public class LocalTestService extends TestService {
|
D | RunResult.java | 31 RunResult(TestService.TestRunner op) { in RunResult()
|
D | TestService.java | 57 public class TestService extends Service { class 333 mForegroundOp.onInit(TestService.this, true); in run() 334 mBackgroundOp.onInit(TestService.this, false); in run() 400 mForegroundOp.onTerm(TestService.this); in threadFinished() 401 mBackgroundOp.onTerm(TestService.this); in threadFinished()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/ |
D | ServiceTest.java | 43 import protobuf_unittest.UnittestProto.TestService; 64 TestService.getDescriptor().getMethods().get(0); 66 TestService.getDescriptor().getMethods().get(1); 83 TestService mockService = control.createMock(TestService.class); in testCallMethod() 100 TestService mockService = control.createMock(TestService.class); in testGetPrototype() 119 TestService stub = TestService.newStub(mockChannel); in testStub() 146 TestService.BlockingInterface stub = in testBlockingStub() 147 TestService.newBlockingStub(mockChannel); in testBlockingStub()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/ |
D | ServiceTest.java | 40 import protobuf_unittest.UnittestProto.TestService; 65 TestService.getDescriptor().getMethods().get(0); 67 TestService.getDescriptor().getMethods().get(1); 84 TestService mockService = control.createMock(TestService.class); in testCallMethod() 101 TestService mockService = control.createMock(TestService.class); in testGetPrototype() 120 TestService stub = TestService.newStub(mockChannel); in testStub() 147 TestService.BlockingInterface stub = in testBlockingStub() 148 TestService.newBlockingStub(mockChannel); in testBlockingStub()
|
D | DescriptorsTest.java | 58 import protobuf_unittest.UnittestProto.TestService; 124 ServiceDescriptor service = TestService.getDescriptor(); in testFileDescriptor() 322 ServiceDescriptor service = TestService.getDescriptor(); in testServiceDescriptor()
|
/frameworks/base/core/tests/coretests/BstatsTestApp/src/com/android/coretests/apps/bstatstestapp/ |
D | TestService.java | 39 public class TestService extends Service { class 40 private static final String TAG = TestService.class.getSimpleName(); 96 final WindowManager wm = TestService.this.getSystemService(WindowManager.class); in removeOverlays() 110 final WindowManager wm = TestService.this.getSystemService(WindowManager.class); 128 mOverlay = new View(TestService.this); 133 final Handler handler = new Handler(TestService.this.getMainLooper());
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/python/google/protobuf/internal/ |
D | service_reflection_test.py | 64 class MyService(unittest_pb2.TestService): 82 service_descriptor = unittest_pb2.TestService.GetDescriptor() 89 class MyServiceImpl(unittest_pb2.TestService):
|
/frameworks/base/core/tests/coretests/apks/install_multi_package/src/com/android/frameworks/coretests/ |
D | TestService.java | 24 public class TestService extends Service { class
|
/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/ |
D | TestService.java | 24 public class TestService extends Service { class
|
/frameworks/base/tests/ActivityManagerPerfTests/test-app/src/com/android/frameworks/perftests/amteststestapp/ |
D | TestService.java | 27 public class TestService extends Service { class
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/ |
D | unittest_no_generic_services.proto | 50 service TestService { service
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/testdata/ |
D | struct.proto | 43 service TestService { service
|
D | anys.proto | 51 service TestService { service
|
D | timestamp_duration.proto | 45 service TestService { service
|
D | oneofs.proto | 65 service TestService { service
|
D | maps.proto | 83 service TestService { service
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | unittest_no_generic_services.proto | 52 service TestService { service
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/ |
D | unittest_no_generic_services.proto | 50 service TestService { service
|
/frameworks/native/cmds/lshal/ |
D | test.cpp | 309 class TestService : public IBase { class 311 explicit TestService(pid_t id) : mId(id) {} in TestService() function in android::lshal::TestService 376 return sp<IBase>(new TestService(id)); in initMockServiceManager()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/cpp/ |
D | cpp_unittest.cc | 1126 class MockTestService : public unittest::TestService { 1251 : descriptor_(unittest::TestService::descriptor()), in GeneratedServiceTest() 1270 unittest::TestService::Stub stub_; 1296 unittest::TestService::Stub owning_stub(channel, in TEST_F() 1386 class UnimplementedService : public unittest::TestService { in TEST_F() 2084 struct TestService { struct
|