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

1 2

  /frameworks/native/include/binder/
BinderService.h 33 template<typename SERVICE>
39 return sm->addService(String16(SERVICE::getServiceName()), new SERVICE(), allowIsolated);
44 sm->addService(String16(SERVICE::getServiceName()), new SERVICE(), allowIsolated);
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
ReferencesHeader.java 28 public static final String SERVICE = "service";
  /libcore/luni/src/main/java/java/security/
AlgorithmParameterGenerator.java 29 // Store spi service name
30 private static final String SERVICE = "AlgorithmParameterGenerator";
33 private static final Engine ENGINE = new Engine(SERVICE);
KeyFactory.java 31 // The service name.
32 private static final String SERVICE = "KeyFactory";
35 private static final Engine ENGINE = new Engine(SERVICE);
51 * the concrete key factory service.
KeyPairGenerator.java 33 // Store KeyPairGenerator SERVICE name
34 private static final String SERVICE = "KeyPairGenerator";
37 private static final Engine ENGINE = new Engine(SERVICE);
SecureRandom.java 71 // The service name.
72 private static final String SERVICE = "SecureRandom";
75 private static final Engine ENGINE = new Engine(SERVICE);
91 Provider.Service service = Services.getSecureRandomService(); local
92 if (service == null) {
98 this.provider = service.getProvider();
99 this.secureRandomSpi = (SecureRandomSpi)service.newInstance(null);
100 this.algorithm = service.getAlgorithm();
Signature.java 38 // The service name.
39 private static final String SERVICE = "Signature";
42 private static Engine ENGINE = new Engine(SERVICE);
KeyStore.java 51 // Store KeyStore SERVICE name
52 private static final String SERVICE = "KeyStore";
55 private static final Engine ENGINE = new Engine(SERVICE);
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilder.java 33 // Store CertPathBuilder service name
34 private static final String SERVICE = "CertPathBuilder";
37 private static final Engine ENGINE = new Engine(SERVICE);
CertPathValidator.java 33 // Store CertPathValidator implementation service name
34 private static final String SERVICE = "CertPathValidator";
37 private static final Engine ENGINE = new Engine(SERVICE);
CertStore.java 35 // Store spi implementation service name
36 private static final String SERVICE = "CertStore";
39 private static final Engine ENGINE = new Engine(SERVICE);
CertificateFactory.java 40 // Store CertificateFactory service name
41 private static final String SERVICE = "CertificateFactory";
44 private static final Engine ENGINE = new Engine(SERVICE);
  /libcore/luni/src/main/java/javax/net/ssl/
KeyManagerFactory.java 34 // Store KeyManagerFactory service name
35 private static final String SERVICE = "KeyManagerFactory";
38 private static final Engine ENGINE = new Engine(SERVICE);
TrustManagerFactory.java 34 // Store TrustManager service name
35 private static final String SERVICE = "TrustManagerFactory";
38 private static final Engine ENGINE = new Engine(SERVICE);
SSLContext.java 34 // StoreSSLContext service name
35 private static final String SERVICE = "SSLContext";
38 private static final Engine ENGINE = new Engine(SERVICE);
  /external/jmdns/src/javax/jmdns/impl/
NameRegister.java 22 * This name represents a service name
24 SERVICE,
  /tools/motodev/src/plugins/preflighting.checkers/src/com/motorolamobility/preflighting/checkers/buildingblocksdeclaration/
BuildingBlocksInheritanceCondition.java 54 ACTIVITY, SERVICE, CONTENT_PROVIDER, BROADCAST_RECEIVER
65 private static final String SERVICE_NODE_NAME = "service"; //$NON-NLS-1$
77 private static final String SERVICE_CLASS_NAME = "android.app.Service"; //$NON-NLS-1$
116 "android.app.Service", "android.inputmethodservice.AbstractInputMethodService",
119 "android.service.wallpaper.WallpaperService",
162 getMissDeclaredBuildingBlocks(manifestDoc, folders, BuildingBlockType.SERVICE);
174 addValidationResults(results, missDelcaredServices, BuildingBlockType.SERVICE,
223 case SERVICE:
291 case SERVICE:
  /frameworks/base/services/java/com/android/server/
DeviceStorageMonitorService.java 50 * This class implements a service to monitor the amount of disk
124 public static final String SERVICE = "devicestoragemonitor";
341 * Constructor to run service. initializes the disk space threshold value
453 * Callable from other things in the system service to obtain the low memory
488 pw.println("Permission Denial: can't dump " + SERVICE + " from from pid="
SystemServer.java 42 import android.service.dreams.DreamService;
261 Slog.i(TAG, "User Service");
284 Slog.i(TAG, "Lights Service");
287 Slog.i(TAG, "Battery Service");
291 Slog.i(TAG, "Vibrator Service");
295 // only initialize the power service after we have started the
296 // lights service, content providers and the battery service.
331 Slog.i(TAG, "No Bluetooh Service (emulator)");
333 Slog.i(TAG, "No Bluetooth Service (factory test)")
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
Cipher.java 102 * The service name.
104 private static final String SERVICE = "Cipher";
109 private static final Engine ENGINE = new Engine(SERVICE);
    [all...]
  /external/qemu/hw/
bt-sdp.c 2 * Service Discover Protocol server for QEMU L2CAP devices
435 * for matching Service Records. In practice this shouldn't happen
750 struct sdp_def_service_s **service)
753 while (service[sdp->services])
759 while (*service) {
761 *service, sdp->services);
762 service ++;
768 #define SERVICE(name, attrs) \
819 SERVICE(hid,
895 SERVICE(sdp
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.event_1.2.0.v20100503.jar 
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /external/protobuf/src/google/protobuf/
descriptor.cc 222 NULL_SYMBOL, MESSAGE, FIELD, ENUM, ENUM_VALUE, SERVICE, METHOD, PACKAGE
242 || type == ENUM || type == SERVICE;
255 CONSTRUCTOR(ServiceDescriptor , SERVICE , service_descriptor )
267 case SERVICE : return service_descriptor ->file();
268 case METHOD : return method_descriptor ->service()->file();
    [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java 413 // Service Connection to remote media container service to copy
447 public void onServiceConnected(ComponentName name, IBinder service) {
450 IMediaContainerService.Stub.asInterface(service);
483 Intent service = new Intent().setComponent(DEFAULT_CONTAINER_COMPONENT); local
485 if (mContext.bindService(service, mDefContainerConn,
527 // have to bind to the service again.
529 Slog.e(TAG, "Failed to bind to media container service");
533 // Once we bind to the service, the first
539 // Already bound to the service. Just mak
5265 final PackageParser.Service service = info.service; local
    [all...]

Completed in 6356 milliseconds

1 2