/frameworks/base/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/ |
TestService.java | 24 public class TestService extends Service {
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
TestService.java | 9 class TestService extends Service implements ServiceConnection {
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
CarProjectionManagerTest.java | 40 public static class TestService extends Service { 86 Intent intent = new Intent(getContext(), TestService.class); 87 assertFalse(TestService.getBound()); 89 synchronized (TestService.mLock) { 91 TestService.mLock.wait(1000); 96 assertTrue(TestService.getBound());
|
/frameworks/native/libs/vr/libpdx_uds/ |
client_channel_tests.cpp | 45 class TestService : public ServiceBase<TestService> { 47 TestService(std::unique_ptr<Endpoint> endpoint) 48 : ServiceBase{"TestService", std::move(endpoint)} {} 53 DispatchRemoteMethod<TestProtocol::Sum>(*this, &TestService::OnSum, 83 service_ = TestService::Create(std::move(endpoint)); 97 std::shared_ptr<TestService> service_;
|
remote_method_tests.cpp | 343 class TestService : public ServiceBase<TestService> { 348 DispatchRemoteMethod<TestInterface::Add>(*this, &TestService::OnAdd, 353 DispatchRemoteMethod<TestInterface::Foo>(*this, &TestService::OnFoo, 359 *this, &TestService::OnConcatenate, message); 364 *this, &TestService::OnSumVector, message); 369 *this, &TestService::OnStringLength, message); 374 *this, &TestService::OnSendTestType, message); 379 *this, &TestService::OnSendVector, message); 383 DispatchRemoteMethod<TestInterface::Rot13>(*this, &TestService::OnRot13 [all...] |
service_framework_tests.cpp | 80 friend class TestService; 90 class TestService : public ServiceBase<TestService> { 235 std::shared_ptr<TestService> other_service_; 241 TestService(const std::string& name, 242 const std::shared_ptr<TestService>& other_service) 243 : TestService(name, other_service, false) {} 245 TestService(const std::string& name, 246 const std::shared_ptr<TestService>& other_service, bool blocking) 247 : BASE(std::string("TestService") + name [all...] |
/packages/apps/Settings/tests/robotests/src/com/android/settings/ |
SettingsDumpServiceTest.java | 46 private TestService mTestService; 52 when(mPackageManager.resolveActivity(TestService.BROWSER_INTENT, 54 mTestService = new TestService(); 83 assertThat(object.get(TestService.KEY_SERVICE)).isNotNull(); 89 private class TestService extends SettingsDumpService {
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AbstractIdleServiceTest.java | 92 TestService service = new TestService(); 102 TestService service = new TestService() { 121 TestService service = new TestService(); 130 TestService service = new TestService(); 144 TestService service = new TestService() { [all...] |
AbstractScheduledServiceTest.java | 74 TestService service = new TestService(); 91 TestService service = new TestService(); 104 TestService service = new TestService(); 120 TestService service = new TestService(); 134 TestService service = new TestService(); [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_unittest.cc | [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
ICUServiceTest.java | 98 static final class TestService extends ICUService { 99 public TestService() { 111 ICUService service = new TestService(); [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
ICUServiceTest.java | 97 static final class TestService extends ICUService { 98 public TestService() { 110 ICUService service = new TestService(); [all...] |
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
TestService.java | 57 public class TestService extends Service { 333 mForegroundOp.onInit(TestService.this, true); 334 mBackgroundOp.onInit(TestService.this, false); 400 mForegroundOp.onTerm(TestService.this); 401 mBackgroundOp.onTerm(TestService.this); [all...] |