/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
FacadeManagerFactory.java | 19 import android.app.Service; 33 private final Service mService; 38 public FacadeManagerFactory(int sdkLevel, Service service, Intent intent, 41 mService = service;
|
FacadeManager.java | 19 import android.app.Service; 35 private final Service mService; 39 public FacadeManager(int sdkLevel, Service service, Intent intent, 43 mService = service; 51 public Service getService() {
|
/external/libmojo/mojo/public/cpp/bindings/tests/ |
binding_unittest.cc | 37 class ServiceImpl : public sample::Service { 47 // sample::Service implementation 88 Binding<sample::Service> binding(&impl, std::move(request)); 108 Binding<sample::Service> binding(&impl, std::move(request)); 109 ptr->Frobinate(nullptr, sample::Service::BazOptions::REGULAR, nullptr, 123 ptr->Frobinate(nullptr, sample::Service::BazOptions::REGULAR, nullptr, 137 Binding<sample::Service> binding(&impl, GetProxy(&ptr)); 156 Binding<sample::Service> binding(&impl, GetProxy(&ptr)); 174 InterfaceRequest<sample::Service> request) 190 Binding<sample::Service> binding_ [all...] |
/external/ppp/pppd/plugins/radius/etc/ |
dictionary | 51 ATTRIBUTE Service-Type 6 integer 60 ATTRIBUTE Login-Service 15 integer 135 VALUE Service-Type Login-User 1 136 VALUE Service-Type Framed-User 2 137 VALUE Service-Type Callback-Login-User 3 138 VALUE Service-Type Callback-Framed-User 4 139 VALUE Service-Type Outbound-User 5 140 VALUE Service-Type Administrative-User 6 141 VALUE Service-Type NAS-Prompt-User 7 162 VALUE Login-Service Telnet [all...] |
/external/flatbuffers/tests/ |
monster_test.grpc.fb.h | 73 class Service : public ::grpc::Service { 75 Service(); 76 virtual ~Service(); 83 void BaseClassMustBeDerivedFromService(const Service *service) {} 86 ::grpc::Service::MarkMethodAsync(0); 97 ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag); 103 void BaseClassMustBeDerivedFromService(const Service *service) {} [all...] |
/system/core/init/ |
service.h | 45 #define SVC_RESTART 0x100 // Use to safely restart (stop, wait, start) a service. 47 #define SVC_EXEC 0x400 // This service was started by either 'exec' or 'exec_start' and stops 50 #define SVC_SHUTDOWN_CRITICAL 0x800 // This service is critical for shutdown and 52 #define SVC_TEMPORARY 0x1000 // This service was started by 'exec' and should be removed from the 53 // service list once it is reaped. 67 class Service { 69 Service(const std::string& name, const std::vector<std::string>& args); 71 Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid, 114 using OptionParser = bool (Service::*) (const std::vector<std::string>& args, 177 // keycodes for triggering this service via /dev/keychor [all...] |
/frameworks/native/libs/vr/libpdx/ |
service.cpp | 1 #include "pdx/service.h" 23 : service_{Service::GetFromMessageInfo(info)}, 56 "ERROR: Service \"%s\" failed to reply to message: op=%d pid=%d " 389 Service* service, int flags, const std::shared_ptr<Channel>& channel, 392 return service->PushChannel(this, flags, channel, channel_id); 405 Status<int> Message::CheckChannel(const Service* service, ChannelReference ref, 408 return service->CheckChannel(this, ref, channel); 443 std::shared_ptr<Service> Message::GetService() const { return service_.lock(); [all...] |
service_dispatcher.cpp | 8 #include <pdx/service.h> 39 // the other entries that point to instances of Service. 71 int ServiceDispatcher::AddService(const std::shared_ptr<Service>& service) { 76 event.data.ptr = service.get(); 78 if (epoll_ctl(epoll_fd_.Get(), EPOLL_CTL_ADD, service->endpoint()->epoll_fd(), 80 ALOGE("Failed to add service to dispatcher because: %s\n", strerror(errno)); 84 services_.push_back(service); 88 int ServiceDispatcher::RemoveService(const std::shared_ptr<Service>& service) { 162 Service* service = static_cast<Service*>(events[i].data.ptr); local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
stm.h | 27 typedef WINBOOL (WINAPI *PIS_SERVICE)(USHORT Type,PUCHAR Name,PIPX_SERVICE Service); 38 typedef DWORD (WINAPI *PENUMERATE_GET_NEXT_SERVICE)(HANDLE EnumerationHandle,PIPX_SERVICE Service); 45 typedef DWORD (WINAPI *PGET_FIRST_ORDERED_SERVICE)(DWORD OrderingMethod,DWORD ExclusionFlags,PIPX_SERVICE Service); 46 typedef DWORD (WINAPI *PGET_NEXT_ORDERED_SERVICE)(DWORD OrderingMethod,DWORD ExclusionFlags,PIPX_SERVICE Service); 49 typedef WINBOOL (WINAPI *PGET_SERVICE_FROM_ID)(ULONG ServiceID,PIPX_SERVICE Service);
|
/packages/apps/Settings/src/com/android/settings/applications/ |
ProcStatsEntry.java | 57 ArrayMap<String, ArrayList<Service>> mServices = new ArrayMap<>(1); 111 ArrayList<Service> value = new ArrayList<Service>(); 112 in.readTypedList(value, Service.CREATOR); 178 // way: the one that has the longest running service, accounts for at least 222 ArrayList<Service> subProcServices = null; 224 ArrayList<Service> subServices = mServices.valueAt(isp); 233 Service service = subProcServices.get(iss); local 234 if (service.mDuration > thisRunTime) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
ProviderTest.java | 35 import java.security.Provider.Service; 302 Provider.Service s = (Provider.Service)it.next(); 318 fail("Incorrect service"); 335 Provider.Service s = p.getService("MessageDigest", "SHA-1"); 376 public void putService(Provider.Service s) { 382 public void removeService(Provider.Service s) { 403 Provider.Service s = p2.getService("MessageDigest", "ASH-1"); 418 Set<Provider.Service> services = myProvider.getServices(); 421 Provider.Service s[] = new Provider.Service[3] [all...] |
/frameworks/native/libs/vr/libpdx/private/pdx/ |
service.h | 26 class Service; 33 * In contrast, service opcodes start at zero and go up. This scheme leaves 45 // Request the service to reload system properties. 47 // Request the service to dump state and return it in a text buffer. 54 * Base class of service-side per-channel context classes. 75 * 1. The service calls one of the reply methods before the Message is 81 * sender until a later time. In this situation the service can move the 193 * Service::PushChannel() for a detail description of this method's operation. 200 * Service::PushChannel() for a detail description of this method's operation. 203 Service* service, int flags, const std::shared_ptr<Channel>& channel [all...] |
/libcore/tools/docs/crypto/src/java/libcore/java/security/ |
ListProviders.java | 91 Set<Provider.Service> services = new TreeSet<Provider.Service>( 92 new Comparator<Provider.Service>() { 93 public int compare(Provider.Service a, Provider.Service b) { 102 for (Provider.Service s : services) {
|
/cts/tests/tests/shortcutmanager/throttling/src/android/content/pm/cts/shortcutmanager/throttling/ |
FgService.java | 21 import android.app.Service; 31 * Make sure that when a fg service is running, shortcut manager calls are not throttled. 33 public class FgService extends Service { 71 return Service.START_NOT_STICKY;
|
/cts/tests/app/app/src/android/app/stubs/ |
LocalForegroundService.java | 22 import android.app.Service; 50 Log.d(TAG, "service created: " + this + " in " + android.os.Process.myPid()); 63 Log.d(TAG, "service start cmd " + command + ", intent " + intent); 86 stopForeground(Service.STOP_FOREGROUND_REMOVE | Service.STOP_FOREGROUND_DETACH); 89 Log.d(TAG, "Detaching foreground service notification"); 90 stopForeground(Service.STOP_FOREGROUND_DETACH); 106 Log.d(TAG, "service destroyed: " + this + " in " + android.os.Process.myPid());
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AbstractExecutionThreadService.java | 32 * service; consider {@link AbstractService} if you would like to manage any 39 public abstract class AbstractExecutionThreadService implements Service { 44 private final Service delegate = new AbstractService() { 66 "Error while attempting to shut down the service" 94 * Start the service. This method is invoked on the execution thread. 101 * Run the service. This method is invoked on the execution thread. 117 * Stop the service. This method is invoked on the execution thread. 125 * Invoked to request the service to stop. 132 * Returns the {@link Executor} that will be used to run this service. 136 * execute()} method is called when this service is started, and should retur [all...] |
AbstractIdleService.java | 38 public abstract class AbstractIdleService implements Service { 48 private final Service delegate = new AbstractService() { 83 /** Start the service. */ 86 /** Stop the service. */ 90 * Returns the {@link Executor} that will be used to run this service. 94 * execute()} method is called when this service is started and stopped, 134 @Override public final Service startAsync() { 142 @Override public final Service stopAsync() { 176 * Returns the name of this service. {@link AbstractIdleService} may include the name in debugging
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/ |
DozeServiceFake.java | 23 * Fake implementation of {@link DozeMachine.Service} for tests. 27 public class DozeServiceFake implements DozeMachine.Service {
|
/cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/ |
EphemeralService.java | 19 import android.app.Service; 36 public class EphemeralService extends Service {
|
/cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/NormalApp/src/com/android/cts/normalapp/ |
ExposedService.java | 19 import android.app.Service; 28 public class ExposedService extends Service {
|
/cts/hostsidetests/incident/apps/storagedapp/src/com/android/server/cts/storaged/ |
SimpleIOService.java | 19 import android.app.Service; 32 public class SimpleIOService extends Service { 53 // Stop the service using the startId, so that we don't stop 54 // the service in the middle of handling another job 62 // Start up the thread running the service. Note that we create a 63 // separate thread because the service normally runs in the process's
|
/cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/ |
MyForegroundService.java | 25 import android.app.Service; 36 * Service used to change app state to FOREGROUND_SERVICE. 38 public class MyForegroundService extends Service {
|
RemoteSocketFactoryService.java | 19 import android.app.Service; 32 public class RemoteSocketFactoryService extends Service {
|
/cts/tests/tests/content/src/android/content/cts/ |
MockContextWrapperService.java | 19 import android.app.Service; 32 public class MockContextWrapperService extends Service {
|
/cts/tests/tests/externalservice/service/src/android/externalservice/service/ |
BaseService.java | 17 package android.externalservice.service; 19 import android.app.Service; 32 public class BaseService extends Service { 33 private static final String TAG = "ExternalServiceTest.Service";
|