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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/protobuf/src/google/protobuf/
service.cc 35 #include <google/protobuf/service.h>
40 Service::~Service() {}
  /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 {
  /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 {
  /cts/tests/tests/provider/src/android/provider/cts/contacts/account/
MockAccountService.java 19 import android.app.Service;
24 * Account service for the authenticator
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/ContactsCommon/src/com/android/contacts/common/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/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 {
  /frameworks/base/core/java/android/nfc/cardemulation/
OffHostApduService.java 5 import android.app.Service;
11 * <p>OffHostApduService is a convenience {@link Service} class that can be
28 * <h3>Service selection</h3>
47 * to some AIDs in the group going to another service).
66 * to determine if your off-host service is the default handler for a category.
74 * <h3>Service AID registration</h3>
76 * reside off-host and are managed by this service, a {@link #SERVICE_META_DATA}
77 * entry must be included in the declaration of the service. An
79 * <pre> &lt;service android:name=".MyOffHostApduService" android:exported="true" android:permission="android.permission.BIND_NFC_SERVICE"&gt;
84 * &lt;/service&gt;</pre
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/tests/testauth/
TestSyncService.java 18 import android.app.Service;
22 public abstract class TestSyncService extends Service {
  /packages/apps/Exchange/src/com/android/exchange/service/
AbstractSyncAdapterService.java 17 package com.android.exchange.service;
19 import android.app.Service;
31 public abstract class AbstractSyncAdapterService 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 532 milliseconds

1 2 3 4 5 6 7 8 91011>>