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

1 2

  /external/jmdns/src/javax/jmdns/impl/
NameRegister.java 22 * This name represents a service name
24 SERVICE,
  /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);
192 Provider.Service service = provider.getService(SERVICE, algorithm); local
193 if (service == null) {
196 return tryAlgorithmWithProvider(key, service);
198 ArrayList<Provider.Service> services = ENGINE.getServices(algorithm);
202 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);
  /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);
194 Provider.Service service = provider.getService(SERVICE, algorithm); local
195 if (service == null) {
198 return tryAlgorithmWithProvider(key, service);
200 ArrayList<Provider.Service> services = ENGINE.getServices(algorithm);
204 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);
198 Provider.Service service = provider.getService(SERVICE, algorithm); local
199 if (service == null) {
202 return tryAlgorithmWithProvider(key, service);
204 ArrayList<Provider.Service> services = ENGINE.getServices(algorithm);
208 for (Provider.Service service : services)
    [all...]
Cipher.java 29 import java.security.Provider.Service;
111 * The service name.
113 private static final String SERVICE = "Cipher";
118 private static final Engine ENGINE = new Engine(SERVICE);
418 Provider.Service service = provider.getService(SERVICE, transform); local
419 if (service == null) {
422 return tryTransformWithProvider(key, transformParts, type, service);
424 ArrayList<Provider.Service> services = ENGINE.getServices(transform)
    [all...]
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 309 SERVICE("service"),
  /developers/samples/android/ui/notifications/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"),
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorService.java 58 * This class implements a service to monitor the amount of disk
135 static final String SERVICE = "devicestoragemonitor";
372 publishBinderService(SERVICE, mRemoteService);
400 pw.println("Permission Denial: can't dump " + SERVICE + " from from pid="
  /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...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc 237 NULL_SYMBOL, MESSAGE, FIELD, ENUM, ENUM_VALUE, SERVICE, METHOD,
258 || type == ENUM || type == SERVICE;
271 CONSTRUCTOR(ServiceDescriptor , SERVICE , service_descriptor )
283 case SERVICE : return service_descriptor ->file();
284 case METHOD : return method_descriptor ->service()->file();
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.event_1.2.0.v20100503.jar 

Completed in 520 milliseconds

1 2