Home
last modified time | relevance | path

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

/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/storage/
DSetupParametersService.java80 public boolean isDebuggingAllowed() {
81 return SetupParameters.isDebuggingAllowed(mContext);
DSetupParametersClient.java193 public ListenableFuture<Boolean> isDebuggingAllowed() {
194 return call(() -> asInterface(getService()).isDebuggingAllowed());
DISetupParametersService.aidl32 boolean isDebuggingAllowed(); in isDebuggingAllowed() method
DSetupParameters.java114 KEY_ALLOW_DEBUGGING, isDebuggingAllowed(context), in dumpParameters()
217 static boolean isDebuggingAllowed(Context context) { in isDebuggingAllowed() method in SetupParameters
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/provision/grpc/
DGetDeviceCheckInStatusGrpcResponse.java110 public abstract boolean isDebuggingAllowed(); in isDebuggingAllowed() method in GetDeviceCheckInStatusGrpcResponse
/packages/modules/DeviceLock/DeviceLockController/tests/robolectric/src/com/android/devicelockcontroller/storage/
DSetupParametersServiceTest.java57 assertThat(mISetupParametersService.isDebuggingAllowed()).isEqualTo(ALLOW_DEBUGGING); in createPrefs_shouldPopulatePrefs()
DSetupParametersTest.java51 assertThat(SetupParameters.isDebuggingAllowed(mContext)).isEqualTo(ALLOW_DEBUGGING); in createPrefs_shouldPopulatePreferences()
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/provision/grpc/impl/
DGetDeviceCheckInStatusGrpcResponseWrapper.java168 public boolean isDebuggingAllowed() { in isDebuggingAllowed() method in GetDeviceCheckInStatusGrpcResponseWrapper
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/policy/
DUserRestrictionsPolicyHandler.java137 ? Futures.immediateFuture(true) : parameters.isDebuggingAllowed();
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/debug/
DDeviceCheckInClientDebug.java192 public boolean isDebuggingAllowed() { in getDeviceCheckInStatus() method in DeviceCheckInClientDebug
/packages/modules/DeviceLock/DeviceLockController/src/com/android/devicelockcontroller/provision/worker/
DDeviceCheckInHelper.java257 provisionBundle.putBoolean(EXTRA_ALLOW_DEBUGGING, response.isDebuggingAllowed()); in handleProvisionReadyResponse()