Searched refs:TAG (Results 751 - 775 of 1718) sorted by relevance

<<31323334353637383940>>

/frameworks/base/core/java/android/accounts/
H A DChooseAccountActivity.java43 private static final String TAG = "AccountManager"; field in class:ChooseAccountActivity
106 if (Log.isLoggable(TAG, Log.WARN)) {
107 Log.w(TAG, "No icon name for account type " + accountType);
111 if (Log.isLoggable(TAG, Log.WARN)) {
112 Log.w(TAG, "No icon resource for account type " + accountType);
121 Log.d(TAG, "selected account " + account);
/frameworks/base/core/java/android/net/
H A DDnsPinger.java71 private String TAG; field in class:DnsPinger
119 public DnsPinger(Context context, String TAG, Looper looper, argument
122 this.TAG = TAG;
328 Log.d(TAG, s);
332 Log.e(TAG, s);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSimPinView.java48 public static final String TAG = "KeyguardSimPinView"; field in class:KeyguardSimPinView
60 if (DEBUG) Log.v(TAG, "onSimStateChanged(subId=" + subId + ",state=" + simState + ")");
75 if (DEBUG) Log.v(TAG, "Resetting state");
187 Log.v(TAG, "call supplyPinReportResultForSubscriber(subid=" + mSubId + ")");
192 Log.v(TAG, "supplyPinReportResult returned: " + result[0] + " " + result[1]);
200 Log.e(TAG, "RemoteException for supplyPinReportResult:", e);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DSapProfile.java38 private static final String TAG = "SapProfile"; field in class:SapProfile
62 if (V) Log.d(TAG,"Bluetooth service connected");
71 Log.w(TAG, "SapProfile found new device: " + nextDevice);
84 if (V) Log.d(TAG,"Bluetooth service disconnected");
205 if (V) Log.d(TAG, "finalize()");
212 Log.w(TAG, "Error cleaning up SAP proxy", t);
/frameworks/base/packages/StatementService/src/com/android/statementservice/
H A DIntentFilterVerificationReceiver.java53 private static final String TAG = IntentFilterVerificationReceiver.class.getSimpleName(); field in class:IntentFilterVerificationReceiver
93 Log.i(TAG, "Verify IntentFilter for " + hosts);
100 Log.w(TAG, String.format(TOO_MANY_HOSTS_FORMAT,
114 Log.w(TAG, "Error when processing input host: " + e.getMessage());
122 Log.w(TAG, "Error when processing input Android package: " + e.getMessage());
134 Log.w(TAG, "Intent action not supported: " + action);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelBar.java30 public static final String TAG = PanelBar.class.getSimpleName(); field in class:PanelBar
35 Log.v(TAG, String.format(fmt, args));
71 Log.e(TAG, "setPanelHolder: null PanelHolder", new Throwable());
114 Log.v(TAG, String.format("onTouch: all panels disabled, ignoring touch at (%d,%d)",
125 Log.v(TAG, String.format("onTouch: no panel for touch at (%d,%d)",
135 Log.v(TAG, String.format(
/frameworks/base/services/core/java/com/android/server/camera/
H A DCameraService.java48 private static final String TAG = "CameraService_proxy"; field in class:CameraService
110 mHandlerThread = new ServiceThread(TAG, Process.THREAD_PRIORITY_DISPLAY, /*allowTo*/false);
122 Slog.e(TAG, "CameraService error, invalid message: " + msg.what);
197 Slog.i(TAG, "Could not notify camera service of user switch, retrying...");
207 Slog.w(TAG, "Could not notify mediaserver, camera service not available.");
216 Slog.w(TAG, "Could not notify mediaserver, remote exception: " + e);
/frameworks/base/services/core/java/com/android/server/power/
H A DWirelessChargerDetector.java73 private static final String TAG = "WirelessChargerDetector"; field in class:WirelessChargerDetector
248 Slog.w(TAG, "Wireless charger detector is broken. Only received "
263 Slog.d(TAG, "New state: mAtRest=" + mAtRest
296 Slog.d(TAG, "No longer at rest: "
320 Slog.d(TAG, "Weird gravity vector: mag1=" + mag1 + ", mag2=" + mag2);
326 Slog.d(TAG, "Check: moved=" + moved
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowAnimator.java54 private static final String TAG = "WindowAnimator"; field in class:WindowAnimator
167 if (WindowManagerService.DEBUG_ANIM) Slog.v(TAG,
184 if (WindowManagerService.DEBUG_ANIM) Slog.v(TAG,
235 if (DEBUG_KEYGUARD) Slog.d(TAG,
246 if (DEBUG_KEYGUARD) Slog.d(TAG,
289 Slog.w(TAG, "Failed to dispatch window animation state change.", e);
293 Slog.v(TAG, win + ": wasAnimating=" + wasAnimating +
310 WindowManagerService.DEBUG_VISIBILITY) Slog.v(TAG,
322 Slog.e(TAG, "Timeout waiting for animation to startup");
333 if (DEBUG_KEYGUARD || WindowManagerService.DEBUG_VISIBILITY) Slog.v(TAG,
[all...]
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java58 private static String TAG = "GL2JNIView"; field in class:GL2JNIView
81 Log.w(TAG, "creating OpenGL ES 2.0 context");
97 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
180 Log.w(TAG, String.format("%d configurations", numConfigs));
182 Log.w(TAG, String.format("Configuration %d:\n", i));
264 Log.w(TAG, String.format(" %s: %d\n", name, value[0]));
266 // Log.w(TAG, String.format(" %s: failed\n", name));
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java58 private static String TAG = "GLPerfView"; field in class:GLPerfView
81 Log.w(TAG, "creating OpenGL ES 2.0 context");
97 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
180 Log.w(TAG, String.format("%d configurations", numConfigs));
182 Log.w(TAG, String.format("Configuration %d:\n", i));
264 Log.w(TAG, String.format(" %s: %d\n", name, value[0]));
266 // Log.w(TAG, String.format(" %s: failed\n", name));
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java56 private static String TAG = "GLDualGL2View"; field in class:GLDualGL2View
84 Log.w(TAG, "creating OpenGL ES 2.0 context");
100 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
183 Log.w(TAG, String.format("%d configurations", numConfigs));
185 Log.w(TAG, String.format("Configuration %d:\n", i));
267 Log.w(TAG, String.format(" %s: %d\n", name, value[0]));
269 // Log.w(TAG, String.format(" %s: failed\n", name));
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java48 private static String TAG = "TestLatencyiew"; field in class:TestLatencyView
177 Log.e(TAG, "Could not compile shader " + shaderType + ":");
178 Log.e(TAG, GLES20.glGetShaderInfoLog(shader));
207 Log.e(TAG, "Could not link program: ");
208 Log.e(TAG, GLES20.glGetProgramInfoLog(program));
219 Log.e(TAG, op + ": glError " + error);
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DContiguousFIFOAggregator.java61 private static final String TAG = ContiguousFIFOAggregator.class.getSimpleName(); field in class:ContiguousFIFOAggregator
109 Log.d(TAG, String.format("ContiguousFIFOAggregator >> tasks: %s", prettyPrint()));
140 Log.d(TAG, String.format("ContiguousFIFOAggregator < tasks: %s", prettyPrint()));
178 Log.d(TAG, String.format("ContiguousFIFOAggregator ++ tasks: %s", prettyPrint()));
211 Log.d(TAG, String.format("ContiguousFIFOAggregator - tasks: %s", prettyPrint()));
234 Log.d(TAG, String.format("ContiguousFIFOAggregator first: %d", hash));
/frameworks/opt/bitmap/src/com/android/bitmap/util/
H A DInputStreamBuffer.java60 private static final String TAG = InputStreamBuffer.class.getSimpleName(); field in class:InputStreamBuffer
235 if (Log.isLoggable(TAG, Log.DEBUG)) {
236 Log.d(TAG, String.format("advanceTo %d buffer: %s", i, this));
284 Log.w(TAG, String.format(
306 if (Log.isLoggable(TAG, Log.DEBUG)) {
307 Log.d(TAG, String.format("fill %d buffer: %s", i, this));
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiTrafficPoller.java45 private final String TAG = "WifiTrafficPoller"; field in class:WifiTrafficPoller
121 Log.e(TAG, "ENABLE_TRAFFIC_STATS_POLL "
134 Log.e(TAG, "TRAFFIC_STATS_POLL "
148 Log.e(TAG, "ADD_CLIENT: "
182 Log.e(TAG, " packet count Tx="
201 Log.e(TAG, "notifying of data activity "
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DInputStreamBuffer.java60 private static final String TAG = "InputStreamBuffer"; field in class:InputStreamBuffer
235 if (Log.isLoggable(TAG, Log.DEBUG)) {
236 Log.d(TAG, String.format("advanceTo %d buffer: %s", i, this));
284 Log.w(TAG, String.format(
306 if (Log.isLoggable(TAG, Log.DEBUG)) {
307 Log.d(TAG, String.format("fill %d buffer: %s", i, this));
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDeviceImpl.java67 private final String TAG; field in class:CameraDeviceImpl
249 TAG = tag;
305 Log.wtf(TAG, "Unknown failure in opening camera device: " + failure.getReason());
440 Log.w(TAG, "Stream configuration failed");
486 Log.d(TAG, "createCaptureSessionByOutputConfiguration");
498 Log.d(TAG, "createReprocessableCaptureSession");
539 Log.d(TAG, "createCaptureSessionInternal");
576 Log.v(TAG, "createCaptureSession - failed with exception ", e);
710 Log.d(TAG, "calling capture");
749 Log.v(TAG, Strin
[all...]
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java142 private static final String TAG = "AudioService"; field in class:AudioService
145 protected static final boolean DEBUG_MODE = Log.isLoggable(TAG + ".MOD", Log.DEBUG);
148 protected static final boolean DEBUG_AP = Log.isLoggable(TAG + ".AP", Log.DEBUG);
151 protected static final boolean DEBUG_VOL = Log.isLoggable(TAG + ".VOL", Log.DEBUG);
154 protected static final boolean DEBUG_DEVICES = Log.isLoggable(TAG + ".DEVICES", Log.DEBUG);
636 updateStreamVolumeAlias(false /*updateVolumes*/, TAG);
667 Log.v(TAG, "monitoring device orientation");
675 Log.v(TAG, "monitoring device rotation, initial=" + mDeviceRotation);
735 TAG,
759 Log.e(TAG, "Medi
5798 private static final String TAG = "VolumeController"; field in class:AudioService.VolumeController
6116 private static final String TAG = "AudioPolicyProxy"; field in class:AudioService.AudioPolicyProxy
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DSELinuxMMAC.java56 static final String TAG = "SELinuxMMAC"; field in class:SELinuxMMAC
124 Slog.d(TAG, "Using policy file " + MAC_PERMISSIONS);
154 Slog.w(TAG, sb.toString());
157 Slog.w(TAG, "Exception parsing " + MAC_PERMISSIONS, ioe);
167 Slog.w(TAG, "ERROR! Duplicate entries found parsing " + MAC_PERMISSIONS);
176 Slog.d(TAG, "Policy: " + policy.toString());
356 Slog.i(TAG, "package (" + pkg.packageName + ") labeled with " +
365 Slog.i(TAG, "package (" + pkg.packageName + ") doesn't match any policy; " +
384 Slog.e(TAG, "Error with hashing seapp_contexts.", ioe);
393 Slog.w(TAG, "Erro
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsNumberUtils.java45 private static final String TAG = "SmsNumberUtils"; field in class:SmsNumberUtils
145 if (DBG) Rlog.d(TAG, "NANP type: " + getNumberPlanType(nanpState));
175 if (DBG) Rlog.d(TAG, "International type: " + getNumberPlanType(internationalState));
273 Rlog.e(TAG, "Can't access HbpcdLookup database", e);
282 if (DBG) Rlog.d(TAG, "MCC = " + mcc + ", all IDDs = " + allIDDs);
445 if (DBG) Rlog.d(TAG, "Country code = " + tempCC);
482 Rlog.e(TAG, "Can't access HbpcdLookup database", e);
534 if (DBG) Rlog.d(TAG, "enter filterDestAddr. destAddr=\"" + destAddr + "\"" );
537 Rlog.w(TAG, "destAddr" + destAddr + " is not a global phone number! Nothing changed.");
555 Rlog.d(TAG, "destAdd
[all...]
/frameworks/base/core/java/android/app/
H A DWallpaperManager.java73 private static String TAG = "WallpaperManager"; field in class:WallpaperManager
274 Log.w(TAG, "No memory load current wallpaper", e);
297 Log.w(TAG, "WallpaperService not running");
310 Log.w(TAG, "Can't decode file", e);
332 Log.w(TAG, "Can't decode stream", e);
417 Log.w(TAG, "WallpaperService not running");
427 Log.e(TAG, "default wallpaper input stream is null");
444 Log.e(TAG, "default wallpaper dimensions are 0");
469 Log.w(TAG, "crop has bad values for full size image");
482 Log.w(TAG, "canno
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcActivityManager.java45 static final String TAG = NfcAdapter.TAG; field in class:NfcActivityManager
74 Log.e(TAG, "-ve refcount for " + app);
100 Log.e(TAG, "app was not registered " + app);
239 if (DBG) Log.d(TAG, "Setting reader mode");
385 Log.e(TAG, "Uri not allowed to be null.");
391 Log.e(TAG, "Uri needs to have " +
461 if (DBG) Log.d(TAG, "onResume() for " + activity + " " + state);
481 if (DBG) Log.d(TAG, "onPause() for " + activity + " " + state);
506 if (DBG) Log.d(TAG, "onDestro
[all...]
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java68 private static final String TAG = "DefContainer"; field in class:DefaultContainerService
97 Slog.w(TAG, "Make sure sdcard is mounted.");
111 Slog.w(TAG, "Failed to copy package at " + packagePath, e);
139 Slog.w(TAG, "Failed to copy package at " + packagePath + ": " + e);
159 Slog.i(TAG, "Invalid package file " + packagePath);
171 Slog.w(TAG, "Failed to parse package at " + packagePath + ": " + e);
201 Slog.d(TAG, "Couldn't get OBB info for " + filename);
259 Slog.w(TAG, "Failed to calculate installed size: " + e);
381 Slog.d(TAG, "Copying " + sourcePath + " to " + targetName);
400 Slog.d(TAG, "Copyin
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsCache.java19 import static com.android.documentsui.DocumentsActivity.TAG;
94 if (LOGD) Log.d(TAG, "Updating roots due to change at " + uri);
139 Log.w(TAG, "Timeout waiting for first update");
151 if (LOGD) Log.d(TAG, "Loading stopped authority " + authority);
202 Log.d(TAG, "Update found " + mTaskRoots.size() + " roots in " + delta + "ms");
216 if (LOGD) Log.d(TAG, "Ignoring stopped authority " + info.authority);
226 if (LOGD) Log.d(TAG, "Used cached roots for " + info.authority);
244 if (LOGD) Log.d(TAG, "Loading roots for " + authority);
267 Log.w(TAG, "Failed to load some roots from " + authority + ": " + e);
388 if (LOGD) Log.d(TAG, "Excludin
[all...]

Completed in 1246 milliseconds

<<31323334353637383940>>