Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DHostapdHalAidlImp.java145 setDebugParams(); in enableVerboseLogging()
528 if (!setDebugParams()) return false; in startDaemon()
585 private boolean setDebugParams() { in setDebugParams() method in HostapdHalAidlImp
592 mIHostapd.setDebugParams(mVerboseHalLoggingEnabled in setDebugParams()
DHostapdHalHidlImp.java151 setDebugParams(); in enableVerboseLogging()
391 return setDebugParams(); in initHostapdService()
1312 private boolean setDebugParams() { in setDebugParams() method in HostapdHalHidlImp
1322 iHostapdV1_2.setDebugParams(mVerboseHalLoggingEnabled in setDebugParams()
DSupplicantStaIfaceHalAidlImpl.java2343 return setDebugParams(logLevel, false, in setLogLevel()
2358 private boolean setDebugParams(int level, boolean showTimestamp, boolean showKeys) { in setDebugParams() method in SupplicantStaIfaceHalAidlImpl
2365 mISupplicant.setDebugParams(level, showTimestamp, showKeys); in setDebugParams()
DSupplicantStaIfaceHalHidlImpl.java2652 return setDebugParams(logLevel, false, in setLogLevel()
2658 private boolean setDebugParams(int level, boolean showTimestamp, boolean showKeys) { in setDebugParams() method in SupplicantStaIfaceHalHidlImpl
2664 mISupplicant.setDebugParams(level, showTimestamp, showKeys); in setDebugParams()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DHostapdHalAidlImpTest.java611 doNothing().when(mIHostapdMock).setDebugParams(anyInt()); in executeAndValidateInitializationSequence()
643 doThrow(new RemoteException()).when(mIHostapdMock).setDebugParams(anyInt()); in testServiceInitializationSetDebugParamFailed()
737 doNothing().when(mIHostapdMock).setDebugParams(anyInt()); in testSetLogLevel()
741 .setDebugParams(eq(DebugLevel.DEBUG)); in testSetLogLevel()
745 .setDebugParams(eq(DebugLevel.INFO)); in testSetLogLevel()
DHostapdHalHidlImpTest.java793 when(mIHostapdMockV12.setDebugParams(anyInt())) in executeAndValidateInitializationSequenceV1_2()
833 when(mIHostapdMockV12.setDebugParams(anyInt())) in executeAndValidateInitializationSequenceV1_3()
896 when(mIHostapdMockV12.setDebugParams(anyInt())).thenThrow(new RemoteException()).thenReturn( in testServiceInitializationSetDebugParamFailed()
1026 when(mIHostapdMockV12.setDebugParams(anyInt())) in testSetLogLevel()
1031 .setDebugParams(eq(DebugLevel.DEBUG)); in testSetLogLevel()
1035 .setDebugParams(eq(DebugLevel.INFO)); in testSetLogLevel()
DSupplicantStaIfaceHalAidlImplTest.java324 .setDebugParams(eq(DebugLevel.INFO), eq(false), eq(false)); in testDuplicateSetupIface_Fails()
1643 doNothing().when(mISupplicantMock).setDebugParams(anyInt(), anyBoolean(), anyBoolean()); in testSetLogLevel()
1653 .setDebugParams(eq(DebugLevel.DEBUG), eq(false), eq(false)); in testSetLogLevel()
1663 doNothing().when(mISupplicantMock).setDebugParams(anyInt(), anyBoolean(), anyBoolean()); in testSetLogLevelWithShowKeyEnabled()
1670 .setDebugParams(eq(DebugLevel.DEBUG), eq(false), eq(true)); in testSetLogLevelWithShowKeyEnabled()
1680 doNothing().when(mISupplicantMock).setDebugParams(anyInt(), anyBoolean(), anyBoolean()); in testVerboseLoggingDisabledWithShowKeyEnabled()
1687 .setDebugParams(eq(DebugLevel.INFO), eq(false), eq(false)); in testVerboseLoggingDisabledWithShowKeyEnabled()
DSupplicantStaIfaceHalHidlImplTest.java452 .setDebugParams(eq(DebugLevel.INFO), eq(false), eq(false)); in testDuplicateSetupIfaceV1_1_Fails()
1958 when(mISupplicantMock.setDebugParams(anyInt(), anyBoolean(), anyBoolean())) in testSetLogLevel()
1969 .setDebugParams(eq(ISupplicant.DebugLevel.DEBUG), eq(false), eq(false)); in testSetLogLevel()
1979 when(mISupplicantMock.setDebugParams(anyInt(), anyBoolean(), anyBoolean())) in testSetLogLevelWithShowKeyEnabled()
1987 .setDebugParams(eq(ISupplicant.DebugLevel.DEBUG), eq(false), eq(true)); in testSetLogLevelWithShowKeyEnabled()
1997 when(mISupplicantMock.setDebugParams(anyInt(), anyBoolean(), anyBoolean())) in testVerboseLoggingDisabledWithShowKeyEnabled()
2005 .setDebugParams(eq(ISupplicant.DebugLevel.INFO), eq(false), eq(false)); in testVerboseLoggingDisabledWithShowKeyEnabled()
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/
DSupplicantP2pIfaceHalAidlImpl.java146 return setDebugParams(logLevel, false, in setLogLevel()
152 private boolean setDebugParams(int level, boolean showTimestamp, boolean showKeys) { in setDebugParams() method in SupplicantP2pIfaceHalAidlImpl
159 mISupplicant.setDebugParams(level, showTimestamp, showKeys); in setDebugParams()
DSupplicantP2pIfaceHalHidlImpl.java168 return setDebugParams(logLevel, false, in setLogLevel()
174 private boolean setDebugParams(int level, boolean showTimestamp, boolean showKeys) { in setDebugParams() method in SupplicantP2pIfaceHalHidlImpl
182 mISupplicant.setDebugParams(level, showTimestamp, showKeys); in setDebugParams()