Searched refs:ifNames (Results 1 - 5 of 5) sorted by relevance
/test/xts/hats/hdf/wlan/wifi/client/ |
H A D | hdf_client_test.cpp | 275 char *ifNames = nullptr; 281 ret = GetIfNamesByChipId(chipIdInvalid, &ifNames, &num); 283 ret = GetIfNamesByChipId(chipId, &ifNames, &num); 284 EXPECT_NE(ifNames, nullptr); 286 free(ifNames);
|
/test/xts/hats/hdf/wlan/wifi/hal/ |
H A D | wifi_hal_test.cpp | 1047 * @tc.desc: Obtain all ifNames and the number of the current chip_01 1054 char *ifNames = nullptr; in HWTEST_F() local 1069 EXPECT_EQ(0, strncmp("wlan", ifNames + i * MAX_IF_NAME_LENGTH, SIZE)); in HWTEST_F() 1071 free(ifNames); in HWTEST_F() 1080 * @tc.desc: Obtain all ifNames and the number of the current chip_02 1087 char *ifNames = nullptr; 1098 ret = staFeature->baseFeature.getIfNamesByChipId(100, &ifNames, &num); 1102 EXPECT_EQ(0, strncmp("wlan", ifNames + i * MAX_IF_NAME_LENGTH, SIZE)); 1104 free(ifNames); 1112 * @tc.desc: Obtain all ifNames an [all...] |
/test/xts/hats/hdf/wlan/hdi_service/ |
H A D | wlan_hdi_direct_test.cpp | 293 char ifNames[IFNAMSIZ] = {0};
in HWTEST_F() local 297 rc = g_wlanObj->GetIfNamesByChipId(g_wlanObj, chipId, ifNames, IFNAMSIZ, nullptr);
in HWTEST_F() 299 rc = g_wlanObj->GetIfNamesByChipId(g_wlanObj, chipId, ifNames, IFNAMSIZ, &num);
in HWTEST_F() 311 char ifNames[IFNAMSIZ] = {0};
in HWTEST_F() local 315 int32_t rc = g_wlanObj->GetNetworkIfaceName(g_wlanObj, nullptr, ifNames, IFNAMSIZ);
in HWTEST_F() 318 rc = g_wlanObj->GetNetworkIfaceName(g_wlanObj, &ifeature, ifNames, IFNAMSIZ);
in HWTEST_F() 323 rc = g_wlanObj->GetNetworkIfaceName(g_wlanObj, &ifeature, ifNames, IFNAMSIZ);
in HWTEST_F()
|
H A D | wlan_hdi_hal_services_c_test.cpp | 140 char ifNames[IFNAMSIZ] = {0};
in HWTEST_F() local 144 rc = g_wlanObj->GetNetworkIfaceName(g_wlanObj, &ifeature, ifNames, IFNAMSIZ);
in HWTEST_F() 285 char ifNames[IFNAMSIZ] = {0};
in HWTEST_F() local 291 rc = g_wlanObj->GetIfNamesByChipId(g_wlanObj, chipIdInvalid, ifNames, IFNAMSIZ, &num);
in HWTEST_F() 293 rc = g_wlanObj->GetIfNamesByChipId(g_wlanObj, chipId, ifNames, IFNAMSIZ, &num);
in HWTEST_F() 294 printf("ifnames = %s\n", ifNames);
in HWTEST_F() 1047 char ifNames[IFNAMSIZ] = {0};
in HWTEST_F() local 1051 rc = g_wlanObj->GetNetworkIfaceName(g_wlanObj, &ifeature, ifNames, IFNAMSIZ);
in HWTEST_F()
|
/test/xts/hats/hdf/wlan/wlanBenchmarkTest/ |
H A D | hdf_wifi_benchmark_test.cpp | 519 * @tc.desc: Obtain all ifNames and the number of the current chip
529 char *ifNames = nullptr;
in BENCHMARK_F() local 542 ret = staFeature->baseFeature.getIfNamesByChipId(chipId, &ifNames, &num);
in BENCHMARK_F() 544 EXPECT_NE(nullptr, ifNames);
in BENCHMARK_F() 548 EXPECT_EQ(0, strncmp("wlan", ifNames + i * MAX_IF_NAME_LENGTH, SIZE));
in BENCHMARK_F() 550 free(ifNames);
in BENCHMARK_F()
|
Completed in 7 milliseconds