HomeSort by relevance Sort by last modified time
    Searched refs:Service (Results 1 - 25 of 236) sorted by null

1 2 3 4 5 6 7 8 910

  /external/protobuf/src/google/protobuf/
service.cc 35 #include <google/protobuf/service.h>
40 Service::~Service() {}
  /external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
Service.java 23 public interface Service {
  /development/samples/BrowserPlugin/src/com/android/sampleplugin/
SamplePlugin.java 27 import android.app.Service;
31 public class SamplePlugin extends Service {
  /frameworks/base/tests/BrowserTestPlugin/src/com/android/testplugin/
TestPlugin.java 19 import android.app.Service;
23 public class TestPlugin extends Service {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 27 import java.security.Provider.Service;
38 * Tests for <code>Provider.Service</code> constructor and methods
46 new Provider.Service(null, "type", "algorithm", "className", null,
52 new Provider.Service(p, null, "algorithm", "className", null, null);
57 new Provider.Service(p, "type", null, "className", null, null);
62 new Provider.Service(p, "type", "algorithm", null, null, null);
67 Provider.Service s = new Provider.Service(p, "type", "algorithm",
89 Provider.Service s = new Provider.Service(p, "type", "algorithm"
    [all...]
  /cts/tests/src/android/content/cts/
MockAccountService.java 19 import android.app.Service;
24 * a basic Mock Service for wrapping the MockAccountAuthenticator
26 public class MockAccountService extends Service {
MockSyncAdapterService.java 19 import android.app.Service;
23 public class MockSyncAdapterService extends Service {
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountService.java 19 import android.app.Service;
24 * a basic Mock Service for wrapping the MockAccountAuthenticator
26 public class MockAccountService extends Service {
  /frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DisabledService.java 19 import android.app.Service;
24 * Empty Service for testing
27 public class DisabledService extends Service {
EnabledService.java 19 import android.app.Service;
24 * Empty Service for testing
27 public class EnabledService extends Service {
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeCoreService.java 19 import android.app.Service;
24 public class FakeCoreService extends Service {
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
SecurityAccess.java 41 * Access to Service.getAliases()
45 public List<String> getAliases(Provider.Service s);
53 public Provider.Service getService(Provider p, String type);
  /packages/apps/Contacts/src/com/android/contacts/util/
EmptyService.java 19 import android.app.Service;
24 * Background {@link Service} that is used to keep our process alive long enough
28 public class EmptyService extends Service {
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
EmptyService.java 18 import android.app.Service;
23 * Background {@link Service} that is used to keep our process alive long enough
27 public class EmptyService extends Service {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
MockSyncAdapter.java 19 import android.app.Service;
26 public class MockSyncAdapter extends Service {
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/
TestService.class.data 
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 6 ATTRIBUTE User-Service-Type 6 integer
19 VALUE Service-Type Shell-User 6
21 VALUE Service-Type Dialback-Login-User 3
22 VALUE Service-Type Dialback-Framed-User 4
33 VALUE Service-Type Login 1
34 VALUE Service-Type Framed 2
35 VALUE Service-Type Callback-Login 3
36 VALUE Service-Type Callback-Framed 4
37 VALUE Service-Type Exec-User 7
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
ProviderService_ImplTest.java 31 * Tests for <code>Provider.Service</code> constructor and methods
41 Provider.Service s = new Provider.Service(p, "type", "algorithm",
44 "Provider MyProvider Service type.algorithm className",
52 s = new Provider.Service(p, "type", "algorithm", "className",
55 "Provider MyProvider Service type.algorithm className\n"
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 34 * Tests for <code>Provider.Service</code> constructor and methods
42 new Provider.Service(null, "type", "algorithm",
48 new Provider.Service(p, null, "algorithm",
54 new Provider.Service(p, "type", null,
60 new Provider.Service(p, "type", "algorithm",
66 Provider.Service s = new Provider.Service(p,
79 Provider.Service s = new Provider.Service(p,
94 s = new Provider.Service(p, "type", "algorithm", "className",
    [all...]
  /cts/tests/src/android/os/cts/
EmptyService.java 19 import android.app.Service;
24 public class EmptyService extends Service {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncService.java 18 import android.app.Service;
23 * Service to handle Account sync. This is invoked with an intent with action
27 public class SyncService extends Service {
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
TestSyncService.java 18 import android.app.Service;
22 public abstract class TestSyncService extends Service {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractExecutionThreadServiceTest.java 58 WaitOnRunService service = new WaitOnRunService(); local
59 assertFalse(service.startUpCalled);
61 service.start().get();
62 assertTrue(service.startUpCalled);
63 assertEquals(Service.State.RUNNING, service.state());
65 enterRun.await(); // to avoid stopping the service until run() is invoked
67 service.stop().get();
68 assertTrue(service.shutDownCalled);
69 assertEquals(Service.State.TERMINATED, service.state())
75 WaitOnRunService service = new WaitOnRunService(); local
103 WaitOnRunService service = new WaitOnRunService(); local
169 ThrowOnStartUpService service = new ThrowOnStartUpService(); local
204 ThrowOnRunService service = new ThrowOnRunService(); local
215 ThrowOnRunService service = new ThrowOnRunService(); local
247 ThrowOnShutDown service = new ThrowOnShutDown(); local
279 TimeoutOnStartUp service = new TimeoutOnStartUp(); local
    [all...]
AbstractServiceTest.java 40 NoOpService service = new NoOpService(); local
41 Assert.assertEquals(Service.State.NEW, service.state());
42 assertFalse(service.isRunning());
43 assertFalse(service.running);
45 service.start();
46 assertEquals(Service.State.RUNNING, service.state());
47 assertTrue(service.isRunning());
48 assertTrue(service.running)
57 NoOpService service = new NoOpService(); local
67 NoOpService service = new NoOpService(); local
79 NoOpService service = new NoOpService(); local
91 NoOpService service = new NoOpService(); local
104 NoOpService service = new NoOpService(); local
137 ManualSwitchedService service = new ManualSwitchedService(); local
159 ManualSwitchedService service = new ManualSwitchedService(); local
182 ManualSwitchedService service = new ManualSwitchedService(); local
217 ThreadedService service = new ThreadedService(); local
231 ThreadedService service = new ThreadedService(); local
248 ThreadedService service = new ThreadedService(); local
267 ThreadedService service = new ThreadedService(); local
341 NoOpService service = new NoOpService(); local
352 StartThrowingService service = new StartThrowingService(); local
363 StopThrowingService service = new StopThrowingService(); local
375 RunThrowingService service = new RunThrowingService(); local
    [all...]
AbstractIdleServiceTest.java 19 import com.google.common.util.concurrent.Service.State;
52 NullService service = new NullService(); local
53 assertFalse(service.startUpCalled);
55 service.start().get();
56 assertTrue(service.startUpCalled);
57 assertEquals(Service.State.RUNNING, service.state());
59 service.stop().get();
60 assertTrue(service.shutDownCalled);
61 assertEquals(Service.State.TERMINATED, service.state())
67 NullService service = new NullService(); local
77 Service service = new NullService() { local
    [all...]

Completed in 1065 milliseconds

1 2 3 4 5 6 7 8 910