Home
last modified time | relevance | path

Searched refs:isDebug (Results 1 – 17 of 17) sorted by relevance

/frameworks/base/services/wallpapereffectsgeneration/java/com/android/server/wallpapereffectsgeneration/
DWallpaperEffectsGenerationPerUserService.java113 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/
DMotionPredictor.cpp51 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()
DVirtualInputDevice.cpp37 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/
DSmartspacePerUserService.java183 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/
DBiometricFrameworkStatsLogger.java54 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/
DSearchUiPerUserService.java188 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/
DAppPredictionPerUserService.java231 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/
DprocessArgs.ts18 isDebug: myArgs.includes('debug'),
DmigrationList.ts61 replaceToken: ProcessArgs.isDebug ? migrationToken : materialToken,
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/udfps/
DEllipseOverlapDetector.kt33 private const val isDebug = false constant
88 if (isDebug) { in isGoodOverlap()
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
DPluginsModule.java72 @Named(PLUGIN_DEBUG) boolean isDebug) { in providesPluginInstanceFactory() argument
78 isDebug); in providesPluginInstanceFactory()
/frameworks/native/services/sensorservice/
DSensorService.h420 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);
DSensorService.cpp538 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/
DPluginInstance.java227 boolean isDebug) { in Factory() argument
232 mIsDebug = isDebug; in Factory()
/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/
DRemoteContext.java114 public boolean isDebug() { in isDebug() method in RemoteContext
/frameworks/base/services/core/java/com/android/server/infra/
DAbstractPerUserSystemService.java377 public final boolean isDebug() { in isDebug() method in AbstractPerUserSystemService
/frameworks/base/services/core/java/com/android/server/pm/
DSettings.java3033 final boolean isDebug = ps.getPkg().isDebuggable();
3068 sb.append(isDebug ? " 1 " : " 0 ");