/hardware/qcom/wlan/qcwcn/wifi_hal/ |
D | gscan_event_handler.cpp | 222 wifi_scan_result *results, in gscan_parse_hotlist_ap_results() argument 254 results[i].ts = in gscan_parse_hotlist_ap_results() 271 sizeof(results->ssid) <= len ? sizeof(results->ssid) : len; in gscan_parse_hotlist_ap_results() 272 memcpy((void *)&results[i].ssid, in gscan_parse_hotlist_ap_results() 287 sizeof(results->bssid) <= len ? sizeof(results->bssid) : len; in gscan_parse_hotlist_ap_results() 288 memcpy(&results[i].bssid, in gscan_parse_hotlist_ap_results() 300 results[i].channel = in gscan_parse_hotlist_ap_results() 312 results[i].rssi = in gscan_parse_hotlist_ap_results() 324 results[i].rtt = in gscan_parse_hotlist_ap_results() 336 results[i].rtt_sd = in gscan_parse_hotlist_ap_results() [all …]
|
D | gscancommand.h | 74 unsigned num_results, wifi_scan_result *results); 76 unsigned num_results, wifi_scan_result *results); 79 wifi_significant_change_result **results); 88 unsigned num_results, wifi_scan_result *results); 90 unsigned num_results, wifi_scan_result *results); 92 unsigned num_results, wifi_scan_result *results); 128 virtual int gscan_get_cached_results(wifi_cached_scan_results *results, 134 wifi_cached_scan_results *results);
|
D | gscan.cpp | 1087 wifi_cached_scan_results *results, in wifi_get_cached_gscan_results() argument 1114 results, in wifi_get_cached_gscan_results() 1125 if (results == NULL || num == NULL) { in wifi_get_cached_gscan_results() 1148 ret = gScanCommand->allocCachedResultsTemp(max, results); in wifi_get_cached_gscan_results() 1156 memset(results, 0, max * sizeof(wifi_cached_scan_results)); in wifi_get_cached_gscan_results() 1203 ret = gScanCommand->copyCachedScanResults(num, results); in wifi_get_cached_gscan_results() 1211 results[(*num)-1].flags = WIFI_SCAN_FLAG_INTERRUPTED; in wifi_get_cached_gscan_results() 1213 "for scan_id:%d", __FUNCTION__, results[(*num)-1].scan_id); in wifi_get_cached_gscan_results() 1625 cached_results[i].results[j].ts = in gscan_get_cached_results() 1643 sizeof(cached_results[i].results[j].ssid) <= len ? in gscan_get_cached_results() [all …]
|
D | gscan_event_handler.h | 79 wifi_scan_result *results, 84 wifi_scan_result *results,
|
D | wifihal_internal.h | 94 wifi_cached_scan_results *results,
|
/hardware/interfaces/audio/2.0/vts/functional/utility/ |
D | ReturnIn.h | 28 ReturnIn(ResultStore&... ts) : results(ts...) {} in ReturnIn() 31 void operator() (Results&&...results) { in operator() 32 set(std::forward<Results>(results)...); in operator() 38 std::get<sizeof...(ResultStore) - sizeof...(Tail) - 1>(results) in set() 46 std::tuple<ResultStore&...> results; variable
|
/hardware/libhardware_legacy/include/hardware_legacy/ |
D | gscan.h | 215 wifi_scan_result results[MAX_AP_CACHE_PER_SCAN]; // scan results - one for each bssid member 219 int max, wifi_cached_scan_results *results, int *num); 224 unsigned num_results, wifi_scan_result *results); 226 unsigned num_results, wifi_scan_result *results); 251 unsigned num_results, wifi_scan_result *results); 253 unsigned num_results, wifi_scan_result *results); 279 unsigned num_results, wifi_significant_change_result **results); 382 unsigned num_results, wifi_scan_result *results);
|
/hardware/interfaces/camera/device/3.2/default/ |
D | CameraDeviceSession.cpp | 401 void CameraDeviceSession::ResultBatcher::freeReleaseFences(hidl_vec<CaptureResult>& results) { in freeReleaseFences() argument 402 for (auto& result : results) { in freeReleaseFences() 481 hidl_vec<CaptureResult> results; in sendBatchBuffersLocked() local 482 results.resize(batchSize); in sendBatchBuffersLocked() 484 results[i].frameNumber = batch->mFirstFrame + i; in sendBatchBuffersLocked() 485 results[i].fmqResultSize = 0; in sendBatchBuffersLocked() 486 results[i].partialResult = 0; // 0 for buffer only results in sendBatchBuffersLocked() 487 results[i].inputBuffer.streamId = -1; in sendBatchBuffersLocked() 488 results[i].inputBuffer.bufferId = 0; in sendBatchBuffersLocked() 489 results[i].inputBuffer.buffer = nullptr; in sendBatchBuffersLocked() [all …]
|
/hardware/interfaces/wifi/1.0/ |
D | IWifiRttControllerEventCallback.hal | 27 * @param results Vector of |RttResult| instances. 29 oneway onResults(CommandId cmdId, vec<RttResult> results);
|
/hardware/interfaces/soundtrigger/2.0/ |
D | ISoundTriggerHwCallback.hal | 93 * @param event A RecognitionEvent structure containing detailed results 103 * @param event A RecognitionEvent structure containing detailed results 112 * @param event A ModelEvent structure containing detailed results of the
|
/hardware/interfaces/camera/device/3.2/ |
D | ICameraDeviceCallback.hal | 38 * Send results from one or more completed or partially completed captures 68 * capture results are included in a single call, camera framework must 69 * process results sequentially from lower index to higher index, as if 70 * these results were sent to camera framework one by one, from lower index 109 processCaptureResult(vec<CaptureResult> results);
|
D | types.hal | 154 * the last shutter notify and the last capture results (including partial 155 * results and final result) to the app. The shutter notifies and capture 156 * results for the other requests in the batch are derived by 836 * Applications receive these partial results immediately, so sending partial 837 * results is a highly recommended performance optimization to avoid the total 838 * pipeline latency before sending the results for what is known very early on 880 * partial results for that frame are ignored by the framework. 959 * In order to take advantage of partial results, the HAL must set the 961 * partial results it sends for each frame.
|
/hardware/interfaces/wifi/1.0/default/ |
D | wifi_rtt_controller.cpp | 177 const std::vector<const legacy_hal::wifi_rtt_result*>& results) { in rangeRequestInternal() argument 185 results, &hidl_results)) { in rangeRequestInternal()
|
/hardware/broadcom/wlan/bcmdhd/wifi_hal/ |
D | gscan.cpp | 314 static int parseScanResults(wifi_scan_result *results, int num, nlattr *attr) in parseScanResults() argument 316 memset(results, 0, sizeof(wifi_scan_result) * num); in parseScanResults() 324 wifi_scan_result *result = results + i; in parseScanResults() 828 wifi_cached_scan_results *results, int max, int *num) in GetScanResultsCommand() argument 829 : WifiCommand("GetScanResultsCommand", iface, -1), mScans(results), mMax(max), mNum(num), in GetScanResultsCommand() 944 wifi_gscan_result_t *results = (wifi_gscan_result_t *)it2.get_data(); in handleResponse() local 945 wifi_scan_result *mScanResults = mScans[mRetrieved].results; in handleResponse() 948 wifi_gscan_result_t *result = &results[i]; in handleResponse() 978 int max, wifi_cached_scan_results *results, int *num) { in wifi_get_cached_gscan_results() argument 981 GetScanResultsCommand *cmd = new GetScanResultsCommand(iface, flush, results, max, num); in wifi_get_cached_gscan_results()
|
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/ |
D | loc_api_cb.xdr | 58 * These are struct declaratios for the function results
|
D | loc_api.xdr | 83 * These are struct declarations for the function results
|
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-1240/ |
D | loc_api_cb.xdr | 58 * These are struct declaratios for the function results
|
D | loc_api.xdr | 83 * These are struct declarations for the function results
|
/hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/gen-1240/ |
D | loc_api_cb.xdr | 58 * These are struct declaratios for the function results
|
D | loc_api.xdr | 83 * These are struct declarations for the function results
|
/hardware/intel/common/libva/test/basic/ |
D | testplan.txt | 25 - Check if results for vaGetConfigAttributes match with vaQueryConfigAttributes for
|
/hardware/intel/common/libmix/mix_common/ |
D | INSTALL | 29 the results of its tests to speed up reconfiguring. Caching is 37 some point `config.cache' contains results you don't want to keep, you 114 may have to build one architecture at a time and combine the results 260 Enable the cache: use and save the results of the tests in FILE,
|
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/ |
D | loc_api_cb.xdr | 67 * These are struct declaratios for the function results
|
/hardware/qcom/gps/msm8994/loc_api/libloc_api-rpc/gen-3200/ |
D | loc_api_cb.xdr | 67 * These are struct declaratios for the function results
|
/hardware/interfaces/biometrics/fingerprint/2.1/ |
D | IBiometricsFingerprintClientCallback.hal | 19 /* This HAL interface communicates asynchronous results from the
|