HomeSort by relevance Sort by last modified time
    Searched defs:instance (Results 201 - 225 of 1545) sorted by null

1 2 3 4 5 6 7 891011>>

  /hardware/interfaces/radio/1.0/vts/functional/
sap_hidl_hal_utils.h 87 static SapHidlEnvironment* Instance() {
88 static SapHidlEnvironment* instance = new SapHidlEnvironment; local
89 return instance;
  /hardware/interfaces/radio/1.2/vts/functional/
radio_hidl_hal_utils_v1_2.h 597 static RadioHidlEnvironment* Instance() {
598 static RadioHidlEnvironment* instance = new RadioHidlEnvironment; local
599 return instance;
  /hardware/interfaces/radio/config/1.0/vts/functional/
radio_config_hidl_hal_utils.h 83 static RadioConfigHidlEnvironment* Instance() {
84 static RadioConfigHidlEnvironment* instance = new RadioConfigHidlEnvironment; local
85 return instance;
  /hardware/interfaces/thermal/1.1/vts/functional/
VtsHalThermalV1_1TargetTest.cpp 70 static ThermalHidlEnvironment* Instance() {
71 static ThermalHidlEnvironment* instance = new ThermalHidlEnvironment; local
72 return instance;
85 ThermalHidlEnvironment::Instance()->getServiceName<IThermal>());
118 ::testing::AddGlobalTestEnvironment(ThermalHidlEnvironment::Instance());
120 ThermalHidlEnvironment::Instance()->init(&argc, argv);
  /libcore/ojluni/src/main/java/java/security/cert/
CertificateFactory.java 40 import sun.security.jca.GetInstance.Instance;
55 * instance of {@code java.security.cert.X509Certificate}, and CRLs
56 * that are an instance of {@code java.security.cert.X509CRL}.
206 Instance instance = GetInstance.getInstance("CertificateFactory", local
208 return new CertificateFactory((CertificateFactorySpi)instance.impl,
209 instance.provider, type);
255 Instance instance = GetInstance.getInstance("CertificateFactory", local
257 return new CertificateFactory((CertificateFactorySpi)instance.impl
298 Instance instance = GetInstance.getInstance("CertificateFactory", local
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
ExemptionMechanism.java 38 import sun.security.jca.GetInstance.Instance;
136 Instance instance = JceSecurity.getInstance("ExemptionMechanism", local
138 return new ExemptionMechanism((ExemptionMechanismSpi)instance.impl,
139 instance.provider, algorithm);
184 Instance instance = JceSecurity.getInstance("ExemptionMechanism", local
186 return new ExemptionMechanism((ExemptionMechanismSpi)instance.impl,
187 instance.provider, algorithm);
224 Instance instance = JceSecurity.getInstance("ExemptionMechanism" local
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
KeyManagerFactory.java 152 GetInstance.Instance instance = GetInstance.getInstance local
155 return new KeyManagerFactory((KeyManagerFactorySpi)instance.impl,
156 instance.provider, algorithm);
196 GetInstance.Instance instance = GetInstance.getInstance local
199 return new KeyManagerFactory((KeyManagerFactorySpi)instance.impl,
200 instance.provider, algorithm);
218 * @param provider an instance of the provider.
233 GetInstance.Instance instance = GetInstance.getInstanc local
    [all...]
  /libcore/ojluni/src/main/java/sun/security/jca/
GetInstance.java 47 * Static inner class representing a newly created instance.
49 public static final class Instance {
53 private Instance(Provider provider, Object impl) {
152 public static Instance getInstance(String type, Class<?> clazz,
184 public static Instance getInstance(String type, Class<?> clazz,
203 public static Instance getInstance(String type, Class<?> clazz,
209 public static Instance getInstance(String type, Class<?> clazz,
215 public static Instance getInstance(String type, Class<?> clazz,
221 public static Instance getInstance(String type, Class<?> clazz,
234 public static Instance getInstance(Service s, Class<?> clazz
236 Object instance = s.newInstance(null); local
243 Object instance = s.newInstance(param); local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/device/
ActiveCameraDeviceTracker.java 35 * Singleton instance.
38 public static final ActiveCameraDeviceTracker INSTANCE = new ActiveCameraDeviceTracker();
41 public static ActiveCameraDeviceTracker instance() { method in class:ActiveCameraDeviceTracker
42 return Singleton.INSTANCE;
  /packages/apps/Dialer/java/com/android/dialer/constants/
Constants.java 32 private static Constants instance; field in class:Constants
41 instance = (Constants) clazz.getConstructor().newInstance();
44 "Unable to create an instance of ConstantsImpl. To fix this error include one of the "
48 return instance;
  /packages/apps/Dialer/java/com/android/incallui/audiomode/
AudioModeProvider.java 35 private static final AudioModeProvider instance = new AudioModeProvider(); field in class:AudioModeProvider
41 return instance;
  /packages/apps/Dialer/java/com/android/incallui/call/
InCallVideoCallCallbackNotifier.java 29 /** Singleton instance of this class. */
30 private static InCallVideoCallCallbackNotifier instance = new InCallVideoCallCallbackNotifier(); field in class:InCallVideoCallCallbackNotifier
39 /** Private constructor. Instance should only be acquired through getRunningInstance(). */
44 return instance;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
PopupManager.java 54 PopupManager instance = sMap.get(context); local
55 if (instance == null) {
56 instance = new PopupManager();
57 sMap.put(context, instance);
59 return instance;
63 PopupManager instance = sMap.get(context); local
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
ScanDirConfigTest.java 87 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
95 instance.load();
97 assertEquals(bean,instance.getConfiguration());
101 assertNotSame(bean,instance.getConfiguration());
103 instance.load();
105 assertEquals(bean,instance.getConfiguration());
120 final ScanDirConfigMXBean instance = local
130 instance.setConfiguration(bean);
131 instance.save();
134 assertEquals(instance.getConfiguration(),loaded)
177 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
209 final ScanDirConfigMXBean instance = local
282 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
299 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
    [all...]
ScanManagerTest.java 229 ScanManager instance = new ScanManager(); local
234 result = instance.preRegister(server, name);
238 result = instance.preRegister(server, null);
241 result = instance.preRegister(server, ScanManager.SCAN_MANAGER_NAME);
252 ScanManager instance = new ScanManager(); local
255 ScanState result = instance.getState();
257 instance.start();
258 final ScanState afterStart = instance.getState();
260 instance.stop();
261 assertEquals(STOPPED,instance.getState())
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
ScanDirConfigTest.java 87 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
95 instance.load();
97 assertEquals(bean,instance.getConfiguration());
101 assertNotSame(bean,instance.getConfiguration());
103 instance.load();
105 assertEquals(bean,instance.getConfiguration());
120 final ScanDirConfigMXBean instance = local
130 instance.setConfiguration(bean);
131 instance.save();
134 assertEquals(instance.getConfiguration(),loaded)
177 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
209 final ScanDirConfigMXBean instance = local
282 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
299 final ScanDirConfig instance = new ScanDirConfig(file.getAbsolutePath()); local
    [all...]
ScanManagerTest.java 229 ScanManager instance = new ScanManager(); local
234 result = instance.preRegister(server, name);
238 result = instance.preRegister(server, null);
241 result = instance.preRegister(server, ScanManager.SCAN_MANAGER_NAME);
252 ScanManager instance = new ScanManager(); local
255 ScanState result = instance.getState();
257 instance.start();
258 final ScanState afterStart = instance.getState();
260 instance.stop();
261 assertEquals(STOPPED,instance.getState())
    [all...]
  /system/core/init/
action_manager.cpp 27 static ActionManager instance; local
28 return instance;
  /system/core/libcutils/
qtaguid.cpp 90 static netdHandler instance = initHandler(); local
91 return instance;
  /system/libvintf/
ManifestInstance.cpp 57 const std::string& ManifestInstance::instance() const { function in class:android::vintf::ManifestInstance
91 bool success = e.setTo(version().majorVer, version().minorVer, interface(), instance());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
BuildFileCreator.java 106 * @param shell parent instance for dialogs
211 BuildFileCreator instance = new BuildFileCreator(currentModule, shell); local
215 instance.appendBuildScript();
217 instance.appendHeader(projectState.isLibrary());
218 instance.appendDependencies();
219 instance.startAndroidTask(projectState);
220 //instance.appendDefaultConfig();
221 instance.createAndroidSourceSets();
222 instance.finishAndroidTask();
225 instance.appendJavaHeader()
    [all...]
  /bionic/libc/kernel/uapi/linux/
qrtr.h 48 __le32 instance; member in struct:qrtr_ctrl_pkt::__anon1044::__anon1045
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
SoundGenerator.java 8 private static SoundGenerator instance; field in class:SoundGenerator
49 if (instance == null) {
50 instance = new SoundGenerator();
52 return instance;
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/
Path.c 136 /** Process a wide character string representing a Mapping Path and extract the instance number.
138 The instance number is the sequence of decimal digits immediately to the left
143 If either of these are not true, an instance value of 0 is returned.
145 If Path is NULL, an instance value of 0 is returned.
160 int instance = 0; local
169 instance = (int)wcstol(temp+1, NULL, 10);
171 return instance;
249 /** Parse a path producing the target device, device instance, and file path.
286 int Instance = 0;
303 Instance = PathInstance(WPath, MapLen);
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
BenchmarkCreator.java 69 Object instance; local
71 instance = benchmarkClassCtor.newInstance();
87 field.set(instance, parser.parse(parameters.get(field.getName())));
100 return instance;

Completed in 1735 milliseconds

1 2 3 4 5 6 7 891011>>