Searched refs:TAG (Results 276 - 300 of 931) sorted by relevance

<<11121314151617181920>>

/frameworks/base/services/java/com/android/server/wm/
H A DWindowStateAnimator.java58 static final String TAG = "WindowStateAnimator"; field in class:WindowStateAnimator
182 if (localLOGV) Slog.v(TAG, "Setting animation in " + this + ": " + anim);
239 TAG, "Stepped animation in " + this +
258 TAG, "Starting animation in " + this +
278 TAG, "Finished animation in " + this +
315 TAG, "Animation done in " + this + ": exiting=" + mWin.mExiting
334 if (DEBUG_LAYERS) Slog.v(TAG, "Stepping win " + this
340 Slog.v(TAG, "Policy visibility changing after anim in " + this + ": "
361 if (DEBUG_STARTING_WINDOW) Slog.v(TAG, "Finish starting "
382 TAG, "finishExi
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java51 private static final String TAG = "GSM"; field in class:GsmSMSDispatcher
106 Log.d(TAG, "Successfully wrote SMS-PP message to UICC");
109 Log.d(TAG, "Failed to write SMS-PP message to UICC", ar.exception);
163 Log.e(TAG, "dispatchMessage: message is null");
172 Log.d(TAG, "Received short message type 0, Don't display or store it. Send Ack");
185 Log.d(TAG, "Received SMS-PP data download, sending to UICC.");
188 Log.d(TAG, "DATA_DL_VIA_SMS_PP service not available, storing message to UICC.");
201 Log.d(TAG, "Received short message on device which doesn't support "
212 Log.d(TAG, "Received voice mail indicator set SMS shouldStore=" + !handled);
218 Log.d(TAG, "Receive
[all...]
/frameworks/base/core/java/android/app/
H A DSearchManager.java66 private static final String TAG = "SearchManager"; field in class:SearchManager
543 Log.w(TAG, "No global search activity found.");
568 if (DBG) Log.d(TAG, "Starting global search: " + intent.toUri(0));
571 Log.e(TAG, "Global search activity not found: " + globalSearchActivity);
585 Log.e(TAG, "getGlobalSearchActivities() failed: " + ex);
597 Log.e(TAG, "getGlobalSearchActivity() failed: " + ex);
615 Log.e(TAG, "getWebSearchActivity() failed: " + ex);
641 Log.w(TAG, "triggerSearch called with empty query, ignoring.");
753 Log.e(TAG, "getSearchableInfo() failed: " + ex);
838 Log.e(TAG, "getSearchablesInGlobalSearc
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java173 static final String TAG = "PackageManager"; field in class:PackageManagerService
448 if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceConnected");
455 if (DEBUG_SD_INSTALL) Log.i(TAG, "onServiceDisconnected");
481 if (DEBUG_SD_INSTALL) Log.i(TAG, "Trying to bind to" +
518 if (DEBUG_INSTALL) Slog.i(TAG, "init_copy");
521 if (DEBUG_INSTALL) Slog.i(TAG, "idx=" + idx);
529 Slog.e(TAG, "Failed to bind to media container service");
548 if (DEBUG_INSTALL) Slog.i(TAG, "mcs_bound");
554 Slog.e(TAG, "Cannot bind to media container service");
566 if (DEBUG_SD_INSTALL) Log.i(TAG,
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFilter.java71 private static final String TAG = "Filter"; field in class:Filter
79 mLogVerbose = Log.isLoggable(TAG, Log.VERBOSE);
251 if (mLogVerbose) Log.v(TAG, "Default-setting output Frame timestamp on port " + name + " to " + mCurrentTimestamp);
261 if (mLogVerbose) Log.v(TAG, "Default-setting current timestamp from input port " + name + " to " + mCurrentTimestamp);
316 if (mLogVerbose) Log.v(TAG, "Filter " + this + " adding " + port);
332 if (mLogVerbose) Log.v(TAG, "Filter " + this + " adding " + port);
350 if (mLogVerbose) Log.v(TAG, "Filter " + this + " adding " + port);
368 if (mLogVerbose) Log.v(TAG, "Filter " + this + " adding " + fieldPort);
389 if (mLogVerbose) Log.v(TAG, "Filter " + this + " adding " + programPort);
447 if (mLogVerbose) Log.v(TAG, "Preparin
[all...]
H A DStopWatchMap.java29 private String TAG = "MFF"; field in class:StopWatch
61 Log.i(TAG, "AVG ms/call " + mName + ": " +
/frameworks/base/core/java/android/content/
H A DSyncStorageEngine.java65 private static final String TAG = "SyncManager"; field in class:SyncStorageEngine
445 if (Log.isLoggable(TAG, Log.VERBOSE)) {
446 Log.v(TAG, "reportChange " + which + " to: " + reports);
486 Log.d(TAG, "setSyncAutomatically: " + /* account + */" provider " + providerName
492 Log.d(TAG, "setSyncAutomatically: already set to " + sync + ", doing nothing");
534 Log.d(TAG, "setIsSyncable: " + account + ", provider " + providerName
540 Log.d(TAG, "setIsSyncable: already set to " + syncable + ", doing nothing");
566 if (Log.isLoggable(TAG, Log.VERBOSE)) {
567 Log.v(TAG, "setBackoff: " + account + ", provider " + providerName
617 if (Log.isLoggable(TAG, Lo
[all...]
/frameworks/base/core/java/android/app/backup/
H A DFileBackupHelper.java39 private static final String TAG = "FileBackupHelper"; field in class:FileBackupHelper
95 if (DEBUG) Log.d(TAG, "got entity '" + data.getKey() + "' size=" + data.size());
H A DSharedPreferencesBackupHelper.java71 private static final String TAG = "SharedPreferencesBackupHelper"; field in class:SharedPreferencesBackupHelper
123 if (DEBUG) Log.d(TAG, "got entity '" + key + "' size=" + data.size());
/frameworks/base/core/java/android/os/
H A DLatencyTimer.java39 final String TAG = "LatencyTimer"; field in class:LatencyTimer
76 Log.i(TAG, tag + " average = " + totalDelta / mSampleSize);
H A DSELinux.java32 private static final String TAG = "SELinux"; field in class:SELinux
171 Slog.e(TAG, "Error getting canonical path. Restorecon failed for " +
H A DTrace.java32 private static final String TAG = "Trace"; field in class:Trace
103 Log.w(TAG, "Unexpected value from nativeGetEnabledTags: " + tags);
/frameworks/base/core/java/android/view/
H A DDisplayEventReceiver.java35 private static final String TAG = "DisplayEventReceiver"; field in class:DisplayEventReceiver
129 Log.w(TAG, "Attempted to schedule a vertical sync pulse but the display event "
H A DInputChannel.java31 private static final String TAG = "InputChannel"; field in class:InputChannel
89 Slog.d(TAG, "Opening input channel pair '" + name + "'");
/frameworks/base/core/java/com/android/internal/net/
H A DLegacyVpnInfo.java32 private static final String TAG = "LegacyVpnInfo"; field in class:LegacyVpnInfo
89 Log.w(TAG, "Unhandled state " + info.getDetailedState()
/frameworks/base/core/java/com/android/internal/os/storage/
H A DExternalStorageFormatter.java29 static final String TAG = "ExternalStorageFormatter"; field in class:ExternalStorageFormatter
57 Log.i(TAG, "Received storage state changed notification that " +
130 Log.w(TAG, "Failed talking with mount service", e);
158 Log.w(TAG, "Failed talking with mount service", e);
196 Log.w(TAG, "Failed talking with mount service", e);
204 Log.w(TAG, "Unable to locate IMountService");
216 Log.w(TAG, "Unknown storage state: " + status);
239 Log.e(TAG, "Can't get mount service");
/frameworks/base/graphics/java/android/renderscript/
H A DScriptC.java36 private static final String TAG = "ScriptC"; field in class:ScriptC
97 Log.v(TAG, "Create script for resource = " + resName);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPolicy.java38 private static final String TAG = "PhonePolicy"; field in class:Policy
57 Log.e(TAG, "Could not preload class for phone policy: " + s);
/frameworks/base/services/java/com/android/server/
H A DShutdownActivity.java33 private static final String TAG = "ShutdownActivity"; field in class:ShutdownActivity
44 Slog.i(TAG, "onCreate(): confirm=" + mConfirm);
/frameworks/base/services/java/com/android/server/display/
H A DHeadlessDisplayAdapter.java31 private static final String TAG = "HeadlessDisplayAdapter"; field in class:HeadlessDisplayAdapter
36 super(syncRoot, context, handler, listener, TAG);
/frameworks/base/services/java/com/android/server/dreams/
H A DDreamController.java45 private static final String TAG = "DreamController"; field in class:DreamController
90 Slog.i(TAG, "Starting dream: name=" + name + ", isTest=" + isTest + ", userId=" + userId);
97 Slog.e(TAG, "Unable to add window token for dream.", ex);
108 Slog.e(TAG, "Unable to bind dream service: " + intent);
113 Slog.e(TAG, "Unable to bind dream service: " + intent, ex);
128 Slog.i(TAG, "Stopping dream: name=" + oldDream.mName
160 Slog.w(TAG, "Error removing window token for dream.", ex);
176 Slog.e(TAG, "The dream service died unexpectedly.", ex);
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
H A DRsBenchTest.java35 private String TAG = "RsBenchTest"; field in class:RsBenchTest
49 Log.v(TAG, "Run benchmark for " + iterations + " iterations.");
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DTimeStatsAggregator.java25 final String TAG = "TimeStatsAggregator"; field in class:TimeStatsAggregator
45 Log.e(TAG, "There is no Time feature called " + featureName);
/frameworks/base/media/java/android/media/
H A DMediaActionSound.java56 private static final String TAG = "MediaActionSound"; field in class:MediaActionSound
181 Log.e(TAG, "Unable to load sound for playback (status: " +
H A DMiniThumbFile.java47 private static final String TAG = "MiniThumbFile"; field in class:MiniThumbFile
72 // Log.v(TAG, "get minithumbfile for type: "+type);
108 Log.e(TAG, "Unable to create .thumbnails directory "
171 Log.v(TAG, "Got exception checking file magic: ", ex);
174 Log.e(TAG, "Got exception when reading magic, id = " + id +
212 Log.e(TAG, "couldn't save mini thumbnail data for "
217 Log.e(TAG, "couldn't save mini thumbnail data for "
258 Log.w(TAG, "got exception when reading thumbnail id=" + id + ", exception: " + ex);
261 Log.e(TAG, "Got exception when reading thumbnail, id = " + id +

Completed in 380 milliseconds

<<11121314151617181920>>