/frameworks/base/services/wallpapereffectsgeneration/java/com/android/server/wallpapereffectsgeneration/ |
D | WallpaperEffectsGenerationPerUserService.java | 113 if (isDebug()) { in onGenerateCinematicEffectLocked() 128 if (isDebug()) { in onGenerateCinematicEffectLocked() 135 if (isDebug()) { in onGenerateCinematicEffectLocked() 173 if (isDebug()) { in onPackageUpdatedLocked() 180 if (isDebug()) { in onPackageRestartedLocked() 191 if (isDebug()) { in destroyAndRebindRemoteService() 198 if (isDebug()) { in destroyAndRebindRemoteService() 225 if (isDebug()) { in invokeCinematicListenerAndCleanup() 231 if (isDebug()) { in invokeCinematicListenerAndCleanup()
|
/frameworks/native/libs/input/ |
D | MotionPredictor.cpp | 51 bool isDebug() { in isDebug() function 177 ALOGD_IF(isDebug(), "End of event stream"); in record() 183 ALOGD_IF(isDebug(), "Skipping unsupported %s action", in record() 189 ALOGD_IF(isDebug(), "Prediction not supported for multiple pointers"); in record() 195 ALOGD_IF(isDebug(), "Prediction not supported for non-stylus tool: %s", in record() 244 if (isDebug()) { in predict() 271 ALOGD_IF(isDebug(), in predict() 299 ALOGD_IF(isDebug(), "prediction %zu: %f, %f", i, predictedPoint.x, predictedPoint.y); in predict() 347 ALOGD_IF(isDebug(), "Prediction not available due to flag override"); in isPredictionAvailable() 353 ALOGD_IF(isDebug(), "Prediction not available for non-stylus source: %s", in isPredictionAvailable()
|
D | VirtualInputDevice.cpp | 37 static bool isDebug() { in isDebug() function 372 ALOGD_IF(isDebug(), "Pointer %d erased from the touchscreen %d", pointerId, mFd.get()); in handleTouchUp() 380 ALOGD_IF(isDebug(), "No pointers on touchscreen %d, BTN UP event sent.", mFd.get()); in handleTouchUp() 394 ALOGD_IF(isDebug(), "First pointer %d down under touchscreen %d, BTN DOWN event sent", in handleTouchDown() 399 ALOGD_IF(isDebug(), "Added pointer %d under touchscreen %d in the map", pointerId, mFd.get()); in handleTouchDown()
|
/frameworks/base/services/smartspace/java/com/android/server/smartspace/ |
D | SmartspacePerUserService.java | 183 if (isDebug()) { in onDestroyLocked() 194 if (isDebug()) { in onFailureOrTimeout() 202 if (isDebug()) { in onConnectedStateChanged() 222 if (isDebug()) { in onServiceDied() 240 if (isDebug()) { in onPackageUpdatedLocked() 247 if (isDebug()) { in onPackageRestartedLocked() 258 if (isDebug()) { in destroyAndRebindRemoteService() 269 if (isDebug()) { in destroyAndRebindRemoteService() 282 if (isDebug()) { in resurrectSessionsLocked()
|
/frameworks/base/services/core/java/com/android/server/biometrics/log/ |
D | BiometricFrameworkStatsLogger.java | 54 int statsModality, int statsAction, int statsClient, boolean isDebug, in acquired() argument 64 isDebug, in acquired() 79 int statsModality, int statsAction, int statsClient, boolean isDebug, long latency, in authenticate() argument 89 isDebug, in authenticate() 106 int statsModality, int statsAction, int statsClient, boolean isDebug, long latency, in authenticate() argument 109 authenticate(operationContext, statsModality, statsAction, statsClient, isDebug, in authenticate() 130 int statsModality, int statsAction, int statsClient, boolean isDebug, long latency, in error() argument 140 isDebug, in error()
|
/frameworks/base/services/searchui/java/com/android/server/searchui/ |
D | SearchUiPerUserService.java | 188 if (isDebug()) { in onDestroyLocked() 200 if (isDebug()) { in onFailureOrTimeout() 208 if (isDebug()) { in onConnectedStateChanged() 228 if (isDebug()) { in onServiceDied() 246 if (isDebug()) { in onPackageUpdatedLocked() 253 if (isDebug()) { in onPackageRestartedLocked() 264 if (isDebug()) { in destroyAndRebindRemoteService() 275 if (isDebug()) { in destroyAndRebindRemoteService() 288 if (isDebug()) { in resurrectSessionsLocked()
|
/frameworks/base/services/appprediction/java/com/android/server/appprediction/ |
D | AppPredictionPerUserService.java | 231 if (isDebug()) { in onDestroyPredictionSessionLocked() 255 if (isDebug()) { in onFailureOrTimeout() 263 if (isDebug()) { in onConnectedStateChanged() 283 if (isDebug()) { in onServiceDied() 293 if (isDebug()) { in onPackageUpdatedLocked() 300 if (isDebug()) { in onPackageRestartedLocked() 311 if (isDebug()) { in destroyAndRebindRemoteService() 322 if (isDebug()) { in destroyAndRebindRemoteService() 335 if (isDebug()) { in resurrectSessionsLocked()
|
/frameworks/base/packages/SystemUI/scripts/token_alignment/helpers/ |
D | processArgs.ts | 18 isDebug: myArgs.includes('debug'),
|
D | migrationList.ts | 61 replaceToken: ProcessArgs.isDebug ? migrationToken : materialToken,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/ |
D | EllipseOverlapDetector.kt | 33 private const val isDebug = false constant 88 if (isDebug) { in isGoodOverlap()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/ |
D | PluginsModule.java | 72 @Named(PLUGIN_DEBUG) boolean isDebug) { in providesPluginInstanceFactory() argument 78 isDebug); in providesPluginInstanceFactory()
|
/frameworks/native/services/sensorservice/ |
D | SensorService.h | 420 bool registerSensor(std::shared_ptr<SensorInterface> sensor, bool isDebug = false, 422 bool registerVirtualSensor(std::shared_ptr<SensorInterface> sensor, bool isDebug = false); 423 bool registerDynamicSensorLocked(std::shared_ptr<SensorInterface> sensor, bool isDebug = false);
|
D | SensorService.cpp | 538 bool SensorService::registerSensor(std::shared_ptr<SensorInterface> s, bool isDebug, bool isVirtual, in registerSensor() argument 542 if (mSensors.add(handle, std::move(s), isDebug, isVirtual, deviceId)) { in registerSensor() 551 bool SensorService::registerDynamicSensorLocked(std::shared_ptr<SensorInterface> s, bool isDebug) { in registerDynamicSensorLocked() argument 552 return registerSensor(std::move(s), isDebug); in registerDynamicSensorLocked() 566 bool SensorService::registerVirtualSensor(std::shared_ptr<SensorInterface> s, bool isDebug) { in registerVirtualSensor() argument 567 return registerSensor(std::move(s), isDebug, true); in registerVirtualSensor()
|
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/plugins/ |
D | PluginInstance.java | 227 boolean isDebug) { in Factory() argument 232 mIsDebug = isDebug; in Factory()
|
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/ |
D | RemoteContext.java | 114 public boolean isDebug() { in isDebug() method in RemoteContext
|
/frameworks/base/services/core/java/com/android/server/infra/ |
D | AbstractPerUserSystemService.java | 377 public final boolean isDebug() { in isDebug() method in AbstractPerUserSystemService
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | Settings.java | 3033 final boolean isDebug = ps.getPkg().isDebuggable(); 3068 sb.append(isDebug ? " 1 " : " 0 ");
|