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

1 2 3 4 5 6 7 8 91011

  /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/core/tests/coretests/apks/install_complete_package_info/src/com/android/frameworks/coretests/
TestService.java 20 import android.app.Service;
24 public class TestService 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"
  /tools/motodev/src/plugins/remote.device/
plugin.properties 22 connectServiceDescription=Service to connect to a remote device
25 disconnectServiceDescription=Service to disconnect from a remote device
27 initServiceName=Init Remote Device Service
28 initServiceDescription=Service to initialize the remote device
41 wirelessDescription=Service to switch the connection mode from USB cable to TCP/IP
42 usbModeDescription=Service to switch the connection mode from TCP/IP to USB cable
  /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...]

Completed in 448 milliseconds

1 2 3 4 5 6 7 8 91011