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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/telephony/java/android/telephony/
Rlog.java 21 import android.util.Log;
27 * A class to log strings to the RADIO LOG.
37 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag, msg);
41 return Log.println_native(Log.LOG_ID_RADIO, Log.VERBOSE, tag,
42 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 33 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag, msg);
37 return Log.println_native(Log.LOG_ID_SYSTEM, Log.VERBOSE, tag,
38 msg + '\n' + Log.getStackTraceString(tr));
42 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);
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/fm/
FmRadio.java 27 import android.util.Log;
84 Log.i(TAG, "Service connected");
87 Log.i(TAG, "Sending callback");
90 Log.e(TAG, "mService is NULL");
97 Log.i(TAG, "Service disconnected");
109 Log.i(TAG, "FmRadio:Creating a FmRadio proxy object: " + mConnection);
138 Log.d(TAG, "FmRadio:finalize");
152 Log.i(TAG, "FmRadio:close");
163 Log.d(TAG, "FmRadio:rxIsEnabled");
168 Log.e(TAG, e.toString())
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
CallCommandClient.java 50 Log.i(this, "answerCall: " + callId);
52 Log.e(this, "Cannot answer call; CallCommandService == null");
58 Log.e(this, "Error answering call.", e);
63 Log.i(this, "rejectCall: " + call.getCallId() +
66 Log.e(this, "Cannot reject call; CallCommandService == null");
72 Log.e(this, "Error rejecting call.", e);
77 Log.i(this, "disconnect Call: " + callId);
79 Log.e(this, "Cannot disconnect call; CallCommandService == null");
85 Log.e(this, "Error disconnecting call.", e);
90 Log.i(this, "separate Call: " + callId)
    [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...]
  /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:
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
JFmLog.java 20 import android.util.Log;
25 return Log.v(tag, msg);
29 return Log.d(tag, msg);
33 return Log.i(tag, msg);
37 return Log.w(tag, msg);
41 return Log.e(tag, msg);
  /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...]
  /external/droiddriver/src/com/google/android/droiddriver/util/
Logs.java 19 import android.util.Log;
28 public static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG);
32 Log.d(
39 public static void log(int priority, String msg) { method in class:Logs
40 if (Log.isLoggable(TAG, priority)) {
41 Log.println(priority, TAG, msg);
45 public static void log(int priority, Throwable e) { method in class:Logs
46 if (Log.isLoggable(TAG, priority)) {
47 Log.println(priority, TAG, Log.getStackTraceString(e))
51 public static void log(int priority, Throwable e, String msg) { method in class:Logs
    [all...]
  /frameworks/testing/androidtestlib/tests/src/com/android/test/
InstrumentationJUnit4Fixture.java 19 import android.util.Log;
32 Log.d("InstrumentationJUnit4Fixture", "I'm created");
MyAndroidTestCase.java 20 import android.util.Log;
30 Log.i("MyAndroidTestCase", "I'm created");
MyInstrumentationTestCase.java 20 import android.util.Log;
29 Log.i("MyInstrumentationTestCase", "I'm created");
  /hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
StubFmService.java 36 import android.util.Log;
228 Log.d(TAG,"onCallStateChanged:CALL_STATE_RINGING.Pause FM Radio ");
243 Log.d(TAG,"onCallStateChanged:CALL_STATE_OFFHOOK Pause FM Radio ");
255 Log.d(TAG, "onCallStateChanged:CALL_STATE_IDLE) ");
278 //Log.d(TAG, "StubFmService: null constructor called");
282 //Log.d(TAG, "StubFmService: initialise called");
303 Log.e(TAG, "Failed to get Power Manager.");
311 Log.e(TAG, "Failed to create WakeLock.");
338 //Log.d(TAG, "StubFmService: close ");
345 Log.e(TAG, "close: Exception thrown during close (" + e.toString(
    [all...]
  /cts/tests/SignatureTest/src/android/tests/sigtest/
SignatureTestLog.java 19 import android.util.Log;
25 Log.e(TAG, msg, e);
29 Log.d(TAG, msg);
  /external/chromium_org/chrome/test/chromedriver/chrome/
console_logger.h 12 class Log;
14 // Translates DevTools Console.messageAdded events into Log messages.
19 // Translates the level into Log::Level, drops all other fields.
22 // Creates a ConsoleLogger that creates entries in the given Log object.
23 // The log is owned elsewhere and must not be null.
24 explicit ConsoleLogger(Log* log);
28 // Translates an event into a log entry.
34 Log* log_; // The log where to create entries
    [all...]
performance_logger.h 12 class Log;
14 // Translates DevTools profiler events into Log messages with info level.
23 // Creates a PerformanceLogger that creates entries in the given Log object.
24 // The log is owned elsewhere and must not be null.
25 explicit PerformanceLogger(Log* log);
29 // Translates an event into a log entry.
35 Log* log_; // The log where to create entries.
  /external/chromium/base/
logging_unittest.cc 17 // Needs to be global since log assert handlers can't maintain state.
24 // Class to make sure any manipulations we do to the min log level are
50 MOCK_METHOD0(Log, const char*());
59 EXPECT_CALL(mock_log_source, Log()).Times(kExpectedCalls).
60 WillRepeatedly(Return("log message"));
71 LOG(INFO) << mock_log_source.Log();
72 LOG_IF(INFO, true) << mock_log_source.Log();
73 PLOG(INFO) << mock_log_source.Log();
74 PLOG_IF(INFO, true) << mock_log_source.Log();
    [all...]

Completed in 1483 milliseconds

1 2 3 4 5 6 7 8 91011>>