/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/ |
H A D | CameraPairwiseTest.java | 56 public enum Flash { ON, OFF, AUTO }; enum in CameraPairwiseTest 149 genericPairwiseTestCase(Flash.OFF, Exposure.MAX, WhiteBalance.AUTO, SceneMode.NIGHT, in testCameraPairwiseScenario03() 159 genericPairwiseTestCase(Flash.OFF, Exposure.MAX, WhiteBalance.CLOUDY, SceneMode.AUTO, in testCameraPairwiseScenario04() 169 genericPairwiseTestCase(Flash.AUTO, Exposure.MAX, WhiteBalance.INCANDESCENT, in testCameraPairwiseScenario05() 179 genericPairwiseTestCase(Flash.ON, Exposure.NONE, WhiteBalance.CLOUDY, SceneMode.AUTO, in testCameraPairwiseScenario06() 199 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION, in testCameraPairwiseScenario08() 209 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.AUTO, SceneMode.NIGHT, in testCameraPairwiseScenario09() 299 genericPairwiseTestCase(Flash.ON, Exposure.NONE, WhiteBalance.AUTO, SceneMode.PARTY, in testCameraPairwiseScenario18() 328 genericPairwiseTestCase(Flash.OFF, Exposure.MIN, WhiteBalance.AUTO, SceneMode.AUTO, in testCameraPairwiseScenario21() 346 genericPairwiseTestCase(Flash.ON, Exposure.MAX, WhiteBalance.AUTO, SceneMode.NIGHT, in testCameraPairwiseScenario23() [all …]
|
/aosp12/frameworks/base/services/core/jni/ |
H A D | com_android_server_lights_LightsService.cpp | 34 using Flash = ::android::hardware::light::V2_0::Flash; typedef 52 if (flash != static_cast<jint>(Flash::NONE) && in validate() 53 flash != static_cast<jint>(Flash::TIMED) && in validate() 54 flash != static_cast<jint>(Flash::HARDWARE)) { in validate() 81 Flash flash = static_cast<Flash>(flashMode); in constructState() 87 state.flashMode = Flash::NONE; in constructState()
|
/aosp12/frameworks/base/services/core/java/com/android/server/lights/ |
H A D | LogicalLight.java | 20 import android.hardware.light.V2_0.Flash; 30 public static final int LIGHT_FLASH_NONE = Flash.NONE; 35 public static final int LIGHT_FLASH_TIMED = Flash.TIMED; 40 public static final int LIGHT_FLASH_HARDWARE = Flash.HARDWARE;
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/ |
H A D | FlashSetting.java | 28 public class FlashSetting extends ForwardingObservable<OneCamera.PhotoCaptureParameters.Flash> { 30 Function<String, OneCamera.PhotoCaptureParameters.Flash> { 32 public OneCamera.PhotoCaptureParameters.Flash apply(String settingString) { in apply() 33 return OneCamera.PhotoCaptureParameters.Flash.decodeSettingsString(settingString); in apply()
|
H A D | OneCameraCaptureSetting.java | 37 private final Observable<OneCamera.PhotoCaptureParameters.Flash> mFlashSetting; 48 Observable<OneCamera.PhotoCaptureParameters.Flash> flashSetting; in create() 74 Observable<OneCamera.PhotoCaptureParameters.Flash> flashSetting, in OneCameraCaptureSetting() 89 public Observable<OneCamera.PhotoCaptureParameters.Flash> getFlashSetting() { in getFlashSetting()
|
H A D | OneCamera.java | 295 public static enum Flash { enum in OneCamera.PhotoCaptureParameters 307 Flash(@Nonnull String settingsString) { in Flash() method in OneCamera.PhotoCaptureParameters.Flash 317 public static Flash decodeSettingsString(@Nonnull String setting) { in decodeSettingsString()
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/photo/ |
H A D | FlashBasedPhotoCommand.java | 35 private final Supplier<OneCamera.PhotoCaptureParameters.Flash> mFlashMode; 41 Supplier<OneCamera.PhotoCaptureParameters.Flash> flashMode, in FlashBasedPhotoCommand() 57 OneCamera.PhotoCaptureParameters.Flash flashMode = mFlashMode.get(); in run() 58 if (flashMode == OneCamera.PhotoCaptureParameters.Flash.ON) { in run() 61 } else if (flashMode == OneCamera.PhotoCaptureParameters.Flash.AUTO) { in run()
|
H A D | PictureTakerFactory.java | 46 Supplier<OneCamera.PhotoCaptureParameters.Flash> flashMode, boolean cafSupport) { in create()
|
/aosp12/hardware/interfaces/light/2.0/vts/functional/ |
H A D | VtsHalLightV2_0TargetTest.cpp | 30 using ::android::hardware::light::V2_0::Flash; 45 .flashMode = Flash::TIMED, 53 .flashMode = Flash::TIMED, 61 .flashMode = Flash::NONE,
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/common/ |
H A D | FlashBasedAEMode.java | 28 private final Supplier<OneCamera.PhotoCaptureParameters.Flash> mFlash; 32 Supplier<OneCamera.PhotoCaptureParameters.Flash> flash, in FlashBasedAEMode()
|
/aosp12/hardware/google/interfaces/light/1.0/default/ |
H A D | Light.cpp | 31 static_assert(LIGHT_FLASH_NONE == static_cast<int>(Flash::NONE), 33 static_assert(LIGHT_FLASH_TIMED == static_cast<int>(Flash::TIMED), 35 static_assert(LIGHT_FLASH_HARDWARE == static_cast<int>(Flash::HARDWARE),
|
/aosp12/hardware/google/interfaces/light/1.1/default/ |
H A D | Light.cpp | 31 static_assert(LIGHT_FLASH_NONE == static_cast<int>(Flash::NONE), 33 static_assert(LIGHT_FLASH_TIMED == static_cast<int>(Flash::TIMED), 35 static_assert(LIGHT_FLASH_HARDWARE == static_cast<int>(Flash::HARDWARE),
|
/aosp12/hardware/interfaces/light/2.0/default/ |
H A D | Light.cpp | 31 static_assert(LIGHT_FLASH_NONE == static_cast<int>(Flash::NONE), 33 static_assert(LIGHT_FLASH_TIMED == static_cast<int>(Flash::TIMED), 35 static_assert(LIGHT_FLASH_HARDWARE == static_cast<int>(Flash::HARDWARE),
|
/aosp12/hardware/interfaces/light/2.0/ |
H A D | types.hal | 26 enum Flash : int32_t { 33 * Flash the light at specified rate. 38 * Flash the light using hardware assist. 128 Flash flashMode;
|
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/ |
H A D | OneCameraZslImpl.java | 54 import com.android.camera.one.OneCamera.PhotoCaptureParameters.Flash; 515 Flash flashMode = Flash.OFF; in takePicture() 517 if (flashMode == Flash.ON || flashMode == Flash.AUTO) { in takePicture() 730 private void addFlashToCaptureRequestBuilder(CaptureRequest.Builder builder, Flash flashMode) { in addFlashToCaptureRequestBuilder() 812 Flash flashMode = Flash.OFF; in sendSingleRequest() 865 private boolean sendAutoExposureTriggerRequest(Flash flashMode) { in sendAutoExposureTriggerRequest()
|
H A D | OneCameraFactory.java | 37 Observable<OneCamera.PhotoCaptureParameters.Flash> flashSetting, in createOneCamera()
|
/aosp12/system/core/fastboot/fuzzy_fastboot/ |
H A D | main.cpp | 587 EXPECT_EQ(fb->Flash("userdata"), SUCCESS) << "Flashing sparse failed: " << sparse.Rep(); in TEST_F() 597 EXPECT_EQ(fb->Flash("userdata"), SUCCESS) << "Flashing sparse failed: " << sparse.Rep(); in TEST_F() 610 EXPECT_EQ(fb->Flash("userdata"), SUCCESS) << "Flashing sparse failed: " << sparse.Rep(); in TEST_F() 641 EXPECT_EQ(fb->Flash("userdata"), SUCCESS) << "Flashing sparse failed: " << sparse.Rep(); in TEST_F() 656 EXPECT_EQ(fb->Flash("userdata"), DEVICE_FAIL) in TEST_F() 708 EXPECT_EQ(fb->Flash(std::get<0>(tup), &resp), DEVICE_FAIL) in TEST_F() 947 EXPECT_EQ(fb->Flash("userdata"), DEVICE_FAIL) in TEST_F() 952 EXPECT_EQ(fb->Flash("userdata"), DEVICE_FAIL) in TEST_F() 970 EXPECT_EQ(fb->Flash("userdata"), DEVICE_FAIL) in TEST_F() 976 EXPECT_EQ(fb->Flash("userdata"), DEVICE_FAIL) in TEST_F() [all …]
|
/aosp12/system/core/fastboot/device/ |
H A D | flashing.h | 24 int Flash(FastbootDevice* device, const std::string& partition_name);
|
/aosp12/packages/apps/Camera2/src/com/android/camera/util/ |
H A D | ExifUtil.java | 167 addExifTag(ExifInterface.TAG_FLASH, ExifInterface.Flash.DID_NOT_FIRE); 169 addExifTag(ExifInterface.TAG_FLASH, ExifInterface.Flash.FIRED);
|
/aosp12/system/core/fastboot/ |
H A D | fastboot_driver.cpp | 94 RetCode FastBootDriver::Flash(const std::string& partition, std::string* response, in Flash() function in fastboot::FastBootDriver 144 return Flash(partition); in FlashPartition() 153 return Flash(partition); in FlashPartition() 162 return Flash(partition); in FlashPartition()
|
/aosp12/hardware/interfaces/fastboot/1.0/ |
H A D | types.hal | 44 * Flash Friendly File System.
|
/aosp12/packages/modules/Virtualization/docs/getting_started/ |
H A D | yukawa.md | 30 Flash your device and reboot.
|
/aosp12/hardware/interfaces/light/utils/ |
H A D | main.cpp | 84 .flashMode = V2_0::Flash::NONE, in setToColorHidl()
|
/aosp12/frameworks/base/cmds/incidentd/testdata/ |
H A D | kmsg.txt | 8 S - Flash Throughput, 129000 KB/s (4729638 Bytes, 36613 us)
|
H A D | kmsg.txt.gz |
|