/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | termiosndk.cpp | 51 napi_value results = nullptr;
in Tcdrain() local 52 napi_create_int32(env, result, &results);
in Tcdrain() 53 return results;
in Tcdrain() 78 napi_value results = nullptr;
in Tcflow() local 79 napi_create_int32(env, result, &results);
in Tcflow() 80 return results;
in Tcflow() 103 napi_value results = nullptr;
in Tcflush() local 104 napi_create_int32(env, result, &results);
in Tcflush() 105 return results;
in Tcflush() 122 napi_value results in Tcgetattr() local 147 napi_value results = nullptr; Tcgetsid() local 166 napi_value results = nullptr; Tcsendbreak() local 188 napi_value results = nullptr; Tcsetattr() local [all...] |
H A D | threadsndk.cpp | 61 napi_value results = nullptr;
in Thrd_create() local 62 napi_create_int32(env, result, &results);
in Thrd_create() 63 return results;
in Thrd_create() 134 napi_value results = nullptr;
in Thrd_exit() local 135 napi_create_int32(env, result, &results);
in Thrd_exit() 136 return results;
in Thrd_exit()
|
H A D | socketndk.cpp | 64 napi_value results = nullptr;
in Socket() local 65 napi_create_int32(env, result, &results);
in Socket() 66 return results;
in Socket() 73 napi_value results = nullptr;
in Socketpair() local 74 napi_create_int32(env, result, &results);
in Socketpair() 75 return results;
in Socketpair()
|
H A D | timendk.cpp | 310 napi_value results = nullptr;
in Timer_settime() local 311 napi_create_int32(env, result, &results);
in Timer_settime() 312 return results;
in Timer_settime()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/tests/kutf/ |
H A D | kutf_resultset.c | 27 * struct kutf_result_set - Represents a set of results. 28 * @results: Pointer to the linked list where the results are stored. 31 struct list_head results; member 44 INIT_LIST_HEAD(&set->results); in kutf_create_result_set() 72 list_add_tail(&new_result->node, &set->results); in kutf_add_result() 77 if (!list_empty(&set->results)) in kutf_destroy_result_set() 78 pr_err("kutf_destroy_result_set: Unread results from test\n"); in kutf_destroy_result_set() 85 if (!list_empty(&set->results)) { in kutf_remove_result() 88 ret = list_first_entry(&set->results, struc in kutf_remove_result() [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tests/kutf/ |
H A D | kutf_resultset.c | 47 INIT_LIST_HEAD(&set->results); in kutf_create_result_set() 80 list_add_tail(&new_result->node, &set->results); in kutf_add_result() 91 if (!list_empty(&set->results)) in kutf_destroy_result_set() 92 pr_err("kutf_destroy_result_set: Unread results from test\n"); in kutf_destroy_result_set() 103 /* Pretend there are results if waiting for input */ in kutf_has_result() 106 has_result = !list_empty(&set->results); in kutf_has_result() 126 if (!list_empty(&set->results)) { in kutf_remove_result() 127 result = list_first_entry(&set->results, in kutf_remove_result()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/components/at/src/ |
H A D | at_wifi.c | 193 * Func description: wpa get scan results 203 hi_wifi_ap_info *results = malloc(sizeof(hi_wifi_ap_info) * WIFI_SCAN_AP_LIMIT); in cmd_wpa_scan_results() local 204 if (results == HI_NULL) { in cmd_wpa_scan_results() 208 memset_s(results, sizeof(hi_wifi_ap_info) * WIFI_SCAN_AP_LIMIT, 0, sizeof(hi_wifi_ap_info) * WIFI_SCAN_AP_LIMIT); in cmd_wpa_scan_results() 210 hi_s32 ret = hi_wifi_sta_scan_results(results, &num); in cmd_wpa_scan_results() 212 free(results); in cmd_wpa_scan_results() 217 if ((results[ul_loop].auth < HI_WIFI_SECURITY_OPEN) || (results[ul_loop].auth > HI_WIFI_SECURITY_UNKNOWN)) { in cmd_wpa_scan_results() 218 results[ul_loop].auth = HI_WIFI_SECURITY_UNKNOWN; in cmd_wpa_scan_results() 222 if (results[ul_loo in cmd_wpa_scan_results() [all...] |
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tests/mali_kutf_irq_test/ |
H A D | mali_kutf_irq_test_main.c | 174 * the results are in the latencies provided with the test result. There is no 184 const char *results; in mali_kutf_irq_latency() local 224 results = kutf_dsprintf(&context->fixture_pool, in mali_kutf_irq_latency() 227 kutf_test_pass(context, results); in mali_kutf_irq_latency() 229 results = kutf_dsprintf(&context->fixture_pool, in mali_kutf_irq_latency() 232 kutf_test_fail(context, results); in mali_kutf_irq_latency()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/tests/mali_kutf_irq_test/ |
H A D | mali_kutf_irq_test_main.c | 163 * the results are in the latencies provided with the test result. There is no 217 const char *results; in mali_kutf_irq_latency() local 220 results = kutf_dsprintf(&context->fixture_pool, in mali_kutf_irq_latency() 223 kutf_test_pass(context, results); in mali_kutf_irq_latency()
|
/test/testfwk/xdevice/plugins/devicetest/utils/ |
H A D | util.py | 288 results = out.strip("\r\n") 289 if results: 290 results = results.split("\r\n") 291 for result in results:
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/tests/include/kutf/ |
H A D | kutf_resultset.h | 26 * Functions and structures for handling test results and result sets. 35 * results. 53 * @KUTF_RESULT_TEST_FINISHED: The test has finished, no more results will 88 * @node: Next result in the list of results. 102 * waiting for user data. Attempts to dequeue results when this flag is set 109 * struct kutf_result_set - Represents a set of results. 110 * @results: List head of a struct kutf_result list for storing the results 111 * @waitq: Wait queue signalled whenever new results are added. 115 struct list_head results; member [all...] |
/test/testfwk/xdevice/src/xdevice/_core/resource/template/static/components/ |
H A D | caseTable.js | 127 let results = []; 130 results.push({ suiteName, name, result, time, error }); 132 this.pageCaseList = results;
|
/test/testfwk/xdevice/src/xdevice/_core/report/ |
H A D | suite_reporter.py | 51 def __init__(self, results, report_name, report_path=None, **kwargs): 54 :param results: [(suite_result, [case_results]), 59 self.results = results 72 if len(self.results) != 1: 75 suite_result, _ = self.results[0] 133 for suite_result, case_results in self.results:
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | dhd_pno.c | 303 /* Cleanup all results */ 1815 /* All results consumed/No results cached?? in dhd_wait_batch_results_complete() 1816 * Get fresh results from FW in dhd_wait_batch_results_complete() 1819 DHD_PNO(("%s: No results cached, getting from FW..\n", __FUNCTION__)); in dhd_wait_batch_results_complete() 2062 /* Clear any pre-existing results in our cache in dhd_pno_set_for_gscan() 2503 /* Cleanup any consumed results 2504 * Return TRUE if all results consumed else FALSE 2608 /* Ok, now lets start getting results from the FW */ in _dhd_pno_get_gscan_batch_from_fw() 2614 DHD_ERROR(("%s : Cannot get all the batch results, er in _dhd_pno_get_gscan_batch_from_fw() 2908 gscan_results_cache_t *iter, *results; dhd_get_gscan_batch_results() local 4042 dhd_epno_results_t *results = NULL; dhd_pno_process_epno_result() local [all...] |
H A D | wl_iw.c | 1219 /* Get scan results (too large to put on the stack) */ in wl_iw_get_aplist() 1226 WL_ERROR(("%d: Scan results error %d\n", __LINE__, error)); in wl_iw_get_aplist() 1307 /* Get scan results (too large to put on the stack) */ in wl_iw_iscan_get_aplist() 1309 list = &((wl_iscan_results_t*)buf->iscan_buf)->results; in wl_iw_iscan_get_aplist() 1686 /* Get scan results (too large to put on the stack) */ in wl_iw_get_scan() 1833 /* Get scan results */ in wl_iw_iscan_get_scan() 1835 list = &((wl_iscan_results_t*)p_buf->iscan_buf)->results; in wl_iw_iscan_get_scan() 4066 wl_scan_results_t *results; in wl_iw_iscan_get() local 4091 results = &list_buf->results; in wl_iw_iscan_get() [all...] |
H A D | wl_escan.c | 684 wl_scan_results_t *results; in wl_escan_prep() local 699 results = wl_escan_get_buf(escan); in wl_escan_prep() 700 results->version = 0; in wl_escan_prep() 701 results->count = 0; in wl_escan_prep() 702 results->buflen = WL_SCAN_RESULTS_FIXED_SIZE; in wl_escan_prep() 851 "bss_list is null. Didn't receive any partial scan results\n"); in wl_escan_timeout() 1213 bss_list = &escan->g_bss_cache_ctrl.m_cache_head->results; in wl_escan_get_scan() 1223 bi = node->results.bss_info; in wl_escan_get_scan()
|
H A D | wl_android_ext.c | 7072 bi = node->results.bss_info; in wl_ext_get_best_channel() 7726 i, &node->results.bss_info->BSSID); in wl_free_bss_cache() 7758 i, &node->results.bss_info->BSSID, in wl_delete_dirty_bss_cache() 7759 dtoh16(node->results.bss_info->RSSI), node->results.bss_info->SSID); in wl_delete_dirty_bss_cache() 7786 if (!memcmp(&node->results.bss_info->BSSID, bssid, ETHER_ADDR_LEN)) { in wl_delete_disconnected_bss_cache() 7795 i, &node->results.bss_info->BSSID, in wl_delete_disconnected_bss_cache() 7796 dtoh16(node->results.bss_info->RSSI), node->results.bss_info->SSID); in wl_delete_disconnected_bss_cache() 7837 rssi = wl_get_avg_rssi(rssi_cache_ctrl, &node->results in dump_bss_cache() [all...] |
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | abs.py | 234 def _generate_data_report(self, result_dir, results, name, **kwargs): 252 def _generate_data_report(cls, result_dir, results, name, **kwargs): 253 suite_report = SuiteReporter(results, name, result_dir, **kwargs) 265 def _generate_data_report(cls, result_dir, results, name, **kwargs): 266 suite_report = SuiteReporter(results, name, result_dir, **kwargs)
|
H A D | listener.py | 148 results = [(suite, list(self.tests.values()))] 149 self._generate_data_report(result_dir, results, suite.suite_name)
|
/test/xts/acts/pcs/pcs_ndk/entry/src/main/cpp/ |
H A D | pcsNetworkTest.cpp | 44 napi_value results = nullptr;
in Socket() local 45 napi_create_int32(env, result, &results);
in Socket() 46 return results;
in Socket()
|
/test/xts/acts/applications/kitframework_ipcamera/ |
H A D | kitfwk_oem_api_test.cpp | 122 bool results = OEMIsOverTemperatureLimit();
in HWTEST_F() local 123 ASSERT_EQ(0, results) << "OEMIsOverTemperatureLimit should fail in normal state" << "\n";
in HWTEST_F()
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/tests/include/kutf/ |
H A D | kutf_resultset.h | 22 * Functions and structures for handling test results and result sets. 31 * results. 74 * @node: Next result in the list of results. 86 * to which results can be added. 107 * Return: result or NULL if there are no further results in the resultset. 115 * @results: The result set whose resources to free. 117 void kutf_destroy_result_set(struct kutf_result_set *results);
|
/test/xts/dcts/multimedia/avsession/src/main/js/test/ |
H A D | testService.js | 20 var results;
variable
|
/test/xts/dcts/ability/dmsfwk/dmsfwk/src/main/js/test/ |
H A D | testService.js | 21 var results;
variable
|
/test/xts/acts/applications/kitframework/ |
H A D | kitfwk_oem_api_test.c | 126 bool results = OEMIsOverTemperatureLimit();
variable 127 TEST_ASSERT_EQUAL_INT_MESSAGE(0, results, "OEMIsOverTemperatureLimit should fail in normal state");
|