/external/vulkan-validation-layers/layers/ |
vk_layer_table.h | 30 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map); 31 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa);
|
/external/vulkan-validation-layers/tests/layers/ |
wrap_objects.h | 28 struct wrapped_inst_obj *inst; // parent instance object 47 static inline VkInstance unwrap_instance(const VkInstance instance, wrapped_inst_obj **inst) { 48 *inst = reinterpret_cast<wrapped_inst_obj *> (instance);
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
ActivityRecognitionProviderWatcher.java | 57 public void onInstanceChanged(IActivityRecognitionHardware instance) { 65 mActivityRecognitionProvider = new ActivityRecognitionProvider(instance);
|
/frameworks/base/packages/WallpaperCropper/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);
|
/frameworks/native/libs/vr/libpdx_uds/ |
channel_manager.cpp | 10 static ChannelManager instance; local 11 return instance;
|
/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 | 91 * or using a different instance. 94 * @param instance you are trying to stop 96 public static void stopAlarm(Context context, AlarmInstance instance) { 97 final Intent intent = AlarmInstance.createIntent(context, AlarmService.class, instance.mId) 107 private void startAlarm(AlarmInstance instance) { 108 LogUtils.v("AlarmService.start with instance: " + instance.mId); 116 mCurrentAlarm = instance; 130 LogUtils.v("AlarmService.stop with instance: %s", instanceId); 202 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);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance
|
/prebuilts/go/darwin-x86/src/strings/ |
strings_decl.go | 7 // IndexByte returns the index of the first instance of c in s, or -1 if c is not present in s.
|
/prebuilts/go/linux-x86/src/strings/ |
strings_decl.go | 7 // IndexByte returns the index of the first instance of c in s, or -1 if c is not present in s.
|
/prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/ |
vk_layer_table.h | 30 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa, instance_table_map &map); 31 VkLayerInstanceDispatchTable *initInstanceTable(VkInstance instance, const PFN_vkGetInstanceProcAddr gpa);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
new.py | 13 from types import InstanceType as instance
|
/prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf/1.0.1/ |
grpc-protobuf-1.0.1.jar | |
/prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf/1.0.3/ |
grpc-protobuf-1.0.3.jar | |
/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...] |
/external/v8/src/wasm/ |
wasm-objects.cc | 13 #define TRACE_CHAIN(instance) \ 15 instance->PrintInstancesChain(); \ 126 Handle<WasmInstanceObject> instance, int table_index, 132 if (instance.is_null()) return dispatch_tables; 139 new_dispatch_tables->set(dispatch_tables->length() + 0, *instance); 194 void WasmMemoryObject::AddInstance(WasmInstanceObject* instance) { 195 // TODO(gdeepti): This should be a weak list of instance objects 197 SetInternalField(kInstance, instance); 251 Handle<WasmInstanceObject> instance( 256 instance->SetInternalField(kCompiledModule, *compiled_module) 261 WasmInstanceObject* WasmExportedFunction::instance() { function in class:WasmExportedFunction [all...] |
/prebuilts/ndk/r11/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...] |
/prebuilts/ndk/r13/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...] |