Searched refs:LOG_TAG (Results 1 - 25 of 889) sorted by relevance

1234567891011>>

/frameworks/compile/libbcc/include/bcc/Support/
H A DLog.h20 #ifndef LOG_TAG
21 # define LOG_TAG "bcc" macro
/frameworks/ex/variablespeed/jni/
H A Dhlogging.h25 #define LOG_TAG "VariableSpeed" macro
26 #define LOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)
27 #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
28 #define LOGI(...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)
29 #define LOGW(...) __android_log_print(ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)
30 #define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)
/frameworks/base/media/mca/filterfw/native/base/
H A Dlogging.h22 #define LOG_FRAME(...) if (LOG_EVERY_FRAME) __android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)
24 #define LOG_TAG "MCA" macro
/frameworks/base/core/java/android/gesture/
H A DGestureConstants.java25 static final String LOG_TAG = "Gestures"; field in interface:GestureConstants
/frameworks/rs/
H A DrsUtils.h21 #define LOG_TAG "RenderScript" macro
/frameworks/base/core/tests/coretests/src/android/util/
H A DLogTest.java31 private static final String LOG_TAG = "LogTest"; field in class: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));
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, Lo
[all...]
/frameworks/base/include/android_runtime/
H A DLog.h29 #define LOGV_EX(env, ...) LOG_EX(env, LOG_VERBOSE, LOG_TAG, ##__VA_ARGS__)
30 #define LOGD_EX(env, ...) LOG_EX(env, LOG_DEBUG, LOG_TAG, ##__VA_ARGS__)
31 #define LOGI_EX(env, ...) LOG_EX(env, LOG_INFO, LOG_TAG, ##__VA_ARGS__)
32 #define LOGW_EX(env, ...) LOG_EX(env, LOG_WARN, LOG_TAG, ##__VA_ARGS__)
33 #define LOGE_EX(env, ...) LOG_EX(env, LOG_ERROR, LOG_TAG, ##__VA_ARGS__)
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
H A DReceiverService.java31 private static final String LOG_TAG = "WAP PUSH"; field in class:ReceiverService
36 Log.d(LOG_TAG, "Receiver service created");
46 Log.d(LOG_TAG, "Receiver service started");
53 Log.d(LOG_TAG, "header:");
54 Log.d(LOG_TAG, HexDump.dumpHexString(header));
55 Log.d(LOG_TAG, "body:");
56 Log.d(LOG_TAG, HexDump.dumpHexString(body));
H A DDrmReceiver.java31 private static final String LOG_TAG = "WAP PUSH"; field in class:DrmReceiver
35 Log.d(LOG_TAG, "DrmReceiver received.");
43 Log.d(LOG_TAG, "header:");
44 Log.d(LOG_TAG, HexDump.dumpHexString(header));
45 Log.d(LOG_TAG, "body:");
46 Log.d(LOG_TAG, HexDump.dumpHexString(body));
H A DReceiverActivity.java30 private static final String LOG_TAG = "WAP PUSH"; field in class:ReceiverActivity
35 Log.d(LOG_TAG, "activity created!!");
44 Log.d(LOG_TAG, "header:");
45 Log.d(LOG_TAG, HexDump.dumpHexString(header));
46 Log.d(LOG_TAG, "body:");
47 Log.d(LOG_TAG, HexDump.dumpHexString(body));
/frameworks/rs/cpp/
H A DrsCppInternal.h30 #undef LOG_TAG macro
33 #define LOG_TAG "rsC++" macro
/frameworks/base/media/tests/SoundPoolTest/src/com/android/
H A DSoundPoolTest.java39 private static final String LOG_TAG = "SoundPoolTest"; field in class:SoundPoolTest
84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status);
98 Log.e(LOG_TAG, "Unable to open resource");
131 if (DEBUG) Log.d(LOG_TAG, "Begin sounds test");
136 if (DEBUG) Log.d(LOG_TAG, "Start note " + id);
138 Log.e(LOG_TAG, "Error occurred starting note");
143 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id);
146 if (DEBUG) Log.d(LOG_TAG, "End sounds test");
151 if (DEBUG) Log.d(LOG_TAG, "Begin scale test");
158 if (DEBUG) Log.d(LOG_TAG, "Star
[all...]
/frameworks/base/services/input/
H A DInputApplication.cpp17 #define LOG_TAG "InputApplication" macro
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DRemotePrintDocumentAdapter.java43 private static final String LOG_TAG = "RemotePrintDocumentAdapter"; field in class:RemotePrintDocumentAdapter
58 Log.i(LOG_TAG, "start()");
63 Log.e(LOG_TAG, "Error calling start()", re);
70 Log.i(LOG_TAG, "layout()");
75 Log.e(LOG_TAG, "Error calling layout()", re);
82 Log.i(LOG_TAG, "write()");
116 Log.e(LOG_TAG, "Error calling write()", re);
118 Log.e(LOG_TAG, "Error calling write()", ioe);
132 Log.i(LOG_TAG, "finish()");
137 Log.e(LOG_TAG, "Erro
[all...]
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DQueryController.java31 private static final String LOG_TAG = QueryController.class.getSimpleName(); field in class:QueryController
33 private static final boolean DEBUG = Log.isLoggable(LOG_TAG, Log.DEBUG);
34 private static final boolean VERBOSE = Log.isLoggable(LOG_TAG, Log.VERBOSE);
76 Log.d(LOG_TAG, "Last text selection reported: " +
147 Log.d(LOG_TAG, "Searching: " + selector);
152 Log.e(LOG_TAG, "Cannot proceed when root node is null. Aborted search");
177 Log.e(LOG_TAG, "Got null root node from accessibility - Retrying...");
234 Log.d(LOG_TAG, "Container selector not found: " + selector.dumpToString(false));
243 Log.i(LOG_TAG, String.format(
249 Log.d(LOG_TAG, "Patter
[all...]
/frameworks/uiautomator/core/com/android/uiautomator/core/
H A DQueryController.java31 private static final String LOG_TAG = QueryController.class.getSimpleName(); field in class:QueryController
33 private static final boolean DEBUG = Log.isLoggable(LOG_TAG, Log.DEBUG);
34 private static final boolean VERBOSE = Log.isLoggable(LOG_TAG, Log.VERBOSE);
76 Log.d(LOG_TAG, "Last text selection reported: " +
147 Log.d(LOG_TAG, "Searching: " + selector);
152 Log.e(LOG_TAG, "Cannot proceed when root node is null. Aborted search");
177 Log.e(LOG_TAG, "Got null root node from accessibility - Retrying...");
234 Log.d(LOG_TAG, "Container selector not found: " + selector.dumpToString(false));
243 Log.i(LOG_TAG, String.format(
249 Log.d(LOG_TAG, "Patter
[all...]
/frameworks/base/location/tests/locationtests/src/android/location/
H A DLocationManagerTest.java30 private static final String LOG_TAG = "LocationManagerTest"; field in class:LocationManagerTest
89 Log.i(LOG_TAG, "Input = " + (-80.075) + ", output = " + loc1);
93 Log.i(LOG_TAG, "Input = " + (-80.0) + ", output = " + loc1b);
97 Log.i(LOG_TAG, "Input = " + (-80.085) + ", output = " + loc2);
101 Log.i(LOG_TAG, "Input = " + (-80.085) + ", output = " + loc3);
105 Log.i(LOG_TAG, "Input = " + (-80.085) + ", output = " + loc4);
109 Log.i(LOG_TAG, "Input = 5:0.5, output = " + loc5);
112 Log.i(LOG_TAG, "loc5a = " + loc5a);
115 Log.i(LOG_TAG, "loc5b = " + loc5b);
117 Log.i(LOG_TAG, "minute
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DRuimPhoneBookInterfaceManager.java34 static final String LOG_TAG = "RuimPhoneBookIM"; field in class:RuimPhoneBookInterfaceManager
51 Rlog.e(LOG_TAG, "Error while finalizing:", throwable);
53 if(DBG) Rlog.d(LOG_TAG, "RuimPhoneBookInterfaceManager finalized");
80 Rlog.d(LOG_TAG, "[RuimPbInterfaceManager] " + msg);
85 Rlog.e(LOG_TAG, "[RuimPbInterfaceManager] " + msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimPhoneBookInterfaceManager.java34 static final String LOG_TAG = "SimPhoneBookIM"; field in class:SimPhoneBookInterfaceManager
51 Rlog.e(LOG_TAG, "Error while finalizing:", throwable);
53 if(DBG) Rlog.d(LOG_TAG, "SimPhoneBookInterfaceManager finalized");
79 Rlog.d(LOG_TAG, "[SimPbInterfaceManager] " + msg);
84 Rlog.e(LOG_TAG, "[SimPbInterfaceManager] " + msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DCsimFileHandler.java28 static final String LOG_TAG = "CsimFH"; field in class:CsimFileHandler
61 Rlog.d(LOG_TAG, msg);
66 Rlog.e(LOG_TAG, msg);
H A DIsimFileHandler.java28 static final String LOG_TAG = "IsimFH"; field in class:IsimFileHandler
48 Rlog.d(LOG_TAG, msg);
53 Rlog.e(LOG_TAG, msg);
/frameworks/testing/uiautomator/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
H A DWakeUpController.java30 private static final String LOG_TAG = WakeUpController.class.getName(); field in class:WakeUpController
36 Log.i(LOG_TAG, "Created instance: 0x" + Integer.toHexString(this.hashCode()));
51 Log.i(LOG_TAG, "Create wakelock: 0x" + Integer.toHexString(mWakeLock.hashCode()));
/frameworks/base/libs/hwui/
H A DStencil.h20 #ifndef LOG_TAG
21 #define LOG_TAG "OpenGLRenderer" macro
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
H A DFountainFbo.java24 private static final String LOG_TAG = "libRS_jni"; field in class:FountainFbo
61 Log.v(LOG_TAG, message);
/frameworks/testing/uiautomator_test_libraries/src/com/android/uiautomator/common/
H A DUiWatchers.java32 private static final String LOG_TAG = UiWatchers.class.getSimpleName(); field in class:UiWatchers
54 Log.e(LOG_TAG, "dialog gone?", e);
75 Log.e(LOG_TAG, "dialog gone?", e);
95 Log.e(LOG_TAG, "dialog gone?", e);
115 Log.e(LOG_TAG, "dialog gone?", e);
125 Log.i(LOG_TAG, "Registed GUI Exception watchers");
152 Log.e(LOG_TAG, formatedOutput);
160 Log.e(LOG_TAG, "Exception", e);

Completed in 5004 milliseconds

1234567891011>>