HomeSort by relevance Sort by last modified time
    Searched refs:Service (Results 51 - 75 of 880) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
bug084.go 9 type Service struct {
13 func (s *Service) Serve(a int64) {
20 var arith Service
24 a := new(Service)
  /external/parameter-framework/asio-1.10.6/include/asio/impl/
io_service.hpp 22 template <typename Service>
23 inline Service& use_service(io_service& ios)
25 // Check that Service meets the necessary type requirements.
26 (void)static_cast<io_service::service*>(static_cast<Service*>(0));
27 (void)static_cast<const io_service::id*>(&Service::id);
29 return ios.service_registry_->template use_service<Service>();
39 template <typename Service>
40 inline void add_service(io_service& ios, Service* svc)
42 // Check that Service meets the necessary type requirements
    [all...]
  /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/mockito/src/test/java/org/mockitousage/bugs/
ShouldNotDeadlockAnswerExecutionTest.java 23 Service service = Mockito.mock(Service.class); local
29 Mockito.when(service.verySlowMethod()).thenAnswer(new LockingAnswer(counter));
33 threads.execute(new ServiceRunner(service));
34 threads.execute(new ServiceRunner(service));
48 Service service1 = Mockito.mock(Service.class);
49 Service service2 = Mockito.mock(Service.class)
98 private Service service; field in class:ShouldNotDeadlockAnswerExecutionTest.ServiceRunner
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeScreenStatePreventingAdapter.java 27 public class DozeScreenStatePreventingAdapter extends DozeMachine.Service.Delegate {
30 DozeScreenStatePreventingAdapter(DozeMachine.Service inner) {
46 public static DozeMachine.Service wrapIfNeeded(DozeMachine.Service inner,
  /frameworks/native/libs/vr/libpdx/private/pdx/
service_dispatcher.h 14 class Service;
17 * ServiceDispatcher manages a list of Service instances and handles message
29 * Adds a service to the list of services handled by this dispatcher. This
33 * Returns 0 on success; -EEXIST if the service was already added.
35 int AddService(const std::shared_ptr<Service>& service);
38 * Removes a service from this dispatcher. This will fail if any threads are
41 * Returns 0 on success; -ENOENT if the service was not previously added;
44 int RemoveService(const std::shared_ptr<Service>& service);
    [all...]
  /cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/
ProtectedCrossUserService.java 19 import android.app.Service;
28 public class ProtectedCrossUserService extends Service {
  /cts/tests/tests/accounts/CtsUnaffiliatedAccountAuthenticators/src/android/accounts/cts/unaffiliated/
DefaultAccountAuthService.java 21 import android.app.Service;
26 * a basic Mock Service for wrapping the TestDefaultAuthenticator
28 public class DefaultAccountAuthService extends Service {
StdAccountAuthService.java 21 import android.app.Service;
26 * a basic Mock Service for wrapping the MockAccountAuthenticator
28 public class StdAccountAuthService extends Service {
  /cts/tests/tests/os/src/android/os/cts/
EmptyService.java 19 import android.app.Service;
24 public class EmptyService extends Service {
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
SyncService.java 19 import android.app.Service;
25 * Service which provides the SyncAdapter implementation to the framework on request.
27 public class SyncService 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 {
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ServiceModule.java 19 import com.google.common.util.concurrent.Service;
32 static ServiceManager provideServiceManager(Set<Service> services) {
  /frameworks/base/core/java/android/nfc/cardemulation/
OffHostApduService.java 21 import android.app.Service;
27 * <p>OffHostApduService is a convenience {@link Service} class that can be
44 * <h3>Service selection</h3>
63 * to some AIDs in the group going to another service).
82 * to determine if your off-host service is the default handler for a category.
90 * <h3>Service AID registration</h3>
92 * reside off-host and are managed by this service, a {@link #SERVICE_META_DATA}
93 * entry must be included in the declaration of the service. An
95 * <pre> &lt;service android:name=".MyOffHostApduService" android:exported="true" android:permission="android.permission.BIND_NFC_SERVICE"&gt;
100 * &lt;/service&gt;</pre
    [all...]
  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusedLocationService.java 19 import android.app.Service;
23 public class FusedLocationService extends Service {
  /frameworks/base/services/tests/servicestests/test-apps/ConnTestApp/src/com/android/servicestests/apps/conntestapp/
CmdReceiverService.java 18 import android.app.Service;
24 public class CmdReceiverService 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 {
  /packages/services/Telecomm/src/com/android/server/telecom/components/
BluetoothPhoneService.java 21 import android.app.Service;
29 public final class BluetoothPhoneService extends Service implements TelecomSystem.Component {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ServiceTest.java 19 import static com.google.common.util.concurrent.Service.State.FAILED;
20 import static com.google.common.util.concurrent.Service.State.NEW;
21 import static com.google.common.util.concurrent.Service.State.RUNNING;
22 import static com.google.common.util.concurrent.Service.State.STARTING;
23 import static com.google.common.util.concurrent.Service.State.STOPPING;
24 import static com.google.common.util.concurrent.Service.State.TERMINATED;
29 * Unit tests for {@link Service}
ServiceManagerTest.java 63 * A NoOp service that will delay the startup and shutdown notification for a configurable amount
112 Service a = new NoOpDelayedService(150);
113 Service b = new NoOpDelayedService(353);
116 ImmutableMap<Service, Long> startupTimes = serviceManager.startupTimes();
124 // 1. service times are accurate when the service is started by the manager
125 // 2. service times are recorded when the service is not started by the manager (but they may
127 final Service b = new NoOpDelayedService(353) {
130 // This will delay service listener execution at least 150 millisecond
435 NoOpService service = new NoOpService(); local
    [all...]
  /external/guice/core/test/com/google/inject/example/
ClientServiceWithGuice.java 35 public interface Service {
39 public static class ServiceImpl implements Service {
47 bind(Service.class).to(ServiceImpl.class).in(Scopes.SINGLETON);
53 private final Service service; field in class:ClientServiceWithGuice.Client
56 public Client(Service service) {
57 this.service = service;
61 service.go()
    [all...]
ClientServiceWithGuiceDefaults.java 36 public interface Service {
41 public static class ServiceImpl implements ClientServiceWithGuiceDefaults.Service {
49 private final Service service; field in class:ClientServiceWithGuiceDefaults.Client
52 public Client(Service service) {
53 this.service = service;
57 service.go();
68 public static class MockService implements Service {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Driver.c 2 Driver Binding functions and Service Binding functions
36 Destroy the MTFTP6 service. The MTFTP6 service may be partly initialized,
40 @param[in] Service The MTFTP6 service to be destroyed.
45 IN MTFTP6_SERVICE *Service
51 ASSERT (Service->ChildrenNum == 0);
53 if (Service->DummyUdpIo != NULL) {
54 UdpIoFreeIo (Service->DummyUdpIo);
57 if (Service->Timer != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Driver.c 2 Driver Binding functions and Service Binding functions
84 Destroy the Dhcp6 service. The Dhcp6 service may be partly initialized,
88 @param[in, out] Service The pointer to Dhcp6 service to be destroyed.
93 IN OUT DHCP6_SERVICE *Service
99 ASSERT (Service->NumOfChild == 0);
101 if (Service->ClientId != NULL) {
102 FreePool (Service->ClientId);
105 if (Service->UdpIo != NULL) {
    [all...]
  /external/protobuf/src/google/protobuf/
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 {
111 class Service;
124 // interface can be used to call the methods of the Service without knowing
126 class LIBPROTOBUF_EXPORT Service {
128 inline Service() {}
    [all...]

Completed in 467 milliseconds

1 23 4 5 6 7 8 91011>>