HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 401 - 425 of 1940) sorted by null

<<11121314151617181920>>

  /hardware/qcom/msm8996/kernel-headers/linux/
msm_ipc.h 31 uint32_t instance; member in struct:msm_ipc_port_name
82 uint32_t instance; member in struct:msm_ipc_server_info
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_ipc.h 14 uint32_t instance; member in struct:msm_ipc_port_name
80 uint32_t instance; member in struct:msm_ipc_server_info
  /packages/apps/Camera2/src/com/android/camera/app/
FirstRunDetector.java 33 private static final FirstRunDetector INSTANCE = new FirstRunDetector(
34 Profilers.instance().guard());
37 public static FirstRunDetector instance() { method in class:FirstRunDetector
38 return Singleton.INSTANCE;
  /packages/apps/Camera2/src/com/android/camera/device/
CameraModuleHelper.java 42 AndroidContext.instance().get(), Loggers.tagFactory());
46 CameraManager cameraManager = AndroidServices.instance().provideCameraManager();
  /packages/apps/Camera2/src/com/android/camera/settings/
ManagedSwitchPreference.java 56 SettingsManager settingsManager = CameraServicesImpl.instance().getSettingsManager();
75 SettingsManager settingsManager = CameraServicesImpl.instance().getSettingsManager();
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmService.java 88 * or using a different instance.
91 * @param instance you are trying to stop
93 public static void stopAlarm(Context context, AlarmInstance instance) {
94 final Intent intent = AlarmInstance.createIntent(context, AlarmService.class, instance.mId)
119 private void startAlarm(AlarmInstance instance) {
120 LogUtils.v("AlarmService.start with instance: " + instance.mId);
128 mCurrentAlarm = instance;
143 LogUtils.v("AlarmService.stop with instance: %s", instanceId);
220 final AlarmInstance instance = AlarmInstance.getInstance(cr, instanceId) local
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 193 Object instance = null; local
196 instance = clazz.newInstance();
199 method.invoke(instance, filePath);
203 return (Bitmap) clazz.getMethod("captureFrame").invoke(instance);
205 byte[] data = (byte[]) clazz.getMethod("getEmbeddedPicture").invoke(instance);
210 return (Bitmap) clazz.getMethod("getFrameAtTime").invoke(instance);
228 if (instance != null) {
229 clazz.getMethod("release").invoke(instance);
  /system/bt/service/ipc/binder/
interface_with_instances_base.h 32 // servers that involve instance callback Binders registered with an integer
33 // instance ID over an asynchronous lower-level stack API. This class abstracts
46 // The initial entry point for registering a instance. Invoke this from the
47 // registration API to add a instance/UUID pair to the pending list and set up
49 // given |factory| instance. Returns false, if there were any errors that
54 // Unregister the instance with the given ID, if it was registered before.
65 // instance ID |instance_id|. The returned pointer will contain NULL if an
69 // Returns the instance instance that is assigned to the given instance I
    [all...]
interface_with_instances_base.cpp 52 std::unique_ptr<bluetooth::BluetoothInstance> instance) {
57 VLOG(2) << "InterfaceWithInstancesBase was deleted while instance was"
63 status, in_uuid, std::move(instance));
69 LOG(ERROR) << "Failed to register instance";
107 std::unique_ptr<bluetooth::BluetoothInstance> instance) {
118 << "returned; unregistering instance";
124 LOG(ERROR) << "Failed to register instance: " << status;
130 int instance_id = instance->GetInstanceId();
141 std::shared_ptr<bluetooth::BluetoothInstance>(instance.release());
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 338 android_app_free((struct android_app*)activity->instance);
343 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_START);
348 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_RESUME);
352 struct android_app* android_app = (struct android_app*)activity->instance;
377 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_PAUSE);
382 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_STOP);
386 struct android_app* android_app = (struct android_app*)activity->instance;
392 struct android_app* android_app = (struct android_app*)activity->instance;
399 android_app_write_cmd((struct android_app*)activity->instance,
405 android_app_set_window((struct android_app*)activity->instance, window)
    [all...]
  /external/skia/platform_tools/android/third_party/native_app_glue/
android_native_app_glue.c 337 android_app_free((struct android_app*)activity->instance);
342 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_START);
347 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_RESUME);
351 struct android_app* android_app = (struct android_app*)activity->instance;
376 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_PAUSE);
381 android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_STOP);
385 struct android_app* android_app = (struct android_app*)activity->instance;
391 struct android_app* android_app = (struct android_app*)activity->instance;
398 android_app_write_cmd((struct android_app*)activity->instance,
404 android_app_set_window((struct android_app*)activity->instance, window)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesBase.cpp 21 * \brief Sparse Resources Base Instance
50 const InstanceInterface& instance = m_context.getInstanceInterface(); local
55 instance.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &queueFamilyPropertiesCount, DE_NULL);
65 instance.getPhysicalDeviceQueueFamilyProperties(physicalDevice, &queueFamilyPropertiesCount, &queueFamilyProperties[0]);
111 instance.getPhysicalDeviceFeatures(physicalDevice, &deviceFeatures);
123 m_logicalDevice = vk::createDevice(instance, physicalDevice, &deviceInfo);
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethod.java 46 private final Object instance; field in class:CheckedProviderMethod
58 Object instance,
67 this.instance = instance;
115 T result = (T) method.invoke(instance, parameters);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
FogTest.java 42 public ModelInstance instance; field in class:FogTest
63 instance = new ModelInstance(model);
81 modelBatch.render(instance, environment);
91 instance.transform.val[14] += delta * 4 * dir;
93 if (Math.abs(instance.transform.val[14]) > 5) {
  /external/mockito/src/org/mockito/internal/configuration/injection/
PropertyAndSetterInjection.java 101 private boolean injectMockCandidates(Class<?> awaitingInjectionClazz, Set<Object> mocks, Object instance) {
105 injectionOccurred |= injectMockCandidatesOnFields(mocks, instance, injectionOccurred, orderedInstanceFields);
107 injectionOccurred |= injectMockCandidatesOnFields(mocks, instance, injectionOccurred, orderedInstanceFields);
111 private boolean injectMockCandidatesOnFields(Set<Object> mocks, Object instance, boolean injectionOccurred, List<Field> orderedInstanceFields) {
114 Object injected = mockCandidateFilter.filterCandidate(mocks, field, instance).thenInject();
  /frameworks/native/services/surfaceflinger/
GpuService.cpp 116 VkInstance instance; local
117 result = vkCreateInstance(&instance_info, nullptr, &instance);
124 result = vkEnumeratePhysicalDevices(instance, &ngpu, nullptr);
130 result = vkEnumeratePhysicalDevices(instance, &ngpu, gpus.data());
145 vkDestroyInstance(instance, nullptr);
  /packages/apps/Camera2/src/com/android/camera/
FatalErrorHandlerImpl.java 42 UsageStatistics.instance().storageWarning(Storage.ACCESS_FAILURE);
56 UsageStatistics.instance().cameraFailure(
72 UsageStatistics.instance().cameraFailure(
88 UsageStatistics.instance().cameraFailure(
105 UsageStatistics.instance().cameraFailure(
  /frameworks/native/vulkan/libvulkan/
driver_gen.cpp 103 ProcHook::INSTANCE,
110 ProcHook::INSTANCE,
117 ProcHook::INSTANCE,
138 ProcHook::INSTANCE,
145 ProcHook::INSTANCE,
159 ProcHook::INSTANCE,
166 ProcHook::INSTANCE,
180 ProcHook::INSTANCE,
194 ProcHook::INSTANCE,
215 ProcHook::INSTANCE,
    [all...]
  /external/autotest/frontend/shared/
resource_lib.py 53 instance = cls.from_uri_args(request, **kwargs)
57 instance.read_query_parameters(request.GET)
58 return instance.handle_request()
108 """Construct an instance from URI args.
323 def __init__(self, request, instance):
326 self.instance = instance
331 def from_optional_instance(cls, request, instance):
332 if instance is None:
334 return cls(request, instance)
    [all...]
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DisplayModifier.java 268 paint.setShader(ResourceModifiers.instance().mRepeatShader);
276 paint.setShader(ResourceModifiers.instance().mTranslatedShader);
282 paint.setShader(ResourceModifiers.instance().mScaledShader);
288 paint.setShader(ResourceModifiers.instance().mHorGradient);
294 paint.setShader(ResourceModifiers.instance().mDiagGradient);
302 paint.setShader(ResourceModifiers.instance().mVertGradient);
308 paint.setShader(ResourceModifiers.instance().mRadGradient);
314 paint.setShader(ResourceModifiers.instance().mSweepGradient);
320 paint.setShader(ResourceModifiers.instance().mComposeShader);
326 paint.setShader(ResourceModifiers.instance().mBadComposeShader)
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator.cc 649 static Allocator instance(LINKER_INITIALIZED);
652 return instance.allocator;
680 instance.Initialize(options);
684 instance.ReInitialize(options);
688 instance.GetOptions(options);
692 return instance.FindHeapChunkByAddress(addr);
696 instance.CommitBack(this);
700 instance.PrintStats();
705 return instance.Allocate(size, alignment, stack, alloc_type, true);
709 instance.Deallocate(ptr, 0, stack, alloc_type)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/rds2/
layer1.py 46 maintains the database software that powers your DB instance.
47 Amazon RDS is flexible: you can scale your database instance's
57 the next instance reboot or during the maintenance window. For
158 + If the source type is a DB instance, then a `DBInstanceIdentifier`
223 Region to an Amazon RDS DB instance in another. You cannot
225 Amazon RDS DB instance in another.
337 Creates a new DB instance.
344 The name of the database to create when the DB instance is created. If
346 instance.
359 The Oracle System ID (SID) of the created DB instance
    [all...]
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
MapBinderTest.java 24 import static com.google.inject.multibindings.SpiUtils.instance;
189 instance("a", "A"), instance("b", "B"), instance("c", "C"), instance("d", "D"), instance("e", "E"));
215 instance("a", "A"), instance("b", "B"), instance("c", "C"));
241 instance("a", "A"), instance("b", "B"), instance("c", "C"))
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
cmdshell.py 23 to the servers that are represented by instance objects. The module has
356 :ivar instance: A boto Instance object.
359 def __init__(self, instance, ssh_key_file):
360 self.instance = instance
362 self.hostname = instance.dns_name
363 self.instance_id = self.instance.id
374 instance_id = boto.config.get('Instance', 'instance-id', None
    [all...]
  /external/elfutils/tests/
dwflmodtest.c 41 print_instance (Dwarf_Die *instance, void *arg)
52 if (dwarf_formudata (dwarf_attr (instance, DW_AT_call_file,
57 if (dwarf_formudata (dwarf_attr (instance, DW_AT_call_line,
60 if (dwarf_formudata (dwarf_attr (instance, DW_AT_call_column,
76 if (dwarf_lowpc (instance, &lo) == 0)
80 if (dwarf_highpc (instance, &hi) == 0)
86 Dwarf_Attribute *attr = dwarf_attr (instance, DW_AT_entry_pc, &attr_mem);

Completed in 1611 milliseconds

<<11121314151617181920>>