Home
last modified time | relevance | path

Searched refs:aidl_results (Results 1 – 5 of 5) sorted by relevance

/hardware/interfaces/wifi/aidl/default/
Dwifi_rtt_controller.cpp154 std::vector<RttResult> aidl_results; in rangeRequestInternal() local
156 &aidl_results)) { in rangeRequestInternal()
161 if (!callback->onResults(id, aidl_results).isOk()) { in rangeRequestInternal()
186 std::vector<RttResult> aidl_results; in rangeRequestInternal() local
188 &aidl_results)) { in rangeRequestInternal()
193 if (!callback->onResults(id, aidl_results).isOk()) { in rangeRequestInternal()
206 std::vector<RttResult> aidl_results; in rangeRequestInternal() local
208 &aidl_results)) { in rangeRequestInternal()
213 if (!callback->onResults(id, aidl_results).isOk()) { in rangeRequestInternal()
Daidl_struct_util.h175 std::vector<RttResult>* aidl_results);
178 std::vector<RttResult>* aidl_results);
181 std::vector<RttResult>* aidl_results);
Daidl_struct_util.cpp3027 std::vector<RttResult>* aidl_results) { in convertLegacyVectorOfRttResultToAidl() argument
3028 if (!aidl_results) { in convertLegacyVectorOfRttResultToAidl()
3031 *aidl_results = {}; in convertLegacyVectorOfRttResultToAidl()
3045 aidl_results->push_back(aidl_result); in convertLegacyVectorOfRttResultToAidl()
3052 std::vector<RttResult>* aidl_results) { in convertLegacyVectorOfRttResultV2ToAidl() argument
3053 if (!aidl_results) { in convertLegacyVectorOfRttResultV2ToAidl()
3056 *aidl_results = {}; in convertLegacyVectorOfRttResultV2ToAidl()
3071 aidl_results->push_back(aidl_result); in convertLegacyVectorOfRttResultV2ToAidl()
3078 std::vector<RttResult>* aidl_results) { in convertLegacyVectorOfRttResultV3ToAidl() argument
3079 if (!aidl_results) { in convertLegacyVectorOfRttResultV3ToAidl()
[all …]
/hardware/google/camera/common/hal/aidl_service/
Daidl_camera_device_session.cc136 std::vector<CaptureResult> aidl_results(1); in ProcessCaptureResult() local
138 result_metadata_queue_.get(), std::move(hal_result), &aidl_results[0]); in ProcessCaptureResult()
144 if (aidl_results[0].inputBuffer.streamId != -1) { in ProcessCaptureResult()
145 ATRACE_ASYNC_END("reprocess_frame", aidl_results[0].frameNumber); in ProcessCaptureResult()
146 aidl_profiler_->ReprocessingResultEnd(aidl_results[0].frameNumber); in ProcessCaptureResult()
149 auto aidl_res = aidl_device_callback_->processCaptureResult(aidl_results); in ProcessCaptureResult()
165 std::vector<CaptureResult> aidl_results(batch_size); in ProcessBatchCaptureResult() local
169 auto& aidl_result = aidl_results[i]; in ProcessBatchCaptureResult()
191 auto aidl_res = aidl_device_callback_->processCaptureResult(aidl_results); in ProcessBatchCaptureResult()
/hardware/interfaces/wifi/aidl/default/tests/
Daidl_struct_util_unit_tests.cpp858 std::vector<RttResult> aidl_results; in TEST_F() local
859 aidl_struct_util::convertLegacyVectorOfRttResultToAidl(rtt_results_vec, &aidl_results); in TEST_F()
861 EXPECT_EQ(rtt_results_vec.size(), aidl_results.size()); in TEST_F()
863 verifyRttResult(&rttResults[i], &aidl_results[i]); in TEST_F()
864 EXPECT_EQ(aidl_results[i].channelFreqMHz, 0); in TEST_F()
865 EXPECT_EQ(aidl_results[i].packetBw, RttBw::BW_UNSPECIFIED); in TEST_F()
881 std::vector<RttResult> aidl_results; in TEST_F() local
882 aidl_struct_util::convertLegacyVectorOfRttResultV2ToAidl(rtt_results_vec_v2, &aidl_results); in TEST_F()
884 EXPECT_EQ(rtt_results_vec_v2.size(), aidl_results.size()); in TEST_F()
886 verifyRttResult(&rttResults_v2[i].rtt_result, &aidl_results[i]); in TEST_F()
[all …]