Searched refs:LOG_TAG (Results 1 - 25 of 798) 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/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/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/av/services/audioflinger/audio-resampler/
H A DAudioResamplerCoefficients.cpp19 #undef LOG_TAG macro
22 #define LOG_TAG "ResamplerCoefficients" 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 scale 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/libs/hwui/
H A DStencil.h20 #ifndef LOG_TAG
21 #define LOG_TAG "OpenGLRenderer" macro
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DLayoutTestController.java30 private static final String LOG_TAG = "LayoutTestController"; field in class:LayoutTestController
39 Log.i(LOG_TAG, "clearAllDatabases() called");
68 Log.i(LOG_TAG, "setAppCacheMaximumSize() called with: " + size);
78 Log.i(LOG_TAG, "setDatabaseQuota() called with: " + quota);
84 Log.i(LOG_TAG, "setMockGeolocationPosition(): " + "latitude=" + latitude +
90 Log.i(LOG_TAG, "setMockGeolocationError(): " + "code=" + code + " message=" + message);
102 Log.i(LOG_TAG, "setMockDeviceOrientation(" + canProvideAlpha +
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DForwarder.java32 private static final String LOG_TAG = "Forwarder"; field in class:Forwarder
48 Log.i(LOG_TAG, "start(): Starting fowarder on port: " + mPort);
53 Log.e(LOG_TAG, "mPort=" + mPort, e);
68 Log.w(LOG_TAG, "mPort=" + mPort, e);
82 Log.e(LOG_TAG, "mPort=" + mPort, e);
88 Log.e(LOG_TAG, "mPort=" + mPort, e);
129 Log.e(LOG_TAG, "mPort=" + mPort, e);
H A DForwarderManager.java32 private static final String LOG_TAG = "ForwarderManager"; field in class:ForwarderManager
98 Log.w(LOG_TAG, "start(): ForwarderManager already running! NOOP.");
107 Log.i(LOG_TAG, "ForwarderManager started.");
112 Log.w(LOG_TAG, "stop(): ForwarderManager already stopped! NOOP.");
121 Log.i(LOG_TAG, "ForwarderManager stopped.");
/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 = "CDMA"; field in class:RuimPhoneBookInterfaceManager
49 Log.e(LOG_TAG, "Error while finalizing:", throwable);
51 if(DBG) Log.d(LOG_TAG, "RuimPhoneBookInterfaceManager finalized");
76 Log.d(LOG_TAG, "[RuimPbInterfaceManager] " + msg);
80 Log.e(LOG_TAG, "[RuimPbInterfaceManager] " + msg);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSimPhoneBookInterfaceManager.java34 static final String LOG_TAG = "GSM"; field in class:SimPhoneBookInterfaceManager
49 Log.e(LOG_TAG, "Error while finalizing:", throwable);
51 if(DBG) Log.d(LOG_TAG, "SimPhoneBookInterfaceManager finalized");
75 Log.d(LOG_TAG, "[SimPbInterfaceManager] " + msg);
79 Log.e(LOG_TAG, "[SimPbInterfaceManager] " + msg);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DQueryController.java33 private static final String LOG_TAG = QueryController.class.getSimpleName(); field in class:QueryController
77 Log.i(LOG_TAG, "Last text selection reported: " +
149 Log.i(LOG_TAG, "Searching: " + selector);
154 Log.e(LOG_TAG, "Cannot proceed when root node is null. Aborted search");
179 Log.e(LOG_TAG, "Got null root node from accessibility - Retrying...");
236 Log.i(LOG_TAG, "Container selector not found: " + selector.dumpToString(false));
245 Log.i(LOG_TAG, String.format(
251 Log.i(LOG_TAG, "Pattern selector not found: " +
267 Log.i(LOG_TAG, "Object Not Found for selector " + selector);
270 Log.i(LOG_TAG, Strin
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
H A DIsimFileHandler.java31 static final String LOG_TAG = "RIL_IsimFH"; field in class:IsimFileHandler
51 Log.d(LOG_TAG, msg);
56 Log.e(LOG_TAG, msg);
/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/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DConnectionUtil.java57 private static final String LOG_TAG = "ConnectionUtil"; field in class:ConnectionUtil
130 Log.v(LOG_TAG, "Clear Wifi before we start the test.");
147 Log.d(LOG_TAG, "This is a sticky broadcast don't do anything.");
150 Log.v(LOG_TAG, "ConnectivityReceiver: onReceive() is called with " + intent);
166 Log.v(LOG_TAG, "mNetworkInfo: " + mNetworkInfo.toString());
169 Log.v(LOG_TAG, "mOtherNetworkInfo: " + mOtherNetworkInfo.toString());
188 Log.v(LOG_TAG, "Scan results are available");
193 Log.v(LOG_TAG, "mWifiNetworkInfo: " + mWifiNetworkInfo.toString());
239 Log.v(LOG_TAG, "Failed to establish AsyncChannel connection");
257 Log.v(LOG_TAG, "Initializ
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAHandler.cpp18 #define LOG_TAG "AHandler" macro
/frameworks/base/services/common_time/
H A Dmain.cpp22 #define LOG_TAG "common_time" macro
/frameworks/compile/libbcc/include/bcc/
H A DAssert.h34 #define LOG_TAG "bcc" macro

Completed in 308 milliseconds

1234567891011>>