Searched refs:module (Results 1 - 18 of 18) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/remote/
H A DRemoteShutterListener.java25 * Called when the module is active and ready for shutter presses.
27 void onModuleReady(RemoteCameraModule module); argument
30 * Called when module is no longer ready for shutter presses.
/packages/apps/Camera2/src_pd/com/android/camera/util/
H A DRemoteShutterHelper.java32 public void onModuleReady(RemoteCameraModule module) {
/packages/services/Car/service/jni/
H A Dcom_android_car_CarCameraService.cpp35 vehicle_camera_module_t *module = NULL; local
37 hw_get_module(VEHICLE_CAMERA_HARDWARE_MODULE_ID, (const hw_module_t**)&module);
39 if (module == NULL) {
42 return (jlong)module;
69 vehicle_camera_module_t *module = (vehicle_camera_module_t*)mod; local
74 camera_list = module->get_camera_device_list(&numCameras);
99 vehicle_camera_module_t *module = (vehicle_camera_module_t*)mod; local
102 if (module != NULL) {
103 module->common.methods->open((hw_module_t*)module, cameraTypeStrin
[all...]
/packages/apps/Camera2/src/com/android/camera/app/
H A DModuleManager.java22 import com.android.camera.module.ModuleController;
28 * The module manager which maintains the
35 * The module agent which is responsible for maintaining the static
36 * characteristics and the creation of the module.
41 * @return The module ID.
46 * @return Whether the module will request the app for the camera.
52 * the module scope.
57 * Creates the module.
60 * creates this module.
62 * @return The module
[all...]
H A DAppController.java34 import com.android.camera.module.ModuleController;
88 * @return a String scope uniquely identifing the current module.
120 * Returns the current module controller.
125 * Returns the currently active module index.
130 * Returns the module ID for a specific mode.
145 * Based on a mode switcher index, choose the correct module index.
148 * @return module index.
155 * @param moduleIndex index of the new module to switch to
181 * Gets called from module when preview is ready to start.
186 * Gets called from module whe
[all...]
H A DCameraAppUI.java46 import com.android.camera.module.ModuleController;
74 * CameraAppUI centralizes control of views shared across modules. Whereas module
76 * bring the flash animation and capture animation up from each module to app
261 * Once constructed by a module, this class should be
364 * Set true if the device and module support exposure compensation.
574 * Provides current preview frame and the controls/overlay from the module that
990 // Go to new module when the previous operation is successful.
1307 * modules. Then each module inflates their own views in the given view group. For
1308 * now, this is called every time switching from a not-yet-refactored module to a
1309 * refactored module
1819 resetBottomControls(ModuleController module, int moduleIndex) argument
1833 areBottomControlsUsed(ModuleController module) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/module/
H A DModuleController.java17 package com.android.camera.module;
40 * Initializes the module.
49 * Resumes the module. Always call this method whenever it's being put in
55 * Pauses the module. Always call this method whenever it's being put in the
61 * Destroys the module. Always call this method to release the resources used
62 * by this module.
94 * Called by the app when the camera is available. The module should use
102 * Called by the app on startup or module switches, this allows the module
109 * based on the module'
[all...]
H A DModulesInfo.java17 package com.android.camera.module;
41 * A class holding the module information and registers them to
89 // capture module is using OneCamera. At some point we'll
90 // refactor all modules to use OneCamera, then the new module
/packages/services/Car/car_product/sepolicy/
H A Dfile_contexts86 /sys/module/msm_dcvs(/.*)? u:object_r:sysfs_dcvs:s0
87 /sys/module/msm_mpdecision(/.*)? u:object_r:sysfs_mpdecision:s0
88 /sys/module/msm_thermal(/.*)? u:object_r:sysfs_thermal:s0
89 /sys/module/pm_8x60(/.*)? u:object_r:sysfs_devices_system_cpu:s0
90 /sys/module/rmnet_usb(/.*)? u:object_r:sysfs_usb:s0
91 /sys/module/rpm_resources(/.*)? u:object_r:sysfs_rpm_resources:s0
92 /sys/module/spm_v2(/.*)? u:object_r:sysfs_thermal:s0
/packages/services/Car/service/src/com/android/car/
H A DCarCameraService.java66 Log.w(TAG, "Cannot load camera module");
214 private native void nativeClose(long module); argument
215 private native int[] nativeGetSupportedCameras(long module); argument
216 private native long nativeGetDevice(long module, int cameraType); argument
/packages/apps/Camera2/src/com/android/camera/
H A DCameraModule.java25 import com.android.camera.module.ModuleController;
28 /** Provides common services and functionality to the module. */
58 * @return An instance containing common services to be used by the module.
65 * @return An instance used by the module to get the camera.
H A DPhotoModule.java56 import com.android.camera.module.ModuleController;
315 public MainHandler(PhotoModule module) { argument
317 mModule = new WeakReference<PhotoModule>(module);
322 PhotoModule module = mModule.get();
323 if (module == null) {
328 module.initializeFirstTime();
333 module.setCameraParametersWhenIdle(0);
348 // in the new module. The new module will set the enabled/disabled
349 // of this button when the module'
[all...]
H A DCameraActivity.java110 import com.android.camera.module.ModuleController;
111 import com.android.camera.module.ModulesInfo;
519 throw new IllegalStateException("Camera opened but the module shouldn't be " +
538 // Reset the exposure compensation before handing the camera to module.
1494 // possible so we can call module.init() at the earliest time.
1711 // we need to drop them back in the photo module and have them select
1720 // read the module index from the last time the user changed modes
1802 * Save the last module index after all secure camera and icon launches,
2232 // If a module is in the middle of capture, it should
2452 // Select the correct module inde
2638 openModule(CameraModule module) argument
2651 closeModule(CameraModule module) argument
[all...]
H A DCaptureModule.java54 import com.android.camera.module.ModuleController;
100 * New Capture module that is made to support photo and video capture on top of
130 * Sticky Gcam mode is when this module's sole purpose it to be the Gcam
290 /** State by the module state machine. */
297 /** The current state of the module. */
316 /** Whether the module is paused right now. */
350 /** Constructs a new capture module. */
1172 // Disable this button to prevent callbacks from this module from firing
1552 // override this buffer size. Any module that uses egl to render to a
H A DVideoModule.java62 import com.android.camera.module.ModuleController;
114 // module fields
309 * Construct a new video module.
1361 Log.v(TAG, "in storage callback after module paused");
1507 // b/16300704: Monkey is fast so it could pause the module while recording.
2010 // Not much we can do in the video module.
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_btservice_AdapterService.cpp639 hw_module_t* module; local
684 err = hw_get_module(id, (hw_module_t const**)&module);
688 err = module->methods->open(module, id, &abstraction);
/packages/services/Car/
H A Dapicheck.mk18 # $(car_module) - name of the car library module
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 272 milliseconds