Home
last modified time | relevance | path

Searched refs:Set (Results 1 – 25 of 163) sorted by relevance

1234567

/hardware/google/camera/common/hal/utils/
Dhal_camera_metadata.h83 status_t Set(uint32_t tag, const uint8_t* data, uint32_t data_count);
84 status_t Set(uint32_t tag, const int32_t* data, uint32_t data_count);
85 status_t Set(uint32_t tag, const float* data, uint32_t data_count);
86 status_t Set(uint32_t tag, const int64_t* data, uint32_t data_count);
87 status_t Set(uint32_t tag, const double* data, uint32_t data_count);
88 status_t Set(uint32_t tag, const camera_metadata_rational_t* data,
90 status_t Set(uint32_t tag, const std::string& string);
93 status_t Set(const camera_metadata_ro_entry& entry);
Dhal_camera_metadata.cc221 status_t HalCameraMetadata::Set(uint32_t tag, const uint8_t* data, in Set() function in android::google_camera_hal::HalCameraMetadata
235 status_t HalCameraMetadata::Set(uint32_t tag, const int32_t* data, in Set() function in android::google_camera_hal::HalCameraMetadata
249 status_t HalCameraMetadata::Set(uint32_t tag, const float* data, in Set() function in android::google_camera_hal::HalCameraMetadata
263 status_t HalCameraMetadata::Set(uint32_t tag, const int64_t* data, in Set() function in android::google_camera_hal::HalCameraMetadata
277 status_t HalCameraMetadata::Set(uint32_t tag, const double* data, in Set() function in android::google_camera_hal::HalCameraMetadata
291 status_t HalCameraMetadata::Set(uint32_t tag, in Set() function in android::google_camera_hal::HalCameraMetadata
306 status_t HalCameraMetadata::Set(uint32_t tag, const std::string& string) { in Set() function in android::google_camera_hal::HalCameraMetadata
321 status_t HalCameraMetadata::Set(const camera_metadata_ro_entry& entry) { in Set() function in android::google_camera_hal::HalCameraMetadata
328 res = Set(entry.tag, entry.data.u8, entry.count); in Set()
331 res = Set(entry.tag, entry.data.i32, entry.count); in Set()
[all …]
/hardware/google/camera/devices/EmulatedCamera/hwl/
DEmulatedRequestState.cpp804 result->result_metadata->Set(ANDROID_REQUEST_PIPELINE_DEPTH, in InitializeResult()
806 result->result_metadata->Set(ANDROID_CONTROL_MODE, &control_mode_, 1); in InitializeResult()
807 result->result_metadata->Set(ANDROID_CONTROL_AF_MODE, &af_mode_, 1); in InitializeResult()
808 result->result_metadata->Set(ANDROID_CONTROL_AF_STATE, &af_state_, 1); in InitializeResult()
809 result->result_metadata->Set(ANDROID_CONTROL_AWB_MODE, &awb_mode_, 1); in InitializeResult()
810 result->result_metadata->Set(ANDROID_CONTROL_AWB_STATE, &awb_state_, 1); in InitializeResult()
811 result->result_metadata->Set(ANDROID_CONTROL_AE_MODE, &ae_mode_, 1); in InitializeResult()
812 result->result_metadata->Set(ANDROID_CONTROL_AE_STATE, &ae_state_, 1); in InitializeResult()
814 result->result_metadata->Set(ANDROID_CONTROL_AE_TARGET_FPS_RANGE, fps_range, in InitializeResult()
816 result->result_metadata->Set(ANDROID_FLASH_STATE, &flash_state_, 1); in InitializeResult()
[all …]
DEmulatedLogicalRequestState.cpp114 ret->result_metadata->Set(ANDROID_LOGICAL_MULTI_CAMERA_ACTIVE_PHYSICAL_ID, in InitializeLogicalResult()
229 logical_chars->Set(ANDROID_LOGICAL_MULTI_CAMERA_PHYSICAL_IDS, in AdaptLogicalCharacteristics()
237 logical_chars->Set(ANDROID_LENS_INFO_AVAILABLE_FOCAL_LENGTHS, in AdaptLogicalCharacteristics()
242 logical_chars->Set(google_camera_hal::kLogicalCamDefaultPhysicalId, in AdaptLogicalCharacteristics()
250 logical_chars->Set(ANDROID_REQUEST_AVAILABLE_RESULT_KEYS, in AdaptLogicalCharacteristics()
263 logical_chars->Set(ANDROID_REQUEST_AVAILABLE_CHARACTERISTICS_KEYS, in AdaptLogicalCharacteristics()
272 logical_chars->Set(ANDROID_REQUEST_AVAILABLE_REQUEST_KEYS, in AdaptLogicalCharacteristics()
/hardware/google/camera/common/hal/tests/
Dhal_camera_metadata_tests.cc98 hal_metadata->Set(ANDROID_SENSOR_EXPOSURE_TIME, &exposure_time_ns, 1); in SetGetMetadata()
110 res = hal_metadata->Set(ANDROID_SENSOR_SENSITIVITY, &sensitivity, 1); in SetGetMetadata()
121 res = hal_metadata->Set(ANDROID_LENS_FOCUS_DISTANCE, &focus_distance, 1); in SetGetMetadata()
133 hal_metadata->Set(ANDROID_CONTROL_AE_COMPENSATION_STEP, in SetGetMetadata()
150 res = hal_metadata->Set(ANDROID_CONTROL_AVAILABLE_SCENE_MODES, &mode, 1); in SetGetMetadata()
162 hal_metadata->Set(ANDROID_SENSOR_NOISE_PROFILE, noise, ARRAY_SIZE(noise)); in SetGetMetadata()
175 res = hal_metadata->Set(ANDROID_LOGICAL_MULTI_CAMERA_PHYSICAL_IDS, string); in SetGetMetadata()
249 hal_metadata->Set(ANDROID_SENSOR_EXPOSURE_TIME, &exposure_time_ns, 1); in TEST()
260 hal_metadata->Set(ANDROID_SENSOR_EXPOSURE_TIME, &exposure_time_ns, 1); in TEST()
293 hal_metadata->Set(ANDROID_SENSOR_EXPOSURE_TIME, &exposure_time_ns, 1); in TEST()
[all …]
Dvendor_tag_tests.cc40 status_t res = hal_metadata->Set( in TEST()
45 res = hal_metadata->Set(ANDROID_REQUEST_AVAILABLE_RESULT_KEYS, in TEST()
50 res = hal_metadata->Set(ANDROID_REQUEST_AVAILABLE_SESSION_KEYS, in TEST()
55 res = hal_metadata->Set(ANDROID_REQUEST_AVAILABLE_CHARACTERISTICS_KEYS, in TEST()
140 ret = metadata->Set(magic_tag_id, &good_magic, /*count=*/1); in TEST()
164 ret = metadata->Set(magic_tag_id, &good_magic, /*count=*/1); in TEST()
170 ret = metadata->Set(magic_tag_id, &dark_magic, /*count=*/1); in TEST()
/hardware/google/camera/common/hal/google_camera_hal/
Dvendor_tags.cc110 if (metadata->Set(ANDROID_REQUEST_AVAILABLE_REQUEST_KEYS, request_keys.data(), in ModifyCharacteristicsKeys()
112 metadata->Set(ANDROID_REQUEST_AVAILABLE_RESULT_KEYS, result_keys.data(), in ModifyCharacteristicsKeys()
114 metadata->Set(ANDROID_REQUEST_AVAILABLE_SESSION_KEYS, session_keys.data(), in ModifyCharacteristicsKeys()
116 metadata->Set(ANDROID_REQUEST_AVAILABLE_CHARACTERISTICS_KEYS, in ModifyCharacteristicsKeys()
/hardware/interfaces/wifi/supplicant/1.0/
DISupplicantStaNetwork.hal153 * Set SSID for this network.
167 * Set the network to only connect to an AP with provided BSSID.
180 * Set whether to send probe requests for this network (hidden).
192 * Set key management mask for the network.
206 * Set proto mask for the network.
220 * Set auth alg mask for the network.
234 * Set group cipher mask for the network.
249 * Set pairwise cipher mask for the network.
264 * Set passphrase for WPA_PSK network.
280 * Set raw psk for WPA_PSK network.
[all …]
DISupplicantIface.hal127 * Set the device name for WPS operations.
141 * Set the device type for WPS operations.
154 * Set the manufacturer for WPS operations.
168 * Set the model name for WPS operations.
181 * Set the model number for WPS operations.
195 * Set the serial number for WPS operations.
208 * Set the list of supported config methods for WPS operations.
/hardware/interfaces/wifi/supplicant/1.2/
DISupplicantStaNetwork.hal75 * Set key management mask for the network.
101 * Set pairwise cipher mask for the network.
129 * Set group cipher mask for the network.
157 * Set group management cipher mask for the network.
187 * @param enable Set to true to enable TLS Suite-B in EAP phase1
200 * Set EAP OpenSSL Suite-B-192 ciphers for WPA3-Enterprise
240 * Set SAE password for WPA3-Personal
255 * Set SAE password ID for WPA3-Personal
/hardware/interfaces/camera/device/1.0/
DICameraDevicePreviewCallback.hal59 * Set the number of preview buffers needed by the HAL.
67 * Set the dimensions and format of future preview buffers.
79 * Set the valid region of image data for the next buffer(s) to be enqueued.
87 * Set the producer usage flags for the next buffer(s) to be enqueued.
94 * Set the expected buffering mode for the preview output.
108 * Set the timestamp for the next buffer to enqueue
/hardware/interfaces/wifi/supplicant/1.3/
DISupplicantStaNetwork.hal85 * Set OCSP (Online Certificate Status Protocol) type for this network.
109 * Set key management mask for the network.
135 * Set proto mask for the network.
161 * Set group cipher mask for the network.
189 * Set pairwise cipher mask for the network.
217 * Set WAPI certificate suite name for this network.
256 * Set auth alg mask for the network.
/hardware/qcom/sdm845/display/libdebug/
Ddebug_handler.cpp52 void DebugHandler::Set(DebugHandler *debug_handler) { in Set() function in display::DebugHandler
/hardware/qcom/sm8150/display/libdebug/
Ddebug_handler.cpp52 void DebugHandler::Set(DebugHandler *debug_handler) { in Set() function in display::DebugHandler
/hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
Dcpuhint.h43 void Set();
Dcpuhint.cpp73 void CPUHint::Set() { in Set() function in sdm::CPUHint
/hardware/qcom/display/msm8909/sdm/libs/hwc/
Dcpuhint.h43 void Set();
Dcpuhint.cpp73 void CPUHint::Set() { in Set() function in sdm::CPUHint
/hardware/qcom/sm8150/display/sdm/libs/hwc2/
Dcpuhint.h43 void Set();
Dcpuhint.cpp73 void CPUHint::Set() { in Set() function in sdm::CPUHint
/hardware/qcom/sdm845/display/sdm/libs/hwc2/
Dcpuhint.h43 void Set();
Dcpuhint.cpp73 void CPUHint::Set() { in Set() function in sdm::CPUHint
/hardware/google/pixel-sepolicy/common/
Dinit-insmod-sh.te14 # Set the vendor.all.modules.ready property
/hardware/qcom/display/msm8998/sdm/libs/hwc2/
Dcpuhint.cpp73 void CPUHint::Set() { in Set() function in sdm::CPUHint
/hardware/qcom/display/msm8996/sdm/libs/hwc/
Dcpuhint.cpp73 void CPUHint::Set() { in Set() function in sdm::CPUHint

1234567