HomeSort by relevance Sort by last modified time
    Searched refs:Log (Results 1 - 25 of 6843) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/telephony/java/android/telephony/
Rlog.java 19 import android.util.Log;
22 * A class to log strings to the RADIO LOG.
32 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg);
36 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag,
37 msg + '\n' + Log.getStackTraceString(tr))
    [all...]
  /cts/suite/audio_quality/lib/include/
Log.h 26 class Log: public FileUtil {
36 static Log* Instance(const char* dirName = NULL);
46 Log();
47 virtual ~Log();
51 static Log* mInstance;
55 #define LOGE(x...) do { Log::Instance()->printf(Log::ELogE, x); \
56 Log::Instance()->printf(Log::ELogE, " file %s line %d", __FILE__, __LINE__); } while(0)
57 #define LOGW(x...) do { Log::Instance()->printf(Log::ELogW, x); } while(0
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
LogTest.java 20 import android.util.Log;
24 * Test Log
31 final String msg = "Test Log operations.";
39 Log.e(TAG, msg);
40 Log.e(TAG, msg, tr);
41 Log.w(TAG, msg);
42 Log.w(TAG, tr);
43 Log.w(TAG, msg, tr);
44 Log.i(TAG, msg);
45 Log.i(TAG, msg, tr)
    [all...]
LogPrinterTest.java 20 import android.util.Log;
31 int[] priorities = { Log.ASSERT, Log.DEBUG, Log.ERROR, Log.INFO,
32 Log.VERBOSE, Log.WARN };
39 LogPrinter logPrinter = new LogPrinter(Log.DEBUG, mTag);
  /frameworks/base/core/tests/coretests/src/android/util/
LogTest.java 25 import android.util.Log;
30 private static final String PROPERTY_TAG = "log.tag.LogTest";
49 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))
    [all...]
  /cts/suite/audio_quality/lib/src/
Log.cpp 20 #include "Log.h"
22 Log* Log::mInstance = NULL;
28 Log* Log::Instance(const char* dirName)
31 mInstance = new Log();
36 void Log::Finalize()
41 void Log::printf(LogLevel level, const char* fmt, ...)
49 void Log::setLogLevel(LogLevel level)
54 Log::Log(
    [all...]
  /frameworks/base/core/java/android/util/
Slog.java 28 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
32 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
33 msg + '\n' + Log.getStackTraceString(tr));
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.DEBUG, tag, msg)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
LogFactory.java 26 public static Log getLog(Class clazz) {
27 return new Log(clazz);
  /external/droiddriver/src/com/google/android/droiddriver/util/
Logs.java 20 import android.util.Log;
27 public static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
31 Log.d(
38 public static void log(int priority, String msg) { method in class:Logs
39 if (Log.isLoggable(TAG, priority)) {
40 Log.println(priority, TAG, msg);
44 public static void log(int priority, Throwable e) { method in class:Logs
45 if (Log.isLoggable(TAG, priority)) {
46 Log.println(priority, TAG, Log.getStackTraceString(e))
50 public static void log(int priority, Throwable e, String msg) { method in class:Logs
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
LogUtils.java 24 import android.util.Log;
32 if (DEBUG || Log.isLoggable(LOGTAG, Log.VERBOSE)) {
33 Log.v(LOGTAG, args == null ? message : String.format(message, args));
38 if (DEBUG || Log.isLoggable(LOGTAG, Log.VERBOSE)) {
39 Log.v(LOGTAG + "/" + tag, args == null ? message : String.format(message, args));
44 if (DEBUG || Log.isLoggable(LOGTAG, Log.DEBUG)) {
45 Log.d(LOGTAG, args == null ? message : String.format(message, args))
    [all...]
ExtensionsFactory.java 5 import android.util.Log;
31 if (Log.isLoggable(TAG, Log.DEBUG)) {
32 Log.d(TAG, "No custom extensions.");
35 if (Log.isLoggable(TAG, Log.DEBUG)) {
36 Log.d(TAG, e.toString());
46 if (Log.isLoggable(TAG, Log.ERROR)) {
47 Log.e(TAG, className + ": unable to create instance.", e)
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
vec2.cpp 19 #include <utils/Log.h>
vec3.cpp 19 #include <utils/Log.h>
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 22 import android.util.Log;
36 if (Log.isLoggable(TAG, Log.VERBOSE)) {
37 Log.v(TAG, "SampleSyncAdapter Authentication Service started.");
44 if (Log.isLoggable(TAG, Log.VERBOSE)) {
45 Log.v(TAG, "SampleSyncAdapter Authentication Service stopped.");
51 if (Log.isLoggable(TAG, Log.VERBOSE)) {
52 Log.v(TAG, "getBinder()... returning the AccountAuthenticator binder for intent
    [all...]
  /external/chromium_org/base/
logging_unittest.cc 17 // Needs to be global since log assert handlers can't maintain state.
26 // Class to make sure any manipulations we do to the min log level are
51 MOCK_METHOD0(Log, const char*());
56 EXPECT_CALL(mock_log_source, Log()).Times(DEBUG_MODE ? 16 : 8).
57 WillRepeatedly(Return("log message"));
68 LOG(INFO) << mock_log_source.Log();
69 LOG_IF(INFO, true) << mock_log_source.Log();
70 PLOG(INFO) << mock_log_source.Log();
71 PLOG_IF(INFO, true) << mock_log_source.Log();
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest.cc 94 ViETest::Log("Video Codec Information:");
99 ViETest::Log("\tcodecType: VP8");
102 ViETest::Log("\tcodecType: I420");
105 ViETest::Log("\tcodecType: RED");
108 ViETest::Log("\tcodecType: ULPFEC");
111 ViETest::Log("\tcodecType: GENERIC");
114 ViETest::Log("\tcodecType: UNKNOWN");
118 ViETest::Log("\theight: %u", videoCodec.height);
119 ViETest::Log("\tmaxBitrate: %u", videoCodec.maxBitrate);
120 ViETest::Log("\tmaxFramerate: %u", videoCodec.maxFramerate)
    [all...]
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
MainRecognitionService.java 21 import android.util.Log;
33 Log.i(TAG, "onCreate");
38 Log.d(TAG, "onStartListening");
43 Log.d(TAG, "onCancel");
48 Log.d(TAG, "onStopListening");
54 Log.d(TAG, "onDestroy");
MainInteractionService.java 25 import android.util.Log;
36 Log.i(TAG, "onAvailabilityChanged(" + status + ")");
42 Log.i(TAG, "onDetected");
47 Log.i(TAG, "onError");
52 Log.i(TAG, "onRecognitionPaused");
57 Log.i(TAG, "onRecognitionResumed");
66 Log.i(TAG, "Creating " + this);
67 Log.i(TAG, "Keyphrase enrollment error? " + getKeyphraseEnrollmentInfo().getParseError());
68 Log.i(TAG, "Keyphrase enrollment meta-data: "
85 Log.i(TAG, "Hotword availability = " + availability)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
Log_Delegate.java 25 case Log.VERBOSE:
27 case Log.DEBUG:
29 case Log.INFO:
31 case Log.WARN:
33 case Log.ERROR:
35 case Log.ASSERT:
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LogTest.java 3 import android.util.Log;
22 Log.d("tag", "msg");
24 assertLogged(Log.DEBUG, "tag", "msg", null);
31 Log.d("tag", "msg", throwable);
33 assertLogged(Log.DEBUG, "tag", "msg", throwable);
38 Log.e("tag", "msg");
40 assertLogged(Log.ERROR, "tag", "msg", null);
47 Log.e("tag", "msg", throwable);
49 assertLogged(Log.ERROR, "tag", "msg", throwable);
54 Log.i("tag", "msg")
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/
FeatureLogic.java 19 import android.util.Log;
25 Log.d(TAG, "FeatureLogic.mult(" + a + ", " + b + ")");
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
LibraryLoader.java 7 import android.util.Log;
22 Log.i(TAG, "libcronet initialization success.");
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
SysTrace.java 18 import android.util.Log;
37 private static final boolean VERBOSE = Log.isLoggable(TAG, Log.VERBOSE);
50 Log.v(TAG, "traceCounter " + counterName + " " + counterValue);
67 Log.v(TAG, String.format("beginSection[%d] %s", sNestingLevel, sectionName));
86 Log.v(TAG, String.format("endSection[%d]", sNestingLevel));
104 Log.v(TAG, "beginSectionAsync " + methodName + " " + cookie);
118 Log.v(TAG, "endSectionAsync " + methodName + " " + cookie);
  /frameworks/testing/support/tests/src/android/support/test/
InstrumentationJUnit4Fixture.java 20 import android.util.Log;
33 Log.d("InstrumentationJUnit4Fixture", "I'm created");
MyAndroidTestCase.java 20 import android.util.Log;
30 Log.i("MyAndroidTestCase", "I'm created");

Completed in 1352 milliseconds

1 2 3 4 5 6 7 8 91011>>