/external/protobuf/java/src/main/java/com/google/protobuf/ |
Service.java | 37 * interface can be used to call the methods of the service without knowing 48 public interface Service { 50 * Get the {@code ServiceDescriptor} describing this service and its methods. 55 * <p>Call a method of the service specified by MethodDescriptor. This is 57 * definitions of the service's methods. 65 * being used by this Service. For stubs, the "correct type" depends 66 * on the RpcChannel which the stub is using. Server-side Service 100 * service.getDescriptorForType().findMethodByName("Foo"); 104 * service.callMethod(method, request, callback); 112 * the {@code Service} implementation constructs the response message itself [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/ |
Constants.java | 19 import android.app.Service; 23 * Background {@link Service} that is used to keep our process alive long enough
|
/system/connectivity/apmanager/dbus/ |
service_dbus_adaptor.h | 22 #include <dbus_bindings/org.chromium.apmanager.Service.h> 29 class Service; 36 Service* service); 58 Service* service_;
|
/system/connectivity/shill/cellular/ |
active_passive_out_of_credits_detector.h | 39 CellularService* service); 45 Service::ConnectState old_state, 46 Service::ConnectState new_state) override; 94 void DetectConnectDisconnectLoop(Service::ConnectState curr_state, 95 Service::ConnectState new_state); 96 // Reconnects to the cellular service in the context of out-of-credits 121 // String to hold service identifier for scoped logging.
|
/system/connectivity/shill/supplicant/ |
mock_supplicant_eap_state_handler.h | 35 Service::ConnectFailure* failure));
|
supplicant_eap_state_handler.h | 22 #include "shill/service.h" 44 Service::ConnectFailure* failure);
|
/system/connectivity/shill/vpn/ |
mock_openvpn_driver.h | 35 MOCK_METHOD2(FailService, void(Service::ConnectFailure failure,
|
/system/connectivity/dhcp_client/ |
service.cc | 17 #include "dhcp_client/service.h" 39 Service::Service(Manager* manager, 55 Service::~Service() { 59 bool Service::Start() { 90 void Service::Stop() { 98 void Service::ParseConfigs(const brillo::VariantDictionary& configs) {
|
/system/connectivity/shill/ |
mock_metrics.h | 36 void(const Service& service, const std::string& histogram_name, 37 Service::ConnectState start_state, 38 Service::ConnectState stop_state)); 47 MOCK_METHOD1(NotifyDefaultServiceChanged, void(const Service* service)); 49 void(const Service& service, Service::ConnectState new_state)); 71 const Service::ConnectFailure failure)) [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/ |
io_service.hpp | 33 template <typename Service> Service& use_service(io_service& ios); 34 template <typename Service> void add_service(io_service& ios, Service* svc); 35 template <typename Service> bool has_service(io_service& ios); 139 * services, indexed by service type. An object of class io_service must be 153 * In a call to @c use_service<Service>(), the type argument chooses a service, 154 * making available all members of the named type. If @c Service is not present 155 * in an io_service, an object of type @c Service is created and added to th 653 class io_service::service class in class:asio::io_service [all...] |
/system/weaved/libweaved/ |
service.h | 35 // A weaved service is an abstract interface representing an instance of weave 40 class LIBWEAVED_EXPORT Service { 55 Service() = default; 56 virtual ~Service() = default; 96 // Service creation functionality. 98 // management for the service. The service instance is kept alive for as long 99 // as the service connection is alive. See comments for Service::Connect for 113 base::Callback<void(const std::weak_ptr<Service>& service)> [all...] |
/system/core/init/ |
service.h | 41 #define SVC_RESTART 0x100 // Use to safely restart (stop, wait, start) a service. 43 #define SVC_EXEC 0x400 // This synthetic service corresponds to an 'exec'. 69 class Service { 71 Service(const std::string& name, const std::string& classname, 74 Service(const std::string& name, const std::string& classname, 104 using OptionHandler = bool (Service::*) (const std::vector<std::string>& args, 151 // keycodes for triggering this service via /dev/keychord 165 void AddService(std::unique_ptr<Service> service); 166 Service* MakeExecOneshotService(const std::vector<std::string>& args) [all...] |
/prebuilts/sdk/tools/lib/ |
shrinkedAndroid.jar | |
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
AbstractExecutionThreadServiceTest.java | 64 WaitOnRunService service = new WaitOnRunService(); local 65 assertFalse(service.startUpCalled); 67 service.startAsync().awaitRunning(); 68 assertTrue(service.startUpCalled); 69 assertEquals(Service.State.RUNNING, service.state()); 71 enterRun.await(); // to avoid stopping the service until run() is invoked 73 service.stopAsync().awaitTerminated(); 74 assertTrue(service.shutDownCalled); 75 assertEquals(Service.State.TERMINATED, service.state()) 81 WaitOnRunService service = new WaitOnRunService(); local 98 WaitOnRunService service = new WaitOnRunService(); local 164 ThrowOnStartUpService service = new ThrowOnStartUpService(); local 199 ThrowOnRunService service = new ThrowOnRunService(); local 215 ThrowOnRunService service = new ThrowOnRunService(); local 253 ThrowOnShutDown service = new ThrowOnShutDown(); local 285 TimeoutOnStartUp service = new TimeoutOnStartUp(); local 310 FakeService service = new FakeService() { local 327 FakeService service = new FakeService(); local 336 WaitOnRunService service = new WaitOnRunService(); local [all...] |
/cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/ |
MyForegroundService.java | 21 import android.app.Service; 27 * Service used to change app state to FOREGROUND_SERVICE. 29 public class MyForegroundService extends Service {
|
/cts/tests/tests/os/src/android/os/cts/ |
MessengerService.java | 20 import android.app.Service; 28 public class MessengerService extends Service {
|
/cts/tests/tests/security/src/android/security/cts/activity/ |
SecureRandomService.java | 24 import android.app.Service; 29 public class SecureRandomService extends Service {
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/ |
AuthenticationService.java | 19 import android.app.Service; 25 * Service to handle Account authentication. It instantiates the authenticator 28 public class AuthenticationService extends Service { 37 Log.v(TAG, "SampleSyncAdapter Authentication Service started."); 45 Log.v(TAG, "SampleSyncAdapter Authentication Service stopped.");
|
/external/chromium-trace/catapult/third_party/webapp2/tests/resources/ |
protorpc_services.py | 10 class BonjourService(remote.Service): 22 class CiaoService(remote.Service):
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/ |
FacadeService.java | 1 package com.googlecode.android_scripting.service; 3 import android.app.Service; 14 * FacadeService exposes SL4A's Facade methods through a {@link Service} so 21 * intent.setAction("com.googlecode.android_scripting.service.FacadeService.ACTION_BIND"); 24 * Example using the service:<br> 35 * For more info on binding a {@link Service} using a {@link Messenger} please 38 public class FacadeService extends Service {
|
/frameworks/base/core/java/android/service/carrier/ |
CarrierService.java | 15 package android.service.carrier; 18 import android.app.Service; 28 * A service that exposes carrier-specific functionality to the system. 30 * To extend this class, you must declare the service in your manifest file to require the 32 * filter with the {@link #CARRIER_SERVICE_INTERFACE}. If the service should have a long-lived 33 * binding, set android.service.carrier.LONG_LIVED_BINDING to true in the service's metadata. 38 * <service android:name=".MyCarrierService" 42 * <action android:name="android.service.carrier.CarrierService" /> 44 * <meta-data android:name="android.service.carrier.LONG_LIVED_BINDING [all...] |
/frameworks/base/core/java/android/service/media/ |
CameraPrewarmService.java | 17 package android.service.media; 19 import android.app.Service; 27 * Extend this class to implement a camera prewarm service. See 30 public abstract class CameraPrewarmService extends Service { 33 * Intent action to bind the service as a prewarm service. 37 "android.service.media.CameraPrewarmService.ACTION_PREWARM";
|
/frameworks/base/core/tests/coretests/src/android/os/ |
BinderThreadPriorityService.java | 19 import android.app.Service; 25 * Service used by {@link BinderThreadPriorityTest} to verify 28 public class BinderThreadPriorityService extends Service {
|
MessengerService.java | 19 import android.app.Service; 27 public class MessengerService extends Service {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
SystemUIService.java | 19 import android.app.Service; 26 public class SystemUIService extends Service { 44 pw.println("dumping service: " + ui.getClass().getName());
|