Home
last modified time | relevance | path

Searched refs:mBugreportManager (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiDiagnosticsTest.java75 @Mock BugreportManager mBugreportManager; field in WifiDiagnosticsTest
135 when(mContext.getSystemService(BugreportManager.class)).thenReturn(mBugreportManager); in setUp()
879 verify(mBugreportManager, times(1)).requestBugreport(any(), any(), any());
885 doThrow(new RuntimeException()).when(mBugreportManager).requestBugreport(
888 verify(mBugreportManager, times(1)).requestBugreport(any(), any(), any());
895 verify(mBugreportManager, never()).requestBugreport(any(), any(), any());
904 verify(mBugreportManager, times(1)).requestBugreport(any(), any(), any());
908 verify(mBugreportManager, times(1)).requestBugreport(any(), any(), any());
919 verify(mBugreportManager, never()).requestBugreport(any(), any(), any());
/frameworks/base/packages/Shell/src/com/android/shell/
DBugreportProgressService.java236 private BugreportManager mBugreportManager; field in BugreportProgressService
627 mBugreportManager = (BugreportManager) mContext.getSystemService( in startBugreportAPI()
638 mBugreportManager.startBugreport(bugreportFd, screenshotFd, in startBugreportAPI()
819 mBugreportManager.cancelBugreport(); in cancel()