Home
last modified time | relevance | path

Searched refs:Flash (Results 1 – 25 of 45) sorted by relevance

12

/aosp12/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
H A DCameraPairwiseTest.java56 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 Dcom_android_server_lights_LightsService.cpp34 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 DLogicalLight.java20 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 DFlashSetting.java28 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 DOneCameraCaptureSetting.java37 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 DOneCamera.java295 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 DFlashBasedPhotoCommand.java35 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 DPictureTakerFactory.java46 Supplier<OneCamera.PhotoCaptureParameters.Flash> flashMode, boolean cafSupport) { in create()
/aosp12/hardware/interfaces/light/2.0/vts/functional/
H A DVtsHalLightV2_0TargetTest.cpp30 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 DFlashBasedAEMode.java28 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 DLight.cpp31 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 DLight.cpp31 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 DLight.cpp31 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 Dtypes.hal26 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 DOneCameraZslImpl.java54 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 DOneCameraFactory.java37 Observable<OneCamera.PhotoCaptureParameters.Flash> flashSetting, in createOneCamera()
/aosp12/system/core/fastboot/fuzzy_fastboot/
H A Dmain.cpp587 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 Dflashing.h24 int Flash(FastbootDevice* device, const std::string& partition_name);
/aosp12/packages/apps/Camera2/src/com/android/camera/util/
H A DExifUtil.java167 addExifTag(ExifInterface.TAG_FLASH, ExifInterface.Flash.DID_NOT_FIRE);
169 addExifTag(ExifInterface.TAG_FLASH, ExifInterface.Flash.FIRED);
/aosp12/system/core/fastboot/
H A Dfastboot_driver.cpp94 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 Dtypes.hal44 * Flash Friendly File System.
/aosp12/packages/modules/Virtualization/docs/getting_started/
H A Dyukawa.md30 Flash your device and reboot.
/aosp12/hardware/interfaces/light/utils/
H A Dmain.cpp84 .flashMode = V2_0::Flash::NONE, in setToColorHidl()
/aosp12/frameworks/base/cmds/incidentd/testdata/
H A Dkmsg.txt8 S - Flash Throughput, 129000 KB/s (4729638 Bytes, 36613 us)
H A Dkmsg.txt.gz

12