HomeSort by relevance Sort by last modified time
    Searched defs:service (Results 176 - 200 of 1487) sorted by null

1 2 3 4 5 6 78 91011>>

  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
ListenerService.java 17 package com.example.android.xyztouristattractions.service;
29 * A Wear listener service, used to receive inbound messages from
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/service/
ListenerService.java 17 package com.example.android.xyztouristattractions.service;
29 * A Wear listener service, used to receive inbound messages from
  /development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/service/
MessagingService.java 17 package com.example.android.smssample.service;
25 * This service is triggered internally only and is used to process incoming SMS and MMS messages
27 * preferable to handle these in a service in case there is significant work to do which may exceed
33 // These actions are for this app only and are used by MessagingReceiver to start this service
  /external/curl/lib/
http_negotiate.c 44 /* Point to the username, password, service and host */
47 const char *service; local
56 service = data->set.str[STRING_PROXY_SERVICE_NAME] ?
64 service = data->set.str[STRING_SERVICE_NAME] ?
93 result = Curl_auth_decode_spnego_message(data, userp, passwdp, service,
  /external/deqp/framework/platform/android/
tcuAndroidJNI.cpp 57 static void setExecService (JNIEnv* env, jobject obj, tcu::Android::ExecService* service)
60 env->SetLongField(obj, field, (jlong)(deIntptr)service);
72 tcu::Android::ExecService* service = DE_NULL; local
82 service = new tcu::Android::ExecService(vm, obj, port);
83 service->start();
85 setExecService(env, obj, service);
90 delete service;
99 tcu::Android::ExecService* service = getExecService(env, obj); local
100 TCU_CHECK_INTERNAL(service);
102 service->stop()
    [all...]
  /external/flatbuffers/grpc/samples/greeter/
server.cpp 10 class GreeterServiceImpl final : public Greeter::Service {
66 GreeterServiceImpl service; local
70 builder.RegisterService(&service);
  /external/guice/extensions/service/src/com/google/inject/service/
CompositeService.java 16 package com.google.inject.service;
34 * A service that composes other services together in a fixed order.
41 private final Set<Key<? extends Service>> services = Sets.newLinkedHashSet();
44 * Represents the state of this composite service. Will equal FAILED
45 * even if only one component service fails to start or stop. In other
47 * service to be considered started and similarly for stopped.
49 private volatile Service.State compositeState;
57 public CompositeService add(Class<? extends Service> service) {
58 return add(Key.get(service));
    [all...]
Service.java 17 package com.google.inject.service;
29 public interface Service {
31 * If the service has already been started, this method returns
32 * immediately without taking action. A stopped service may not be restarted.
36 * service has finished starting, and returns the resultant state. If
37 * the service fails to start, {@link Future#get} will throw an {@link
44 * If the service is {@link State#STARTED} initiates service shutdown and
45 * returns immediately. If the service has already been stopped, this
50 * service has finished shutting down, and either returns {@lin
    [all...]
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Count.java 25 final Service service; field in class:Count
29 public Count(Counter counter, Service service) {
31 this.service = service;
43 return service.getStatus();
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CurrencyServiceShim.java 24 * is to allow ICU4J to be built without service registration support.
29 if (service.isDefault()) {
32 return service.getAvailableLocales();
36 if (service.isDefault()) {
39 return service.getAvailableULocales();
43 // TODO: convert to ULocale when service switches over
45 if (service.isDefault()) {
48 Currency curr = (Currency)service.get(loc);
53 return service.registerObject(currency, locale);
57 return service.unregisterFactory((Factory)registryKey)
74 static final ICULocaleService service = new CFService(); field in class:CurrencyServiceShim
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
ResourceBasedPeriodFormatterDataServiceTest.java 32 ResourceBasedPeriodFormatterDataService service = local
34 Collection locales = service.getAvailableLocales();
37 PeriodFormatterData pfd = service.get(locale);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
ResourceBasedPeriodFormatterDataServiceTest.java 29 ResourceBasedPeriodFormatterDataService service = local
31 Collection locales = service.getAvailableLocales();
34 PeriodFormatterData pfd = service.get(locale);
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
LauncherUtils.java 29 package com.android.service.ims.presence;
44 * Launch the Presence service.
50 logger.debug("Launch polling service");
57 * Stop the Presence service.
62 logger.debug("Stop polling service");
69 logger.debug("Launch Eab Service");
76 logger.debug("Stop EAB service");
  /external/ims/rcs/rcsservice/src/com/android/service/ims/
RcsServiceApp.java 29 package com.android.service.ims;
Task.java 29 package com.android.service.ims;
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
PresenceAvailabilityTask.java 29 package com.android.service.ims.presence;
50 import com.android.service.ims.TaskManager;
PresencePublishTask.java 29 package com.android.service.ims.presence;
50 import com.android.service.ims.TaskManager;
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
MethodDescriptor.cs 36 /// Describes a single method in a service.
41 private readonly ServiceDescriptor service; field in class:Google.Protobuf.Reflection.MethodDescriptor
46 /// The service this method belongs to.
48 public ServiceDescriptor Service { get { return service; } }
75 service = parent;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TestService.java 3 import android.app.Service;
9 class TestService extends Service implements ServiceConnection {
11 IBinder service; field in class:TestService
20 public void onServiceConnected(ComponentName name, IBinder service) {
22 this.service = service;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAccessibilityServiceTest.java 16 private MyService service ; field in class:ShadowAccessibilityServiceTest
21 service = Robolectric.setupService(MyService.class);
22 shadow = shadowOf(service);
30 service.performGlobalAction(AccessibilityService.GLOBAL_ACTION_BACK);
  /external/selinux/libselinux/utils/
getdefaultcon.c 14 fprintf(stderr, "usage: %s [-l level] [-s service] user [fromcon]\n", name);
24 char *service = NULL; local
37 service = strdup(optarg);
68 if ((ret = getseuser(user, service, &seuser, &dlevel)) == 0) {
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
FacadeService.java 17 package com.googlecode.android_scripting.service;
19 import android.app.Service;
30 * FacadeService exposes SL4A's Facade methods through a {@link Service} so
37 * intent.setAction("com.googlecode.android_scripting.service.FacadeService.ACTION_BIND");
40 * Example using the service:<br>
51 * For more info on binding a {@link Service} using a {@link Messenger} please
54 public class FacadeService extends Service {
  /external/tensorflow/tensorflow/compiler/xla/client/
client_library.h 16 // The "client library" instantiates a local (in-process) XLA service for
18 // client. ClientLibrary::GetOrCreateLocalClient will spawn a local service,
31 #include "tensorflow/compiler/xla/service/compile_only_service.h"
32 #include "tensorflow/compiler/xla/service/device_memory_allocator.h"
33 #include "tensorflow/compiler/xla/service/local_service.h"
50 // Set the platform backing the service, or nullptr for the default platform.
74 // platform : The platform the underlying XLA service should target. If
85 // Returns the service from the service thread. Only used in unit tests to
91 // platform : The platform the underlying XLA service should target. I
110 std::unique_ptr<LocalService> service; member in struct:xla::ClientLibrary::LocalInstance
117 std::unique_ptr<CompileOnlyService> service; member in struct:xla::ClientLibrary::CompileOnlyInstance
    [all...]
  /external/wpa_supplicant_8/src/common/
ctrl_iface_common.c 86 char service[NI_MAXSERV] = { 0 }; local
90 service, sizeof(service),
93 wpa_printf(level, "%s %s:%s", msg, host, service);
  /frameworks/av/media/ndk/
NdkMediaCrypto.cpp 43 sp<IMediaDrmService> service = interface_cast<IMediaDrmService>(binder); local
44 if (service == NULL) {
48 sp<ICrypto> crypto = service->makeCrypto();

Completed in 798 milliseconds

1 2 3 4 5 6 78 91011>>