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

1 2 3 4

  /frameworks/native/include/binder/
BinderService.h 33 template<typename SERVICE>
40 String16(SERVICE::getServiceName()),
41 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 69 // The service name.
70 private static final String SERVICE = "SecureRandom";
73 private static final Engine ENGINE = new Engine(SERVICE);
89 Provider.Service service = Services.getSecureRandomService(); local
90 if (service == null) {
96 this.provider = service.getProvider();
97 this.secureRandomSpi = (SecureRandomSpi)service.newInstance(null);
98 this.algorithm = service.getAlgorithm();
Signature.java 39 // The service name.
40 private static final String SERVICE = "Signature";
43 private static final Engine ENGINE = new Engine(SERVICE);
202 Provider.Service service = provider.getService(SERVICE, algorithm); local
203 if (service == null) {
206 return tryAlgorithmWithProvider(null, service);
208 ArrayList<Provider.Service> services = ENGINE.getServices(algorithm);
213 for (Provider.Service service : services)
    [all...]
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/
TrustManagerFactory.java 34 // Store TrustManager service name
35 private static final String SERVICE = "TrustManagerFactory";
38 private static final Engine ENGINE = new Engine(SERVICE);
KeyManagerFactory.java 34 // Store KeyManagerFactory service name
35 private static final String SERVICE = "KeyManagerFactory";
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,
  /libcore/luni/src/main/java/javax/crypto/
KeyAgreement.java 40 // The service name.
41 private static final String SERVICE = "KeyAgreement";
44 private static final Engine ENGINE = new Engine(SERVICE);
205 Provider.Service service = provider.getService(SERVICE, algorithm); local
206 if (service == null) {
209 return tryAlgorithmWithProvider(service);
211 ArrayList<Provider.Service> services = ENGINE.getServices(algorithm);
216 for (Provider.Service service : services)
    [all...]
Mac.java 40 // The service name.
41 private static final String SERVICE = "Mac";
44 private static final Engine ENGINE = new Engine(SERVICE);
208 Provider.Service service = provider.getService(SERVICE, algorithm); local
209 if (service == null) {
212 return tryAlgorithmWithProvider(service);
214 ArrayList<Provider.Service> services = ENGINE.getServices(algorithm);
219 for (Provider.Service service : services)
    [all...]
Cipher.java 29 import java.security.Provider.Service;
155 * The service name.
157 private static final String SERVICE = "Cipher";
162 private static final Engine ENGINE = new Engine(SERVICE);
517 Provider.Service service = provider.getService(SERVICE, transform.name); local
518 if (service == null) {
522 service);
524 ArrayList<Provider.Service> services = ENGINE.getServices(transform.name)
    [all...]
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 57 * This class implements a service to monitor the amount of disk
136 static final String SERVICE = "devicestoragemonitor";
373 publishBinderService(SERVICE, mRemoteService);
401 pw.println("Permission Denial: can't dump " + SERVICE + " from from pid="
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.event_1.2.0.v20100503.jar 
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 309 SERVICE("service"),
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 309 SERVICE("service"),
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
OtherMetadataFragment.java 309 SERVICE("service"),
  /external/protobuf/src/google/protobuf/
descriptor.cc 246 NULL_SYMBOL, MESSAGE, FIELD, ONEOF, ENUM, ENUM_VALUE, SERVICE, METHOD,
268 || type == ENUM || type == SERVICE;
282 CONSTRUCTOR(ServiceDescriptor , SERVICE , service_descriptor )
295 case SERVICE : return service_descriptor ->file();
296 case METHOD : return method_descriptor ->service()->file();
    [all...]

Completed in 1847 milliseconds

1 2 3 4