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

1234567

/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);
/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.java274 if (Log.isLoggable(TAG, Log.VERBOSE)) {
282 if (Log.isLoggable(TAG, Log.VERBOSE)) {
331 if (Log.isLoggable(TAG, Log.VERBOSE)) Slog.v(TAG, "sending MESSAGE_ACCOUNTS_UPDATED");
360 if (Log.isLoggable(TAG, Log.VERBOSE)) {
452 if (Log.isLoggable(TAG, Log.VERBOSE)) {
743 final boolean isLoggable = Log.isLoggable(TAG, Log.VERBOSE);
747 if (isLoggable) {
758 if (isLoggable) {
855 if (isLoggable) {
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DCarBatteryController.java131 if (Log.isLoggable(TAG, Log.DEBUG)) {
136 if (Log.isLoggable(TAG, Log.DEBUG)) {
151 if (Log.isLoggable(TAG, Log.DEBUG)) {
169 if (Log.isLoggable(TAG, Log.DEBUG)) {
197 if (Log.isLoggable(TAG, Log.DEBUG)) {
210 if (Log.isLoggable(TAG, Log.DEBUG)) {
232 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
69 result = isLoggable(chars, level);
77 return isLoggable(tag, levels.verbose);
128 { "isLoggable", "(Ljava/lang/String;I)Z", (void*) android_util_Log_isLoggable },
/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/telecomm/java/android/telecom/
H A DLog.java40 public static final boolean DEBUG = isLoggable(android.util.Log.DEBUG);
41 public static final boolean INFO = isLoggable(android.util.Log.INFO);
42 public static final boolean VERBOSE = isLoggable(android.util.Log.VERBOSE);
43 public static final boolean WARN = isLoggable(android.util.Log.WARN);
44 public static final boolean ERROR = isLoggable(android.util.Log.ERROR);
69 public static boolean isLoggable(int level) { method in class:Log
70 return FORCE_LOGGING || android.util.Log.isLoggable(TAG, level);
/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java317 if (Log.isLoggable(FullBackup.TAG_XML_PARSER, Log.VERBOSE)) {
357 if (Log.isLoggable(FullBackup.TAG_XML_PARSER, Log.VERBOSE)) {
362 if (Log.isLoggable(FullBackup.TAG_XML_PARSER, Log.VERBOSE)) {
398 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
414 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
430 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
443 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
450 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
462 if (Log.isLoggable(TAG_XML_PARSER, Log.VERBOSE)) {
469 if (Log.isLoggable(TAG_XML_PARSE
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DRlog.java84 public static boolean isLoggable(String tag, int level) { method in class:Rlog
85 return Log.isLoggable(tag, level);
/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/services/core/java/com/android/server/notification/
H A DNotificationIntrusivenessExtractor.java31 private static final boolean DBG = Log.isLoggable(TAG, Log.DEBUG);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DNormFilter.java33 private static boolean mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DAverageFilter.java31 private static boolean mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
H A DCameraTestThread.java31 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
H A DFloatArrayToSizeFilter.java33 private static boolean mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);

Completed in 3150 milliseconds

1234567