HomeSort by relevance Sort by last modified time
    Searched defs:Slog (Results 151 - 175 of 207) sorted by null

1 2 3 4 5 67 8 9

  /frameworks/base/core/java/android/content/pm/
PackageParser.java 35 import android.util.Slog;
471 Slog.w(TAG, "Exception reading " + je.getName() + " in "
474 Slog.w(TAG, "Exception reading " + je.getName() + " in "
499 Slog.w(TAG, "Skipping dir: " + mArchiveSourcePath);
508 Slog.w(TAG, "Skipping non-package file: " + mArchiveSourcePath);
515 Slog.d(TAG, "Scanning package: " + mArchiveSourcePath);
531 Slog.w(TAG, "Failed adding asset path:"+mArchiveSourcePath);
534 Slog.w(TAG, "Unable to read AndroidManifest.xml of "
559 Slog.w(TAG, mArchiveSourcePath, errorException);
561 Slog.w(TAG, mArchiveSourcePath + " (at
    [all...]
  /frameworks/base/services/java/com/android/server/
DevicePolicyManagerService.java 87 import android.util.Slog;
189 if (DBG) Slog.v(TAG, "Sending password expiration notifications for action "
454 Slog.w(TAG, "Unknown admin tag: " + tag);
516 if (DBG) Slog.d(TAG, "Handling package changes for user " + userHandle);
588 Slog.w(TAG, "Tried to remove device policy file for user 0! Ignoring.");
598 Slog.i(TAG, "Removed device policy file " + policyFile.getAbsolutePath());
    [all...]
InputMethodManagerService.java 88 import android.util.Slog;
446 Slog.w(TAG, "Unexpected intent " + intent);
457 Slog.d(TAG, "--- ignore this call back from a background user: " + userId);
515 Slog.i(TAG, "Input method uninstalled, disabling: "
540 Slog.i(TAG, "Current input method removed: " + curInputMethodId);
545 Slog.i(TAG, "Unsetting current input method");
593 Slog.w(TAG, "HardKeyboardStatusChanged: available = " + available + ", enabled = "
672 Slog.w(TAG, "Couldn't get current user ID; guessing it's 0", e);
685 Slog.d(TAG, "Initial default ime = " + defaultImiId);
694 Slog.w(TAG, "No IME selected. Choose the most applicable IME.")
    [all...]
AlarmManagerService.java 42 import android.util.Slog;
170 Slog.v(TAG, "Adding " + alarm + " to " + this);
181 Slog.v(TAG, " => now " + this);
499 Slog.w(TAG, "Failed to open alarm driver. Falling back to a handler.");
526 Slog.w(TAG, "set/setRepeating ignored because there is no intent");
533 Slog.w(TAG, "Window length " + windowLength
545 Slog.w(TAG, "Invalid alarm trigger time! " + triggerAtTime + " from uid=" + who
563 Slog.v(TAG, "set(" + operation + ") : type=" + type
597 Slog.v(TAG, "Tipping-point operation: type=" + type + " when=" + when
620 Slog.v(TAG, bs.toString())
    [all...]
MountService.java 59 import android.util.Slog;
329 Slog.i(TAG, "onServiceConnected");
336 Slog.i(TAG, "onServiceDisconnected");
366 if (DEBUG_UNMOUNT) Slog.i(TAG, "Unmounting " + path);
400 Slog.w(TAG, "RemoteException when shutting down");
418 if (DEBUG_UNMOUNT) Slog.i(TAG, "H_UNMOUNT_PM_UPDATE");
421 if (DEBUG_UNMOUNT) Slog.i(TAG, " registered = " + mUpdatingStatus);
424 if (DEBUG_UNMOUNT) Slog.i(TAG, "Updating external media status on PackageManager");
431 if (DEBUG_UNMOUNT) Slog.i(TAG, "H_UNMOUNT_PM_DONE");
432 if (DEBUG_UNMOUNT) Slog.i(TAG, "Updated status. Processing requests")
    [all...]
AppOpsService.java 48 import android.util.Slog;
216 Slog.i(TAG, "Pruning old package " + ops.packageName
256 Slog.w(TAG, "Writing app ops before shutdown...");
579 Slog.w(TAG, "Noting op not finished: uid " + uid + " pkg " + packageName
661 Slog.w(TAG, "Finishing op nesting under-run: uid " + op.uid + " pkg "
725 Slog.w(TAG, "Bad call: specified package " + packageName
784 Slog.i(TAG, "No existing app ops " + mFile.getBaseFile() + "; starting empty");
812 Slog.w(TAG, "Unknown element under <app-ops>: "
819 Slog.w(TAG, "Failed parsing " + e);
821 Slog.w(TAG, "Failed parsing " + e)
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityStackSupervisor.java 70 import android.util.Slog;
273 if (DEBUG_STACK) Slog.d(TAG, "moveHomeTask: mStackState old=" +
342 if (DEBUG_STACK) Slog.i(TAG, "removeTask: removing stack " + stack);
383 Slog.e(TAG, "Starting activities not supported on headless device: "
389 Slog.w(TAG, "Exception in new application when starting activity "
429 if (DEBUG_STACK) Slog.d(TAG, "allResumedActivitiesComplete: mStackState old=" +
435 if (DEBUG_STACK) Slog.d(TAG, "allResumedActivitiesComplete: mStackState old=" +
465 if (DEBUG_STATES) Slog.d(TAG, "pauseBackStacks: stack=" + stack +
483 Slog.d(TAG, "allPausedActivitiesComplete: r=" + r + " state=" + r.state);
668 if (DEBUG_CONFIGURATION) Slog.v(TAG
    [all...]
ActiveServices.java 59 import android.util.Slog;
189 if (DEBUG_DELAYED_STARTS) Slog.v(TAG, "No longer background starting: " + r);
193 if (DEBUG_DELAYED_STARTS) Slog.v(TAG, "No longer delaying start: " + r);
203 Slog.i(TAG, "Waited long enough for: " + r);
211 if (DEBUG_DELAYED_STARTS) Slog.v(TAG, "REM FR DELAY LIST (exec next): " + r);
213 Slog.w(TAG, "**** NO PENDING STARTS! " + r + " startReq=" + r.startRequested
218 Slog.v(TAG, "Remaining delayed list:");
220 Slog.v(TAG, " #" + i + ": " + mDelayedStartList.get(i));
230 if (DEBUG_DELAYED_SERVICE) Slog.v(TAG, "Top bg start is " + next
254 Slog.v(TAG_MU, "getServiceByName(" + name + "), callingUser = " + callingUser)
    [all...]
ProcessList.java 29 import android.util.Slog;
200 Slog.i("XXXXXX", "scaleMem=" + scaleMem);
201 Slog.i("XXXXXX", "scaleDisp=" + scaleDisp + " dw=" + displayWidth
216 Slog.i("XXXXXX", "minfree_adj=" + minfree_adj + " minfree_abs=" + minfree_abs);
271 //Slog.i("XXXXXXX", "******************************* MINFREE: " + memString);
515 Slog.w(ActivityManagerService.TAG, "Unable to write " + path);
ActivityRecord.java 45 import android.util.Slog;
337 Slog.w(ActivityManagerService.TAG, "Bad activity token: " + token, e);
486 Slog.d(TAG, "!!! REMOVE THIS LOG !!! setTask: nearly removed stack=" +
651 Slog.w(ActivityManagerService.TAG,
654 Slog.w(ActivityManagerService.TAG,
    [all...]
ActivityStack.java 76 import android.util.Slog;
258 // if (localLOGV) Slog.v(TAG, "Handler started!");
271 Slog.w(TAG, "Activity pause timeout for " + r);
291 Slog.w(TAG, "Activity destroy timeout for " + r);
300 Slog.w(TAG, "Activity stop timeout for " + r);
431 if (task.stack != this) Slog.w(TAG,
481 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
486 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
492 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
496 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls=
    [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
PrintSpoolerService.java 46 import android.util.Slog;
209 Slog.e(LOG_TAG, "Error notify for a queued print job.", re);
220 Slog.e(LOG_TAG, "Error notify for all print jobs per service"
231 Slog.e(LOG_TAG, "Error notify for all print job handled.", re);
246 Slog.e(LOG_TAG, "Error notify for print job state change.", re);
438 Slog.i(LOG_TAG, "[ADD] " + printJob);
451 Slog.i(LOG_TAG, "[REMOVE] " + printJob.getId().flattenToString());
468 Slog.i(LOG_TAG, "[REMOVE FILE FOR] " + printJobId);
491 Slog.i(LOG_TAG, "[STATE CHANGED] " + printJob);
    [all...]
  /frameworks/base/services/java/com/android/server/accessibility/
TouchExplorer.java 30 import android.util.Slog;
314 Slog.d(LOG_TAG, "Received event: " + event + ", policyFlags=0x"
316 Slog.d(LOG_TAG, getStateSymbolicName(mCurrentState));
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
AsyncChannel.java 30 import android.util.Slog;
904 Slog.d(TAG, s);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
WindowOrientationListener.java 28 import android.util.Slog;
402 Slog.v(TAG, "Raw acceleration vector: "
419 Slog.v(TAG, "Resetting orientation listener.");
429 Slog.v(TAG, "Filtered acceleration vector: "
448 Slog.v(TAG, "Ignoring sensor data, magnitude too close to zero.");
483 Slog.v(TAG, "Ignoring sensor data, tilt angle too high: "
510 Slog.v(TAG, "Predicted: "
520 Slog.v(TAG, "Ignoring sensor data, no predicted rotation: "
539 Slog.v(TAG, "Result: currentRotation=" + mCurrentRotation
560 Slog.v(TAG, "Proposed rotation changed! proposedRotation=" + proposedRotatio
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardServiceDelegate.java 14 import android.util.Slog;
215 Slog.w(TAG, "onScreenTurnedOn(): no keyguard service!");
  /frameworks/base/services/java/com/android/server/power/
Notifier.java 43 import android.util.Slog;
134 Slog.d(TAG, "onWakeLockAcquired: flags=" + flags + ", tag=\"" + tag
161 Slog.d(TAG, "onWakeLockReleased: flags=" + flags + ", tag=\"" + tag
196 Slog.d(TAG, "onScreenOn");
211 Slog.d(TAG, "onScreenOff");
226 Slog.d(TAG, "onScreenBrightness: brightness=" + brightness);
242 Slog.d(TAG, "onWakeUpStarted");
264 Slog.d(TAG, "onWakeUpFinished");
273 Slog.d(TAG, "onGoToSleepStarted");
292 Slog.d(TAG, "onGoToSleepFinished")
    [all...]
PowerManagerService.java 61 import android.util.Slog;
621 Slog.d(TAG, "acquireWakeLockInternal: lock=" + Objects.hashCode(lock)
692 Slog.d(TAG, "releaseWakeLockInternal: lock=" + Objects.hashCode(lock)
700 Slog.d(TAG, "releaseWakeLockInternal: lock=" + Objects.hashCode(lock)
721 Slog.d(TAG, "handleWakeLockDeath: lock=" + Objects.hashCode(wakeLock.mLock)
    [all...]
DisplayPowerController.java 39 import android.util.Slog;
389 Slog.e(TAG, "Error in config.xml. config_autoBrightnessLcdBacklightValues "
443 Slog.d(TAG, "Auto-brightness spline: " + spline);
445 Slog.d(TAG, String.format(" %7.1f: %7.1f", v, spline.interpolate(v)));
450 Slog.e(TAG, "Could not create auto-brightness spline.", ex);
479 Slog.d(TAG, "requestPowerState: "
746 Slog.d(TAG, "Display ready!");
758 Slog.d(TAG, "Blocked screen on.");
    [all...]
  /frameworks/base/services/java/com/android/server/wifi/
WifiController.java 40 import android.util.Slog;
338 if (DBG) Slog.d(TAG, "set idle timer: " + mIdleMillis + " ms");
359 if (DBG) Slog.d(TAG, "battery changed pluggedType: " + pluggedType);
363 if (DBG) Slog.d(TAG, "set idle timer for " + mIdleMillis + "ms");
  /frameworks/base/services/java/com/android/server/wm/
AppTransition.java 25 import android.util.Slog;
249 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: layout params pkg="
261 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: picked package="
270 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: package="
276 if (DEBUG_ANIM) Slog.v(TAG, "Loading animations: picked package="
488 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
495 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
508 Slog.v(TAG, "applyAnimation:"
568 if (DEBUG_APP_TRANSITIONS || DEBUG_ANIM) Slog.v(TAG,
    [all...]
StackBox.java 20 import android.util.Slog;
250 if (DEBUG_STACK) Slog.i(TAG, "StackBox.remove: removing top plane.");
260 if (DEBUG_STACK) Slog.i(TAG, "StackBox.remove: grandparent null");
264 if (DEBUG_STACK) Slog.i(TAG, "StackBox.remove: grandparent getting sibling");
  /frameworks/base/core/java/android/content/res/
Resources.java 36 import android.util.Slog;
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsService.java 114 import android.util.Slog;
290 Slog.w(TAG, "bandwidth controls disabled, unable to track stats");
448 Slog.w(TAG, "problem registering for global alert: " + e);
672 Slog.v(TAG, "advisePersistThreshold() given " + thresholdBytes + ", clamped to "
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ProcessStats.java 28 import android.util.Slog;
242 if (DEBUG) Slog.d(TAG, "Adding pkg " + pkgName + " uid " + uid
247 if (DEBUG) Slog.d(TAG, "Existing process is single-package, splitting");
259 if (DEBUG) Slog.d(TAG, "Adding pkg " + pkgName + " uid " + uid
275 if (DEBUG) Slog.d(TAG, "Adding uid " + uid + " proc " + otherProc.mName);
277 if (DEBUG) Slog.d(TAG, "Creating new process!");
290 if (DEBUG) Slog.d(TAG, "Total duration #" + i + " inc by "
    [all...]

Completed in 1255 milliseconds

1 2 3 4 5 67 8 9