Home
last modified time | relevance | path

Searched refs:mTestMode (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
H A DCellBroadcastChannelManagerTest.java80 assertFalse(list.get(0).mTestMode); in testGetCellBroadcastChannelRanges()
90 assertFalse(list.get(1).mTestMode); in testGetCellBroadcastChannelRanges()
101 assertFalse(list.get(2).mTestMode); in testGetCellBroadcastChannelRanges()
112 assertTrue(list.get(3).mTestMode); in testGetCellBroadcastChannelRanges()
122 assertFalse(list.get(4).mTestMode); in testGetCellBroadcastChannelRanges()
132 assertFalse(list.get(5).mTestMode); in testGetCellBroadcastChannelRanges()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBatteryControllerImpl.java82 private boolean mTestMode = false; field in BatteryControllerImpl
173 if (mTestMode && !intent.getBooleanExtra("testmode", false)) return; in onReceive()
204 mTestMode = true; in onReceive()
214 mTestMode = false; in onReceive()
226 if (!mTestMode) return; in onReceive()
/aosp12/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastChannelManager.java139 public boolean mTestMode; field in CellBroadcastChannelManager.CellBroadcastChannelRange
170 mTestMode = false; in CellBroadcastChannelRange()
243 mTestMode = true; in CellBroadcastChannelRange()
297 + ",display=" + mDisplay + ",testMode=" + mTestMode + ",mAlwaysOn=" in toString()
H A DCellBroadcastAlertService.java293 if (range != null && range.mTestMode && !CellBroadcastReceiver.isTestingMode(mContext)) { in shouldDisplayMessage()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
H A DSapServer.java99 private int mTestMode = SapMessage.INVALID_VALUE; // used to set the RIL in test mode field in SapServer
178 mTestMode = testMode; in setTestMode()
680 if (mTestMode != SapMessage.INVALID_VALUE) { in handleMessage()
683 rilTestModeReq.setTestMode(mTestMode); in handleMessage()
685 mTestMode = SapMessage.INVALID_VALUE; in handleMessage()
H A DSapMessage.java187 private int mTestMode = INVALID_VALUE; field in SapMessage
326 return mTestMode; in getTestMode()
330 this.mTestMode = testMode; in setTestMode()
/aosp12/packages/modules/Connectivity/services/core/java/com/android/server/
H A DConnectivityService.java292 private boolean mTestMode; field in ConnectivityService
797 mTestMode = SystemProperties.get("cm.test.mode").equals("true") in ConnectivityService()