Home
last modified time | relevance | path

Searched refs:setDebugParams (Results 1 – 11 of 11) sorted by relevance

/aosp12/hardware/interfaces/wifi/supplicant/1.0/vts/functional/
H A Dsupplicant_hidl_test.cpp139 supplicant_->setDebugParams(level, in TEST_P()
156 supplicant_->setDebugParams(level, in TEST_P()
174 supplicant_->setDebugParams(level, in TEST_P()
192 supplicant_->setDebugParams(level, in TEST_P()
H A Dsupplicant_hidl_test_utils.cpp307 supplicant->setDebugParams( in turnOnExcessiveLogging()
/aosp12/hardware/interfaces/wifi/supplicant/1.0/
H A DISupplicant.hal31 * (via |setDebugParams|) will be logged.
121 setDebugParams(DebugLevel level, bool showTimestamp, bool showKeys)
/aosp12/hardware/interfaces/wifi/hostapd/1.2/
H A Dtypes.hal63 * (via |setDebugParams|) will be logged.
H A DIHostapd.hal215 setDebugParams(DebugLevel level)
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DHostapdHalTest.java791 when(mIHostapdMockV12.setDebugParams(anyInt())) in executeAndValidateInitializationSequenceV1_2()
831 when(mIHostapdMockV12.setDebugParams(anyInt())) in executeAndValidateInitializationSequenceV1_3()
981 when(mIHostapdMockV12.setDebugParams(anyInt())) in testSetLogLevel()
986 .setDebugParams(eq(DebugLevel.DEBUG)); in testSetLogLevel()
990 .setDebugParams(eq(DebugLevel.INFO)); in testSetLogLevel()
H A DSupplicantStaIfaceHalTest.java1612 when(mISupplicantMock.setDebugParams(anyInt(), anyBoolean(), anyBoolean())) in testSetLogLevel()
1623 .setDebugParams(eq(ISupplicant.DebugLevel.DEBUG), eq(false), eq(false)); in testSetLogLevel()
1633 when(mISupplicantMock.setDebugParams(anyInt(), anyBoolean(), anyBoolean())) in testSetLogLevelWithShowKeyEnabled()
1641 .setDebugParams(eq(ISupplicant.DebugLevel.DEBUG), eq(false), eq(true)); in testSetLogLevelWithShowKeyEnabled()
1651 when(mISupplicantMock.setDebugParams(anyInt(), anyBoolean(), anyBoolean())) in testVerboseLoggingDisabledWithShowKeyEnabled()
1659 .setDebugParams(eq(ISupplicant.DebugLevel.INFO), eq(false), eq(false)); in testVerboseLoggingDisabledWithShowKeyEnabled()
/aosp12/hardware/interfaces/wifi/hostapd/1.2/vts/functional/
H A Dhostapd_hidl_test.cpp453 auto status = HIDL_INVOKE(hostapd_, setDebugParams, DebugLevel::EXCESSIVE); in TEST_P()
/aosp12/hardware/interfaces/wifi/hostapd/1.3/vts/functional/
H A Dhostapd_hidl_test.cpp70 HIDL_INVOKE(hostapd_, setDebugParams, DebugLevel::EXCESSIVE); in SetUp()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DSupplicantStaIfaceHal.java2599 return setDebugParams(logLevel, false, in setLogLevel()
2605 private boolean setDebugParams(int level, boolean showTimestamp, boolean showKeys) { in setDebugParams() method in SupplicantStaIfaceHal
2611 mISupplicant.setDebugParams(level, showTimestamp, showKeys); in setDebugParams()
H A DHostapdHal.java1270 iHostapdV1_2.setDebugParams(mVerboseLoggingEnabled in setLogLevel()