Searched refs:VERBOSE (Results 1 - 25 of 55) sorted by relevance

123

/frameworks/base/core/tests/coretests/src/android/util/
H A DLogTest.java49 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
56 // Set the log level to be VERBOSE for this tag.
57 SystemProperties.set(PROPERTY_TAG, "VERBOSE");
59 // Test to make sure all log levels >= VERBOSE are loggable.
60 Assert.assertTrue(Log.isLoggable(LOG_TAG, Log.VERBOSE));
71 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
82 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
93 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
104 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
115 Assert.assertFalse(Log.isLoggable(LOG_TAG, Log.VERBOSE));
[all...]
/frameworks/compile/libbcc/runtime/make/
H A Dconfig.mk20 VERBOSE := 0 macro
27 ifneq ($(VERBOSE),1)
/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.java121 if (Log.isLoggable(TAG, Log.VERBOSE)) {
131 if (Log.isLoggable(TAG, Log.VERBOSE)) {
145 if (Log.isLoggable(TAG, Log.VERBOSE)) {
152 if (Log.isLoggable(TAG, Log.VERBOSE)) {
168 if (Log.isLoggable(TAG, Log.VERBOSE)) {
176 if (Log.isLoggable(TAG, Log.VERBOSE)) {
190 if (Log.isLoggable(TAG, Log.VERBOSE)) {
199 if (Log.isLoggable(TAG, Log.VERBOSE)) {
214 if (Log.isLoggable(TAG, Log.VERBOSE)) {
223 if (Log.isLoggable(TAG, Log.VERBOSE)) {
[all...]
H A DChooseTypeAndAccountActivity.java117 if (Log.isLoggable(TAG, Log.VERBOSE)) {
151 if (Log.isLoggable(TAG, Log.VERBOSE)) {
284 if (Log.isLoggable(TAG, Log.VERBOSE)) {
296 if (Log.isLoggable(TAG, Log.VERBOSE)) {
339 if (Log.isLoggable(TAG, Log.VERBOSE)) {
402 if (Log.isLoggable(TAG, Log.VERBOSE)) {
410 if (Log.isLoggable(TAG, Log.VERBOSE)) {
459 if (Log.isLoggable(TAG, Log.VERBOSE)) {
467 if (Log.isLoggable(TAG, Log.VERBOSE)) {
H A DAccountManagerService.java403 if (Log.isLoggable(TAG, Log.VERBOSE)) {
442 if (Log.isLoggable(TAG, Log.VERBOSE)) {
461 if (Log.isLoggable(TAG, Log.VERBOSE)) {
485 if (Log.isLoggable(TAG, Log.VERBOSE)) {
561 if (Log.isLoggable(TAG, Log.VERBOSE)) {
609 if (Log.isLoggable(TAG, Log.VERBOSE)) {
619 if (Log.isLoggable(TAG, Log.VERBOSE)) {
634 if (Log.isLoggable(TAG, Log.VERBOSE)) {
691 if (Log.isLoggable(TAG, Log.VERBOSE)) {
724 if (Log.isLoggable(TAG, Log.VERBOSE)) {
[all...]
H A DChooseAccountTypeActivity.java55 if (Log.isLoggable(TAG, Log.VERBOSE)) {
119 if (Log.isLoggable(TAG, Log.VERBOSE)) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDebug.java37 * Enable using "adb shell setprop log.tag.SQLiteLog VERBOSE".
40 Log.isLoggable("SQLiteLog", Log.VERBOSE);
45 * Enable using "adb shell setprop log.tag.SQLiteStatements VERBOSE".
48 Log.isLoggable("SQLiteStatements", Log.VERBOSE);
54 * Enable using "adb shell setprop log.tag.SQLiteTime VERBOSE".
57 Log.isLoggable("SQLiteTime", Log.VERBOSE);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLog_Delegate.java25 case Log.VERBOSE:
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java81 if (Log.isLoggable("SMS", Log.VERBOSE)) {
118 if (Log.isLoggable("SMS", Log.VERBOSE)) {
156 if (Log.isLoggable("SMS", Log.VERBOSE)) {
/frameworks/av/media/libstagefright/rtsp/
H A DAH263Assembler.cpp78 #if VERBOSE
79 LOG(VERBOSE) << "Not the sequence number I expected";
129 #if VERBOSE
130 LOG(VERBOSE) << "Access unit complete (" << mPackets.size() << " packets)";
H A DAMPEG4AudioAssembler.cpp507 #if VERBOSE
508 LOG(VERBOSE) << "Not the sequence number I expected";
533 #if VERBOSE
534 LOG(VERBOSE) << "Access unit complete (" << mPackets.size() << " packets)";
/frameworks/base/core/java/android/util/
H A DLog.java32 * ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled
58 public static final int VERBOSE = 2; field in class:Log
111 * Send a {@link #VERBOSE} log message.
117 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg);
121 * Send a {@link #VERBOSE} log message and log the exception.
128 return println_native(LOG_ID_MAIN, VERBOSE, tag, msg + '\n' + getStackTraceString(tr));
201 * Where level is either VERBOSE, DEBUG, INFO, WARN, ERROR, ASSERT, or SUPPRESS. SUPPRESS will
H A DSlog.java33 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
H A DTimingLogger.java71 * least the Log.VERBOSE level for that tag at creation time then
83 * least the Log.VERBOSE level for that tag at creation time then
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
131 * not enabled to at least the Log.VERBOSE for the specified tag at
/frameworks/compile/libbcc/tests/debuginfo/
H A Dbuild_test_apk.sh20 VERBOSE=no
49 if [ "$VERBOSE" = "yes" ] ; then
70 VERBOSE=yes
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DOneShotScheduler.java43 mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
H A DAsyncRunner.java151 mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
163 mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
H A DFilterPort.java41 mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
H A DFilterFactory.java49 private static boolean mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
/frameworks/base/core/java/android/content/
H A DSyncManager.java172 if (Log.isLoggable(TAG, Log.VERBOSE)) {
179 if (Log.isLoggable(TAG, Log.VERBOSE)) {
300 if (Log.isLoggable(TAG, Log.VERBOSE)) {
502 boolean isLoggable = Log.isLoggable(TAG, Log.VERBOSE);
667 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "sending MESSAGE_SYNC_ALARM");
672 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "sending MESSAGE_CHECK_ALARMS");
679 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "sending MESSAGE_SYNC_FINISHED");
688 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "sending MESSAGE_CANCEL");
733 if (Log.isLoggable(TAG, Log.VERBOSE)) {
806 if (Log.isLoggable(TAG, Log.VERBOSE)) {
[all...]
H A DSyncStorageEngine.java441 if (Log.isLoggable(TAG, Log.VERBOSE)) {
562 if (Log.isLoggable(TAG, Log.VERBOSE)) {
612 if (Log.isLoggable(TAG, Log.VERBOSE)) {
637 if (Log.isLoggable(TAG, Log.VERBOSE)) {
673 if (Log.isLoggable(TAG, Log.VERBOSE)) {
829 if (Log.isLoggable(TAG, Log.VERBOSE)) {
861 if (Log.isLoggable(TAG, Log.VERBOSE)) {
880 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "removing - " + authority);
894 if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "no more pending!");
934 if (Log.isLoggable(TAG, Log.VERBOSE)) Lo
[all...]
/frameworks/base/tools/aidl/
H A Doptions_test.cpp4 const bool VERBOSE = false; variable
245 if (VERBOSE) {
257 if (VERBOSE) {
/frameworks/native/libs/binder/
H A DIMemory.cpp35 #define VERBOSE 0 macro
246 if (VERBOSE) {
406 ALOGD_IF(VERBOSE,
439 ALOGD_IF(VERBOSE,
/frameworks/base/core/java/com/android/internal/app/
H A DNetInitiatedActivity.java44 private static final boolean VERBOSE = false; field in class:NetInitiatedActivity

Completed in 824 milliseconds

123