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

1 2 3 4 5 6 7 8 9

  /external/protobuf/src/google/protobuf/
service.cc 35 #include <google/protobuf/service.h>
40 Service::~Service() {}
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /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 {
  /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 {
  /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/guava/src/com/google/common/util/concurrent/
ForwardingService.java 19 import com.google.common.base.Service;
25 * A {@link Service} that forwards all method calls to another service.
31 implements Service {
33 @Override protected abstract Service delegate();
  /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 {
TestAuthenticationService.java 19 import android.app.Service;
24 public abstract class TestAuthenticationService extends Service {
30 Log.v(TestauthConstants.LOG_TAG, this + " Service started.");
36 Log.v(TestauthConstants.LOG_TAG, this + " Service stopped.");
  /cts/tests/src/android/app/cts/
MockService.java 19 import android.app.Service;
24 public class MockService extends Service {
35 * set the result as true when service bind
44 * set the result as true when service start
StubRemoteService.java 19 import android.app.Service;
24 public class StubRemoteService extends Service{

Completed in 1282 milliseconds

1 2 3 4 5 6 7 8 9