HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 551 - 575 of 2454) sorted by null

<<21222324252627282930>>

  /libcore/ojluni/src/main/java/java/security/
KeyFactory.java 36 import sun.security.jca.GetInstance.Instance;
234 Instance instance = GetInstance.getInstance("KeyFactory", local
236 return new KeyFactory((KeyFactorySpi)instance.impl,
237 instance.provider, algorithm);
271 Instance instance = GetInstance.getInstance("KeyFactory", local
273 return new KeyFactory((KeyFactorySpi)instance.impl,
274 instance.provider, algorithm);
418 * key material should be returned in an instance of th
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
KeyAgreement.java 39 import sun.security.jca.GetInstance.Instance;
234 Instance instance = JceSecurity.getInstance local
236 return new KeyAgreement((KeyAgreementSpi)instance.impl,
237 instance.provider, algorithm);
274 Instance instance = JceSecurity.getInstance local
276 return new KeyAgreement((KeyAgreementSpi)instance.impl,
277 instance.provider, algorithm);
329 ("Could not construct KeyAgreementSpi instance");
    [all...]
KeyGenerator.java 35 import sun.security.jca.GetInstance.Instance;
329 Instance instance = JceSecurity.getInstance("KeyGenerator", local
331 return new KeyGenerator((KeyGeneratorSpi)instance.impl,
332 instance.provider, algorithm);
367 Instance instance = JceSecurity.getInstance("KeyGenerator", local
369 return new KeyGenerator((KeyGeneratorSpi)instance.impl,
370 instance.provider, algorithm);
Mac.java 41 import sun.security.jca.GetInstance.Instance;
291 Instance instance = JceSecurity.getInstance local
293 return new Mac((MacSpi)instance.impl, instance.provider, algorithm);
326 Instance instance = JceSecurity.getInstance local
328 return new Mac((MacSpi)instance.impl, instance.provider, algorithm);
379 ("Could not construct MacSpi instance");
    [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...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 72 // create an instance of the class that will be modified
364 * instance methods via reflection.
418 public int callGet(Object instance, int a, long b) throws Exception {
419 Method m = instance.getClass().getMethod("get",
422 Object result = m.invoke(instance, a, b);
430 public int callGet_Original(Object instance, int a, long b) throws Exception {
431 Method m = instance.getClass().getMethod("get_Original",
434 Object result = m.invoke(instance, a, b);
442 public <T> T callMethod(Object instance, String methodName, boolean makePublic) throws Exception {
443 Method m = instance.getClass().getDeclaredMethod(methodName, (Class<?>[])null)
    [all...]
  /frameworks/multidex/library/src/android/support/multidex/
MultiDex.java 239 * @param instance an object to search the field into.
244 private static Field findField(Object instance, String name) throws NoSuchFieldException {
245 for (Class<?> clazz = instance.getClass(); clazz != null; clazz = clazz.getSuperclass()) {
260 throw new NoSuchFieldException("Field " + name + " not found in " + instance.getClass());
266 * @param instance an object to search the method into.
272 private static Method findMethod(Object instance, String name, Class<?>... parameterTypes)
274 for (Class<?> clazz = instance.getClass(); clazz != null; clazz = clazz.getSuperclass()) {
290 Arrays.asList(parameterTypes) + " not found in " + instance.getClass());
296 * @param instance the instance whose field is to be modified
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
remote_method.h 90 UnpackArguments(Class& instance, MethodType method, Message& message,
92 : instance_(instance),
180 void DispatchRemoteMethod(Class& instance,
204 UnpackArguments<Class, Signature>(instance, method, message, arguments)
215 void DispatchRemoteMethod(Class& instance,
241 UnpackArguments<Class, Signature>(instance, method, message, arguments)
252 void DispatchRemoteMethod(Class& instance,
281 instance, method, message, arguments)
294 void DispatchRemoteMethod(Class& instance, void (Class::*method)(Message&),
296 (instance.*method)(message)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringPrep.java 286 bdp=UBiDiProps.INSTANCE;
291 * Gets a StringPrep instance for the specified profile
293 * @param profile The profile passed to find the StringPrep instance.
300 StringPrep instance = null; local
302 // A StringPrep instance is immutable. We use a single instance
307 instance = ref.get();
310 if (instance == null) {
314 instance = new StringPrep(bytes);
319 if (instance != null)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringPrep.java 302 bdp=UBiDiProps.INSTANCE;
307 * Gets a StringPrep instance for the specified profile
309 * @param profile The profile passed to find the StringPrep instance.
317 StringPrep instance = null; local
319 // A StringPrep instance is immutable. We use a single instance
324 instance = ref.get();
327 if (instance == null) {
331 instance = new StringPrep(bytes);
336 if (instance != null)
    [all...]
  /external/libdrm/amdgpu/
amdgpu_gpu_info.c 67 unsigned count, uint32_t instance, uint32_t flags,
78 request.read_mmr_reg.instance = instance;
173 unsigned instance = (i << AMDGPU_INFO_MMR_SE_INDEX_SHIFT) | local
177 r = amdgpu_read_mm_registers(dev, 0x263d, 1, instance, 0,
185 r = amdgpu_read_mm_registers(dev, 0xa0d4, 1, instance, 0,
190 r = amdgpu_read_mm_registers(dev, 0xa0d5, 1, instance, 0,
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
NinePatchTexture.java 143 NinePatchInstance instance = mInstanceCache.get(key); local
145 if (instance == null) {
146 instance = new NinePatchInstance(this, w, h);
147 NinePatchInstance removed = mInstanceCache.put(key, instance);
153 return instance;
174 NinePatchInstance instance = mInstanceCache.valueAt(i); local
175 instance.recycle(canvas);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java 125 final AlarmInstance instance = AlarmInstance.getNextUpcomingInstanceByAlarmId( local
127 if (instance == null) {
130 LOGGER.i("No alarm instance to dismiss");
134 dismissAlarmInstance(instance, activity);
137 public static void dismissAlarmInstance(AlarmInstance instance, Activity activity) {
141 final Date alarmTime = instance.getAlarmTime().getTime();
144 if (instance.mAlarmState == FIRED_STATE || instance.mAlarmState == SNOOZE_STATE) {
146 AlarmStateManager.deleteInstanceAndUpdateParent(context, instance);
147 } else if (Utils.isAlarmWithin24Hours(instance)) {
190 final AlarmInstance instance = AlarmInstance.getNextUpcomingInstanceByAlarmId( local
    [all...]
  /external/v8/tools/clang/plugins/
ChromeClassTester.cpp 37 ChromeClassTester::ChromeClassTester(CompilerInstance& instance,
40 instance_(instance),
41 diagnostic_(instance.getDiagnostics()) {
88 FullSourceLoc full(loc, instance().getSourceManager());
102 if (instance().getSourceManager().isInSystemHeader(loc))
  /external/valgrind/drd/tests/
thread_name_xml.stderr.exp 32 thread_func instance 1
68 thread_func instance 2
104 thread_func instance 3
140 thread_func instance 4
176 thread_func instance 5
212 thread_func instance 6
248 thread_func instance 7
284 thread_func instance 8
320 thread_func instance 9
356 thread_func instance 1
    [all...]
  /external/vulkan-validation-layers/layers/
vk_layer_table.cpp 49 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
70 fprintf(stderr, "destroy instance dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
72 fprintf(stderr, "destroy instance dispatch table: map: 0x%p, key: 0x%p, table: UNKNOWN\n", &map, key);
109 assert(it != map.end() && "Not able to find instance dispatch entry");
134 * Instance -> PhysicalDevice
138 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map) {
140 dispatch_key key = get_dispatch_key(instance);
147 fprintf(stderr, "New, Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, pTable);
151 fprintf(stderr, "Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
156 layer_init_instance_dispatch_table(instance, pTable, gpa)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/scheduling/
TaskExecutor.java 122 private static TaskExecutor instance; field in class:TaskExecutor
250 Assert.isTrue(instance == null);
251 instance = new TaskExecutor(context);
254 /** @return the currently running instance, or {@code null} if the executor is not running. */
258 return instance;
276 instance = null;
  /packages/apps/Messaging/src/com/android/messaging/
FactoryImpl.java 67 // Cached instance for Pre-L_MR1
70 // Cached subId->instance for L_MR1 and beyond
208 PhoneUtils instance = sPhoneUtilsInstanceCacheLMR1.get(subId); local
209 if (instance == null) {
210 instance = new PhoneUtils.PhoneUtilsLMR1(subId);
211 sPhoneUtilsInstanceCacheLMR1.putIfAbsent(subId, instance);
213 return instance;
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/common/
vk_layer_table.cpp 49 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
70 fprintf(stderr, "destroy instance dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
72 fprintf(stderr, "destroy instance dispatch table: map: 0x%p, key: 0x%p, table: UNKNOWN\n", &map, key);
110 assert(it != map.end() && "Not able to find instance dispatch entry");
135 * Instance -> PhysicalDevice
139 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map) {
141 dispatch_key key = get_dispatch_key(instance);
148 fprintf(stderr, "New, Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, pTable);
152 fprintf(stderr, "Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
157 layer_init_instance_dispatch_table(instance, pTable, gpa)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
vk_layer_table.cpp 49 assert(it != tableInstanceMap.end() && "Not able to find instance dispatch entry");
70 fprintf(stderr, "destroy instance dispatch_table: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
72 fprintf(stderr, "destroy instance dispatch table: map: 0x%p, key: 0x%p, table: UNKNOWN\n", &map, key);
110 assert(it != map.end() && "Not able to find instance dispatch entry");
135 * Instance -> PhysicalDevice
139 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map) {
141 dispatch_key key = get_dispatch_key(instance);
148 fprintf(stderr, "New, Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, pTable);
152 fprintf(stderr, "Instance: map: 0x%p, key: 0x%p, table: 0x%p\n", &map, key, it->second);
157 layer_init_instance_dispatch_table(instance, pTable, gpa)
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 100 VkInstance_T* instance; member in struct:VkDevice_T
180 Handle AllocHandle(VkInstance instance, HandleType::Enum type) {
182 AllocHandle(type, &instance->next_callback_handle));
291 VkInstance_T* instance = local
295 if (!instance)
298 instance->dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
299 instance->allocator = *allocator;
300 instance->physical_device.dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
301 instance->next_callback_handle = 0;
306 ALOGV("instance extension '%s' requested"
652 VkInstance_T* instance = GetInstanceFromPhysicalDevice(physical_device); local
    [all...]
  /frameworks/native/vulkan/libvulkan/
driver.cpp 256 ALOGE("failed to get HAL instance extension count");
263 ALOGE("failed to allocate HAL instance extension array");
269 ALOGE("failed to enumerate HAL instance extensions");
492 ALOGW("Ignored invalid instance extension %s", name);
640 PFN_vkVoidFunction GetInstanceProcAddr(VkInstance instance, const char* pName) {
643 return Hal::Device().GetInstanceProcAddr(instance, pName);
645 if (!instance) {
658 "internal vkGetInstanceProcAddr called for %s without an instance",
667 case ProcHook::INSTANCE:
668 proc = (GetData(instance).hook_extensions[hook->extension]
906 VkInstance instance; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
abc.py 10 # Instance of old-style class
128 def __instancecheck__(cls, instance):
129 """Override for isinstance(instance, cls)."""
131 subclass = getattr(instance, '__class__', None)
134 subtype = type(instance)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
abc.py 10 # Instance of old-style class
128 def __instancecheck__(cls, instance):
129 """Override for isinstance(instance, cls)."""
131 subclass = getattr(instance, '__class__', None)
134 subtype = type(instance)
  /external/autotest/docs/
test-that.md 19 launch jobs in the ChromeOS Hardware Lab (or against a local Autotest instance
69 For instance:
121 MobLab instance. This usage is similar to running tests in the lab. The argument
122 --web allows you to specify the web address of the Autotest instance you want to
125 For instance:
132 instance located at 100.96.51.136

Completed in 792 milliseconds

<<21222324252627282930>>