Searched refs:isLoggable (Results 1 - 25 of 203) sorted by relevance

123456789

/frameworks/base/core/tests/coretests/src/android/util/
H A DLogTest.java49 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
50 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.DEBUG));
51 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.INFO));
52 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.WARN));
53 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.ERROR));
54 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.ASSERT));
60 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.VERBOSE));
61 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.DEBUG));
62 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.INFO));
63 Assert.assertTrue(Log.isLoggable(LOG_TA
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DD.java22 public static boolean BUG = Log.isLoggable("volume", Log.DEBUG);
H A DVolumeUI.java34 private static boolean LOGD = Log.isLoggable(TAG, Log.DEBUG);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/debug/
H A DLog.java22 * Additionally, the prefix itself is checked in isLoggable and
59 if (isLoggable(tag, android.util.Log.DEBUG)) {
65 if (isLoggable(tag, android.util.Log.DEBUG)) {
71 if (isLoggable(tag, android.util.Log.ERROR)) {
77 if (isLoggable(tag, android.util.Log.ERROR)) {
83 if (isLoggable(tag, android.util.Log.INFO)) {
89 if (isLoggable(tag, android.util.Log.INFO)) {
95 if (isLoggable(tag, android.util.Log.VERBOSE)) {
101 if (isLoggable(tag, android.util.Log.VERBOSE)) {
107 if (isLoggable(ta
118 private static boolean isLoggable(Tag tag, int level) { method in class:Log
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorResponse.java46 if (Log.isLoggable(TAG, Log.VERBOSE)) {
59 if (Log.isLoggable(TAG, Log.VERBOSE)) {
70 if (Log.isLoggable(TAG, Log.VERBOSE)) {
H A DAbstractAccountAuthenticator.java160 if (Log.isLoggable(TAG, Log.VERBOSE)) {
170 if (Log.isLoggable(TAG, Log.VERBOSE)) {
187 if (Log.isLoggable(TAG, Log.VERBOSE)) {
194 if (Log.isLoggable(TAG, Log.VERBOSE)) {
213 if (Log.isLoggable(TAG, Log.VERBOSE)) {
221 if (Log.isLoggable(TAG, Log.VERBOSE)) {
238 if (Log.isLoggable(TAG, Log.VERBOSE)) {
247 if (Log.isLoggable(TAG, Log.VERBOSE)) {
265 if (Log.isLoggable(TAG, Log.VERBOSE)) {
274 if (Log.isLoggable(TA
[all...]
H A DChooseAccountTypeActivity.java55 if (Log.isLoggable(TAG, Log.VERBOSE)) {
119 if (Log.isLoggable(TAG, Log.VERBOSE)) {
140 if (Log.isLoggable(TAG, Log.WARN)) {
145 if (Log.isLoggable(TAG, Log.WARN)) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDebug.java40 Log.isLoggable("SQLiteLog", Log.VERBOSE);
48 Log.isLoggable("SQLiteStatements", Log.VERBOSE);
57 Log.isLoggable("SQLiteTime", Log.VERBOSE);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncJobService.java66 boolean isLoggable = Log.isLoggable(TAG, Log.VERBOSE);
77 if (isLoggable) {
87 if (Log.isLoggable(TAG, Log.VERBOSE)) {
H A DSyncManager.java286 if (Log.isLoggable(TAG, Log.VERBOSE)) {
294 if (Log.isLoggable(TAG, Log.VERBOSE)) {
349 if (Log.isLoggable(TAG, Log.VERBOSE)) Slog.v(TAG, "sending MESSAGE_ACCOUNTS_UPDATED");
378 if (Log.isLoggable(TAG, Log.VERBOSE)) {
470 if (Log.isLoggable(TAG, Log.VERBOSE)) {
810 final boolean isLoggable = Log.isLoggable(TAG, Log.VERBOSE);
814 if (isLoggable) {
836 if (isLoggable) {
904 if (isLoggable) {
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarBatteryController.java135 if (Log.isLoggable(TAG, Log.DEBUG)) {
140 if (Log.isLoggable(TAG, Log.DEBUG)) {
155 if (Log.isLoggable(TAG, Log.DEBUG)) {
173 if (Log.isLoggable(TAG, Log.DEBUG)) {
201 if (Log.isLoggable(TAG, Log.DEBUG)) {
214 if (Log.isLoggable(TAG, Log.DEBUG)) {
236 if (Log.isLoggable(TAG, Log.DEBUG)) {
/frameworks/ex/common/java/com/android/common/contacts/
H A DDataUsageStatUpdater.java106 if (Log.isLoggable(TAG, Log.DEBUG)) {
156 if (Log.isLoggable(TAG, Log.DEBUG)) {
207 if (Log.isLoggable(TAG, Log.DEBUG)) {
218 if (Log.isLoggable(TAG, Log.DEBUG)) {
226 if (Log.isLoggable(TAG, Log.DEBUG)) {
241 if (Log.isLoggable(TAG, Log.DEBUG)) {
252 if (Log.isLoggable(TAG, Log.DEBUG)) {
/frameworks/base/core/jni/
H A Dandroid_util_Log.cpp46 static jboolean isLoggable(const char* tag, jint level) { function in namespace:android
61 jboolean result = isLoggable(chars, level);
68 return isLoggable(tag, levels.verbose);
119 { "isLoggable", "(Ljava/lang/String;I)Z", (void*) android_util_Log_isLoggable },
/frameworks/base/telecomm/java/android/telecom/
H A DLog.java52 public static boolean DEBUG = isLoggable(android.util.Log.DEBUG);
53 public static boolean INFO = isLoggable(android.util.Log.INFO);
54 public static boolean VERBOSE = isLoggable(android.util.Log.VERBOSE);
55 public static boolean WARN = isLoggable(android.util.Log.WARN);
56 public static boolean ERROR = isLoggable(android.util.Log.ERROR);
345 DEBUG = isLoggable(android.util.Log.DEBUG);
346 INFO = isLoggable(android.util.Log.INFO);
347 VERBOSE = isLoggable(android.util.Log.VERBOSE);
348 WARN = isLoggable(android.util.Log.WARN);
349 ERROR = isLoggable(androi
367 public static boolean isLoggable(int level) { method in class:Log
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DFlpHardwareProvider.java40 private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
H A DSysTrace.java37 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java128 if (!Log.isLoggable(tag, level)) {
143 if (!Log.isLoggable(tag, priority)) {
/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java350 if (Log.isLoggable(FullBackup.TAG_XML_PARSER, Log.VERBOSE)) {
390 if (Log.isLoggable(FullBackup.TAG_XML_PARSER, Log.VERBOSE)) {
395 if (Log.isLoggable(FullBackup.TAG_XML_PARSER, Log.VERBOSE)) {
431 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
447 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
463 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
476 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
483 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
495 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
502 if (Log.isLoggable(TAG_XML_PARSE
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java94 public static boolean isLoggable(String tag, int level) { method in class:Rlog
95 return Log.isLoggable(tag, level);
107 if (pii == null || TextUtils.isEmpty(val) || isLoggable(tag, Log.VERBOSE)) {
/frameworks/support/wear/src/android/support/wear/widget/
H A DSwipeDismissFrameLayout.java228 if (Log.isLoggable(TAG, Log.DEBUG)) {
256 if (Log.isLoggable(TAG, Log.DEBUG)) {
272 if (Log.isLoggable(TAG, Log.DEBUG)) {
/frameworks/base/core/java/android/net/
H A DNetworkRecommendationProvider.java52 private static final boolean VERBOSE = Build.IS_DEBUGGABLE && Log.isLoggable(TAG, Log.VERBOSE);
/frameworks/base/core/java/android/util/
H A DTimingLogger.java51 * The Log tag to use for checking Log.isLoggable and for
59 /** Used to track whether Log.isLoggable was enabled at reset time. */
70 * the specific tag. If the Log.isLoggable is not enabled to at
82 * the specific tag. If the Log.isLoggable is not enabled to at
98 * Log.isLoggable is not enabled to at least the Log.VERBOSE
103 mDisabled = !Log.isLoggable(mTag, Log.VERBOSE);
117 * Log.isLoggable was not enabled to at least the Log.VERBOSE for
130 * Dumps the timings to the log using Log.d(). If Log.isLoggable was
/frameworks/base/core/java/com/android/server/backup/
H A DNotificationBackupHelper.java29 static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DOneShotScheduler.java42 mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeService.java33 static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);

Completed in 491 milliseconds

123456789