am 68e0da7e
: Merge "Quiet down a lot of logging." into jb-mr1.1-dev
* commit '68e0da7e397f6808a90509615c08c62bb00af6ba': Quiet down a lot of logging.
This commit is contained in:
@ -4420,12 +4420,14 @@ public final class ActivityThread {
|
||||
new ArrayList<IActivityManager.ContentProviderHolder>();
|
||||
|
||||
for (ProviderInfo cpi : providers) {
|
||||
if (DEBUG_PROVIDER) {
|
||||
StringBuilder buf = new StringBuilder(128);
|
||||
buf.append("Pub ");
|
||||
buf.append(cpi.authority);
|
||||
buf.append(": ");
|
||||
buf.append(cpi.name);
|
||||
Log.i(TAG, buf.toString());
|
||||
}
|
||||
IActivityManager.ContentProviderHolder cph = installProvider(context, null, cpi,
|
||||
false /*noisy*/, true /*noReleaseNeeded*/, true /*stable*/);
|
||||
if (cph != null) {
|
||||
|
@ -168,7 +168,7 @@ class ReceiverRestrictedContext extends ContextWrapper {
|
||||
* context object for Activity and other application components.
|
||||
*/
|
||||
class ContextImpl extends Context {
|
||||
private final static String TAG = "ApplicationContext";
|
||||
private final static String TAG = "ContextImpl";
|
||||
private final static boolean DEBUG = false;
|
||||
|
||||
private static final HashMap<String, SharedPreferencesImpl> sSharedPrefs =
|
||||
@ -1715,7 +1715,7 @@ class ContextImpl extends Context {
|
||||
private void warnIfCallingFromSystemProcess() {
|
||||
if (Process.myUid() == Process.SYSTEM_UID) {
|
||||
Slog.w(TAG, "Calling a method in the system process without a qualified user: "
|
||||
+ Debug.getCallers(3));
|
||||
+ Debug.getCallers(5));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -64,6 +64,7 @@ import java.util.List;
|
||||
public class SyncStorageEngine extends Handler {
|
||||
|
||||
private static final String TAG = "SyncManager";
|
||||
private static final boolean DEBUG = false;
|
||||
private static final boolean DEBUG_FILE = false;
|
||||
|
||||
private static final String XML_ATTR_NEXT_AUTHORITY_ID = "nextAuthorityId";
|
||||
@ -443,7 +444,7 @@ public class SyncStorageEngine extends Handler {
|
||||
mChangeListeners.finishBroadcast();
|
||||
}
|
||||
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "reportChange " + which + " to: " + reports);
|
||||
}
|
||||
|
||||
@ -484,13 +485,17 @@ public class SyncStorageEngine extends Handler {
|
||||
|
||||
public void setSyncAutomatically(Account account, int userId, String providerName,
|
||||
boolean sync) {
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "setSyncAutomatically: " + /* account + */" provider " + providerName
|
||||
+ ", user " + userId + " -> " + sync);
|
||||
}
|
||||
synchronized (mAuthorities) {
|
||||
AuthorityInfo authority = getOrCreateAuthorityLocked(account, userId, providerName, -1,
|
||||
false);
|
||||
if (authority.enabled == sync) {
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "setSyncAutomatically: already set to " + sync + ", doing nothing");
|
||||
}
|
||||
return;
|
||||
}
|
||||
authority.enabled = sync;
|
||||
@ -532,13 +537,17 @@ public class SyncStorageEngine extends Handler {
|
||||
} else if (syncable < -1) {
|
||||
syncable = -1;
|
||||
}
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "setIsSyncable: " + account + ", provider " + providerName
|
||||
+ ", user " + userId + " -> " + syncable);
|
||||
}
|
||||
synchronized (mAuthorities) {
|
||||
AuthorityInfo authority = getOrCreateAuthorityLocked(account, userId, providerName, -1,
|
||||
false);
|
||||
if (authority.syncable == syncable) {
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "setIsSyncable: already set to " + syncable + ", doing nothing");
|
||||
}
|
||||
return;
|
||||
}
|
||||
authority.syncable = syncable;
|
||||
@ -564,7 +573,7 @@ public class SyncStorageEngine extends Handler {
|
||||
|
||||
public void setBackoff(Account account, int userId, String providerName,
|
||||
long nextSyncTime, long nextDelay) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "setBackoff: " + account + ", provider " + providerName
|
||||
+ ", user " + userId
|
||||
+ " -> nextSyncTime " + nextSyncTime + ", nextDelay " + nextDelay);
|
||||
@ -615,7 +624,7 @@ public class SyncStorageEngine extends Handler {
|
||||
for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
|
||||
if (authorityInfo.backoffTime != NOT_IN_BACKOFF_MODE
|
||||
|| authorityInfo.backoffDelay != NOT_IN_BACKOFF_MODE) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "clearAllBackoffs:"
|
||||
+ " authority:" + authorityInfo.authority
|
||||
+ " account:" + accountInfo.accountAndUser.account.name
|
||||
@ -641,7 +650,7 @@ public class SyncStorageEngine extends Handler {
|
||||
|
||||
public void setDelayUntilTime(Account account, int userId, String providerName,
|
||||
long delayUntil) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "setDelayUntil: " + account + ", provider " + providerName
|
||||
+ ", user " + userId + " -> delayUntil " + delayUntil);
|
||||
}
|
||||
@ -677,7 +686,7 @@ public class SyncStorageEngine extends Handler {
|
||||
if (extras == null) {
|
||||
extras = new Bundle();
|
||||
}
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "addOrRemovePeriodicSync: " + account + ", user " + userId
|
||||
+ ", provider " + providerName
|
||||
+ " -> period " + period + ", extras " + extras);
|
||||
@ -833,7 +842,7 @@ public class SyncStorageEngine extends Handler {
|
||||
|
||||
public PendingOperation insertIntoPending(PendingOperation op) {
|
||||
synchronized (mAuthorities) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "insertIntoPending: account=" + op.account
|
||||
+ " user=" + op.userId
|
||||
+ " auth=" + op.authority
|
||||
@ -865,7 +874,7 @@ public class SyncStorageEngine extends Handler {
|
||||
public boolean deleteFromPending(PendingOperation op) {
|
||||
boolean res = false;
|
||||
synchronized (mAuthorities) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "deleteFromPending: account=" + op.account
|
||||
+ " user=" + op.userId
|
||||
+ " auth=" + op.authority
|
||||
@ -884,7 +893,7 @@ public class SyncStorageEngine extends Handler {
|
||||
AuthorityInfo authority = getAuthorityLocked(op.account, op.userId, op.authority,
|
||||
"deleteFromPending");
|
||||
if (authority != null) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "removing - " + authority);
|
||||
if (DEBUG) Log.v(TAG, "removing - " + authority);
|
||||
final int N = mPendingOperations.size();
|
||||
boolean morePending = false;
|
||||
for (int i=0; i<N; i++) {
|
||||
@ -898,7 +907,7 @@ public class SyncStorageEngine extends Handler {
|
||||
}
|
||||
|
||||
if (!morePending) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "no more pending!");
|
||||
if (DEBUG) Log.v(TAG, "no more pending!");
|
||||
SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
|
||||
status.pending = false;
|
||||
}
|
||||
@ -938,7 +947,7 @@ public class SyncStorageEngine extends Handler {
|
||||
*/
|
||||
public void doDatabaseCleanup(Account[] accounts, int userId) {
|
||||
synchronized (mAuthorities) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) Log.w(TAG, "Updating for new accounts...");
|
||||
if (DEBUG) Log.v(TAG, "Updating for new accounts...");
|
||||
SparseArray<AuthorityInfo> removing = new SparseArray<AuthorityInfo>();
|
||||
Iterator<AccountInfo> accIt = mAccounts.values().iterator();
|
||||
while (accIt.hasNext()) {
|
||||
@ -946,8 +955,8 @@ public class SyncStorageEngine extends Handler {
|
||||
if (!ArrayUtils.contains(accounts, acc.accountAndUser.account)
|
||||
&& acc.accountAndUser.userId == userId) {
|
||||
// This account no longer exists...
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
Log.w(TAG, "Account removed: " + acc.accountAndUser);
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "Account removed: " + acc.accountAndUser);
|
||||
}
|
||||
for (AuthorityInfo auth : acc.authorities.values()) {
|
||||
removing.put(auth.ident, auth);
|
||||
@ -993,7 +1002,7 @@ public class SyncStorageEngine extends Handler {
|
||||
public SyncInfo addActiveSync(SyncManager.ActiveSyncContext activeSyncContext) {
|
||||
final SyncInfo syncInfo;
|
||||
synchronized (mAuthorities) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "setActiveSync: account="
|
||||
+ activeSyncContext.mSyncOperation.account
|
||||
+ " auth=" + activeSyncContext.mSyncOperation.authority
|
||||
@ -1021,7 +1030,7 @@ public class SyncStorageEngine extends Handler {
|
||||
*/
|
||||
public void removeActiveSync(SyncInfo syncInfo, int userId) {
|
||||
synchronized (mAuthorities) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "removeActiveSync: account=" + syncInfo.account
|
||||
+ " user=" + userId
|
||||
+ " auth=" + syncInfo.authority);
|
||||
@ -1046,7 +1055,7 @@ public class SyncStorageEngine extends Handler {
|
||||
long now, int source, boolean initialization) {
|
||||
long id;
|
||||
synchronized (mAuthorities) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "insertStartSyncEvent: account=" + accountName + "user=" + userId
|
||||
+ " auth=" + authorityName + " source=" + source);
|
||||
}
|
||||
@ -1068,7 +1077,7 @@ public class SyncStorageEngine extends Handler {
|
||||
mSyncHistory.remove(mSyncHistory.size()-1);
|
||||
}
|
||||
id = item.historyId;
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) Log.v(TAG, "returning historyId " + id);
|
||||
if (DEBUG) Log.v(TAG, "returning historyId " + id);
|
||||
}
|
||||
|
||||
reportChange(ContentResolver.SYNC_OBSERVER_TYPE_STATUS);
|
||||
@ -1096,7 +1105,7 @@ public class SyncStorageEngine extends Handler {
|
||||
public void stopSyncEvent(long historyId, long elapsedTime, String resultMessage,
|
||||
long downstreamActivity, long upstreamActivity) {
|
||||
synchronized (mAuthorities) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "stopSyncEvent: historyId=" + historyId);
|
||||
}
|
||||
SyncHistoryItem item = null;
|
||||
@ -1358,7 +1367,7 @@ public class SyncStorageEngine extends Handler {
|
||||
AccountInfo accountInfo = mAccounts.get(au);
|
||||
if (accountInfo == null) {
|
||||
if (tag != null) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, tag + ": unknown account " + au);
|
||||
}
|
||||
}
|
||||
@ -1367,7 +1376,7 @@ public class SyncStorageEngine extends Handler {
|
||||
AuthorityInfo authority = accountInfo.authorities.get(authorityName);
|
||||
if (authority == null) {
|
||||
if (tag != null) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, tag + ": unknown authority " + authorityName);
|
||||
}
|
||||
}
|
||||
@ -1392,7 +1401,7 @@ public class SyncStorageEngine extends Handler {
|
||||
mNextAuthorityId++;
|
||||
doWrite = true;
|
||||
}
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.v(TAG, "created a new AuthorityInfo for " + accountName
|
||||
+ ", user " + userId
|
||||
+ ", provider " + authorityName);
|
||||
|
@ -69,6 +69,7 @@ import java.util.Map;
|
||||
*/
|
||||
public abstract class RegisteredServicesCache<V> {
|
||||
private static final String TAG = "PackageManager";
|
||||
private static final boolean DEBUG = false;
|
||||
|
||||
public final Context mContext;
|
||||
private final String mInterfaceName;
|
||||
@ -195,7 +196,7 @@ public abstract class RegisteredServicesCache<V> {
|
||||
}
|
||||
|
||||
private void notifyListener(final V type, final int userId, final boolean removed) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
Log.d(TAG, "notifyListener: " + type + " is " + (removed ? "removed" : "added"));
|
||||
}
|
||||
RegisteredServicesCacheListener<V> listener;
|
||||
@ -291,7 +292,9 @@ public abstract class RegisteredServicesCache<V> {
|
||||
* given {@link UserHandle}.
|
||||
*/
|
||||
private void generateServicesMap(int userId) {
|
||||
if (DEBUG) {
|
||||
Slog.d(TAG, "generateServicesMap() for " + userId);
|
||||
}
|
||||
|
||||
final PackageManager pm = mContext.getPackageManager();
|
||||
final ArrayList<ServiceInfo<V>> serviceInfos = new ArrayList<ServiceInfo<V>>();
|
||||
@ -322,6 +325,7 @@ public abstract class RegisteredServicesCache<V> {
|
||||
}
|
||||
|
||||
StringBuilder changes = new StringBuilder();
|
||||
boolean changed = false;
|
||||
for (ServiceInfo<V> info : serviceInfos) {
|
||||
// four cases:
|
||||
// - doesn't exist yet
|
||||
@ -334,19 +338,23 @@ public abstract class RegisteredServicesCache<V> {
|
||||
// - add, notify user that it was added
|
||||
Integer previousUid = user.persistentServices.get(info.type);
|
||||
if (previousUid == null) {
|
||||
if (DEBUG) {
|
||||
changes.append(" New service added: ").append(info).append("\n");
|
||||
}
|
||||
changed = true;
|
||||
user.services.put(info.type, info);
|
||||
user.persistentServices.put(info.type, info.uid);
|
||||
if (!(mPersistentServicesFileDidNotExist && firstScan)) {
|
||||
notifyListener(info.type, userId, false /* removed */);
|
||||
}
|
||||
} else if (previousUid == info.uid) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
if (DEBUG) {
|
||||
changes.append(" Existing service (nop): ").append(info).append("\n");
|
||||
}
|
||||
user.services.put(info.type, info);
|
||||
} else if (inSystemImage(info.uid)
|
||||
|| !containsTypeAndUid(serviceInfos, info.type, previousUid)) {
|
||||
if (DEBUG) {
|
||||
if (inSystemImage(info.uid)) {
|
||||
changes.append(" System service replacing existing: ").append(info)
|
||||
.append("\n");
|
||||
@ -354,15 +362,19 @@ public abstract class RegisteredServicesCache<V> {
|
||||
changes.append(" Existing service replacing a removed service: ")
|
||||
.append(info).append("\n");
|
||||
}
|
||||
}
|
||||
changed = true;
|
||||
user.services.put(info.type, info);
|
||||
user.persistentServices.put(info.type, info.uid);
|
||||
notifyListener(info.type, userId, false /* removed */);
|
||||
} else {
|
||||
// ignore
|
||||
if (DEBUG) {
|
||||
changes.append(" Existing service with new uid ignored: ").append(info)
|
||||
.append("\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ArrayList<V> toBeRemoved = Lists.newArrayList();
|
||||
for (V v1 : user.persistentServices.keySet()) {
|
||||
@ -371,22 +383,25 @@ public abstract class RegisteredServicesCache<V> {
|
||||
}
|
||||
}
|
||||
for (V v1 : toBeRemoved) {
|
||||
user.persistentServices.remove(v1);
|
||||
if (DEBUG) {
|
||||
changes.append(" Service removed: ").append(v1).append("\n");
|
||||
}
|
||||
changed = true;
|
||||
user.persistentServices.remove(v1);
|
||||
notifyListener(v1, userId, true /* removed */);
|
||||
}
|
||||
if (DEBUG) {
|
||||
if (changes.length() > 0) {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
Log.d(TAG, "generateServicesMap(" + mInterfaceName + "): " +
|
||||
serviceInfos.size() + " services:\n" + changes);
|
||||
}
|
||||
writePersistentServicesLocked();
|
||||
} else {
|
||||
if (Log.isLoggable(TAG, Log.VERBOSE)) {
|
||||
Log.d(TAG, "generateServicesMap(" + mInterfaceName + "): " +
|
||||
serviceInfos.size() + " services unchanged");
|
||||
}
|
||||
}
|
||||
if (changed) {
|
||||
writePersistentServicesLocked();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -92,7 +92,7 @@ public class SearchManagerService extends ISearchManager.Stub {
|
||||
Searchables searchables = mSearchables.get(userId);
|
||||
|
||||
if (searchables == null) {
|
||||
Log.i(TAG, "Building list of searchable activities for userId=" + userId);
|
||||
//Log.i(TAG, "Building list of searchable activities for userId=" + userId);
|
||||
searchables = new Searchables(mContext, userId);
|
||||
searchables.buildSearchableList();
|
||||
mSearchables.append(userId, searchables);
|
||||
|
@ -51,7 +51,7 @@ public class PackageHelper {
|
||||
public static final int RECOMMEND_FAILED_INVALID_URI = -6;
|
||||
public static final int RECOMMEND_FAILED_VERSION_DOWNGRADE = -7;
|
||||
|
||||
private static final boolean localLOGV = true;
|
||||
private static final boolean localLOGV = false;
|
||||
private static final String TAG = "PackageHelper";
|
||||
// App installation location settings values
|
||||
public static final int APP_INSTALL_AUTO = 0;
|
||||
|
@ -143,10 +143,6 @@
|
||||
<item>@drawable/menu_dropdown_panel_holo_dark</item>
|
||||
<item>@drawable/overscroll_edge</item>
|
||||
<item>@drawable/overscroll_glow</item>
|
||||
<item>@drawable/popup_inline_error_above_holo_dark</item>
|
||||
<item>@drawable/popup_inline_error_above_holo_light</item>
|
||||
<item>@drawable/popup_inline_error_holo_dark</item>
|
||||
<item>@drawable/popup_inline_error_holo_light</item>
|
||||
<item>@drawable/spinner_16_outer_holo</item>
|
||||
<item>@drawable/spinner_16_inner_holo</item>
|
||||
<item>@drawable/spinner_48_outer_holo</item>
|
||||
@ -257,8 +253,6 @@
|
||||
<item>@drawable/ab_solid_shadow_holo</item>
|
||||
<item>@drawable/item_background_holo_dark</item>
|
||||
<item>@drawable/item_background_holo_light</item>
|
||||
<item>@drawable/ic_ab_back_holo_dark</item>
|
||||
<item>@drawable/ic_ab_back_holo_light</item>
|
||||
<item>@drawable/fastscroll_thumb_holo</item>
|
||||
<item>@drawable/fastscroll_thumb_pressed_holo</item>
|
||||
<item>@drawable/fastscroll_thumb_default_holo</item>
|
||||
|
@ -80,7 +80,7 @@ import libcore.io.StructStatFs;
|
||||
*/
|
||||
public class DefaultContainerService extends IntentService {
|
||||
private static final String TAG = "DefContainer";
|
||||
private static final boolean localLOGV = true;
|
||||
private static final boolean localLOGV = false;
|
||||
|
||||
private static final String LIB_DIR_NAME = "lib";
|
||||
|
||||
|
@ -455,8 +455,8 @@ public class SettingsProvider extends ContentProvider {
|
||||
cache.setFullyMatchesDisk(false);
|
||||
Log.d(TAG, "row count exceeds max cache entries for table " + table);
|
||||
}
|
||||
Log.d(TAG, "cache for settings table '" + table + "' rows=" + rows + "; fullycached=" +
|
||||
cache.fullyMatchesDisk());
|
||||
if (LOCAL_LOGV) Log.d(TAG, "cache for settings table '" + table
|
||||
+ "' rows=" + rows + "; fullycached=" + cache.fullyMatchesDisk());
|
||||
}
|
||||
} finally {
|
||||
c.close();
|
||||
|
@ -33,6 +33,7 @@ import android.util.Slog;
|
||||
|
||||
public class StorageNotification extends StorageEventListener {
|
||||
private static final String TAG = "StorageNotification";
|
||||
private static final boolean DEBUG = false;
|
||||
|
||||
private static final boolean POP_UMS_ACTIVITY_ON_CONNECT = true;
|
||||
|
||||
@ -70,8 +71,8 @@ public class StorageNotification extends StorageEventListener {
|
||||
|
||||
mStorageManager = (StorageManager) context.getSystemService(Context.STORAGE_SERVICE);
|
||||
final boolean connected = mStorageManager.isUsbMassStorageConnected();
|
||||
Slog.d(TAG, String.format( "Startup with UMS connection %s (media state %s)", mUmsAvailable,
|
||||
Environment.getExternalStorageState()));
|
||||
if (DEBUG) Slog.d(TAG, String.format( "Startup with UMS connection %s (media state %s)",
|
||||
mUmsAvailable, Environment.getExternalStorageState()));
|
||||
|
||||
HandlerThread thr = new HandlerThread("SystemUI StorageNotification");
|
||||
thr.start();
|
||||
@ -101,7 +102,8 @@ public class StorageNotification extends StorageEventListener {
|
||||
*/
|
||||
String st = Environment.getExternalStorageState();
|
||||
|
||||
Slog.i(TAG, String.format("UMS connection changed to %s (media state %s)", connected, st));
|
||||
if (DEBUG) Slog.i(TAG, String.format("UMS connection changed to %s (media state %s)",
|
||||
connected, st));
|
||||
|
||||
if (connected && (st.equals(
|
||||
Environment.MEDIA_REMOVED) || st.equals(Environment.MEDIA_CHECKING))) {
|
||||
@ -127,7 +129,7 @@ public class StorageNotification extends StorageEventListener {
|
||||
}
|
||||
|
||||
private void onStorageStateChangedAsync(String path, String oldState, String newState) {
|
||||
Slog.i(TAG, String.format(
|
||||
if (DEBUG) Slog.i(TAG, String.format(
|
||||
"Media {%s} state changed from {%s} -> {%s}", path, oldState, newState));
|
||||
if (newState.equals(Environment.MEDIA_SHARED)) {
|
||||
/*
|
||||
|
@ -134,7 +134,6 @@ class KeyguardCircleFramedDrawable extends Drawable {
|
||||
}
|
||||
|
||||
public void setScale(float scale) {
|
||||
Log.i("KFD", "scale: " + scale);
|
||||
mScale = scale;
|
||||
}
|
||||
|
||||
|
@ -189,7 +189,7 @@ public class KeyguardTransportControlView extends FrameLayout implements OnClick
|
||||
|
||||
public KeyguardTransportControlView(Context context, AttributeSet attrs) {
|
||||
super(context, attrs);
|
||||
Log.v(TAG, "Create TCV " + this);
|
||||
if (DEBUG) Log.v(TAG, "Create TCV " + this);
|
||||
mAudioManager = new AudioManager(mContext);
|
||||
mCurrentPlayState = RemoteControlClient.PLAYSTATE_NONE; // until we get a callback
|
||||
mIRCD = new IRemoteControlDisplayWeak(mHandler);
|
||||
|
@ -146,8 +146,8 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
|
||||
getSendingUserId());
|
||||
if (Intent.ACTION_BOOT_COMPLETED.equals(action)
|
||||
|| ACTION_EXPIRED_PASSWORD_NOTIFICATION.equals(action)) {
|
||||
Slog.v(TAG, "Sending password expiration notifications for action " + action
|
||||
+ " for user " + userHandle);
|
||||
if (DBG) Slog.v(TAG, "Sending password expiration notifications for action "
|
||||
+ action + " for user " + userHandle);
|
||||
mHandler.post(new Runnable() {
|
||||
public void run() {
|
||||
handlePasswordExpirationNotification(getUserData(userHandle));
|
||||
@ -468,7 +468,7 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
|
||||
|
||||
private void handlePackagesChanged(int userHandle) {
|
||||
boolean removed = false;
|
||||
Slog.d(TAG, "Handling package changes for user " + userHandle);
|
||||
if (DBG) Slog.d(TAG, "Handling package changes for user " + userHandle);
|
||||
DevicePolicyData policy = getUserData(userHandle);
|
||||
IPackageManager pm = AppGlobals.getPackageManager();
|
||||
for (int i = policy.mAdminList.size() - 1; i >= 0; i--) {
|
||||
@ -982,7 +982,7 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
|
||||
long token = Binder.clearCallingIdentity();
|
||||
try {
|
||||
String value = cameraDisabled ? "1" : "0";
|
||||
Slog.v(TAG, "Change in camera state ["
|
||||
if (DBG) Slog.v(TAG, "Change in camera state ["
|
||||
+ SYSTEM_PROP_DISABLE_CAMERA + "] = " + value);
|
||||
SystemProperties.set(SYSTEM_PROP_DISABLE_CAMERA, value);
|
||||
} finally {
|
||||
@ -1682,8 +1682,7 @@ public class DevicePolicyManagerService extends IDevicePolicyManager.Stub {
|
||||
}
|
||||
int neededNumbers = getPasswordMinimumNumeric(null, userHandle);
|
||||
if (numbers < neededNumbers) {
|
||||
Slog
|
||||
.w(TAG, "resetPassword: number of numerical digits " + numbers
|
||||
Slog.w(TAG, "resetPassword: number of numerical digits " + numbers
|
||||
+ " does not meet required number of numerical digits "
|
||||
+ neededNumbers);
|
||||
return false;
|
||||
|
@ -105,9 +105,9 @@ class MountService extends IMountService.Stub
|
||||
|
||||
// TODO: listen for user creation/deletion
|
||||
|
||||
private static final boolean LOCAL_LOGD = true;
|
||||
private static final boolean DEBUG_UNMOUNT = true;
|
||||
private static final boolean DEBUG_EVENTS = true;
|
||||
private static final boolean LOCAL_LOGD = false;
|
||||
private static final boolean DEBUG_UNMOUNT = false;
|
||||
private static final boolean DEBUG_EVENTS = false;
|
||||
private static final boolean DEBUG_OBB = false;
|
||||
|
||||
// Disable this since it messes up long-running cryptfs operations.
|
||||
|
@ -1005,7 +1005,7 @@ class ServerThread extends Thread {
|
||||
Intent intent = new Intent();
|
||||
intent.setComponent(new ComponentName("com.android.systemui",
|
||||
"com.android.systemui.SystemUIService"));
|
||||
Slog.d(TAG, "Starting service: " + intent);
|
||||
//Slog.d(TAG, "Starting service: " + intent);
|
||||
context.startServiceAsUser(intent, UserHandle.OWNER);
|
||||
}
|
||||
}
|
||||
|
@ -139,7 +139,7 @@ class TelephonyRegistry extends ITelephonyRegistry.Stub {
|
||||
public void handleMessage(Message msg) {
|
||||
switch (msg.what) {
|
||||
case MSG_USER_SWITCHED: {
|
||||
Slog.d(TAG, "MSG_USER_SWITCHED userId=" + msg.arg1);
|
||||
if (DBG) Slog.d(TAG, "MSG_USER_SWITCHED userId=" + msg.arg1);
|
||||
TelephonyRegistry.this.notifyCellLocation(mCellLocation);
|
||||
break;
|
||||
}
|
||||
|
@ -21,7 +21,6 @@ import static android.content.pm.PackageManager.PERMISSION_GRANTED;
|
||||
import com.android.internal.R;
|
||||
import com.android.internal.os.BatteryStatsImpl;
|
||||
import com.android.internal.os.ProcessStats;
|
||||
import com.android.internal.widget.LockPatternUtils;
|
||||
import com.android.server.AttributeCache;
|
||||
import com.android.server.IntentResolver;
|
||||
import com.android.server.ProcessMap;
|
||||
@ -7935,7 +7934,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
}
|
||||
}, 0, null, null,
|
||||
android.Manifest.permission.INTERACT_ACROSS_USERS,
|
||||
false, false, MY_PID, Process.SYSTEM_UID, UserHandle.USER_ALL);
|
||||
true, false, MY_PID, Process.SYSTEM_UID, UserHandle.USER_ALL);
|
||||
} finally {
|
||||
Binder.restoreCallingIdentity(ident);
|
||||
}
|
||||
@ -14257,7 +14256,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
}
|
||||
}, 0, null, null,
|
||||
android.Manifest.permission.INTERACT_ACROSS_USERS,
|
||||
false, false, MY_PID, Process.SYSTEM_UID, UserHandle.USER_ALL);
|
||||
true, false, MY_PID, Process.SYSTEM_UID, UserHandle.USER_ALL);
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
@ -14480,7 +14479,7 @@ public final class ActivityManagerService extends ActivityManagerNative
|
||||
long ident = Binder.clearCallingIdentity();
|
||||
try {
|
||||
// We are going to broadcast ACTION_USER_STOPPING and then
|
||||
// once that is down send a final ACTION_SHUTDOWN and then
|
||||
// once that is done send a final ACTION_SHUTDOWN and then
|
||||
// stop the user.
|
||||
final Intent stoppingIntent = new Intent(Intent.ACTION_USER_STOPPING);
|
||||
stoppingIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY);
|
||||
|
@ -47,7 +47,7 @@ import libcore.util.Objects;
|
||||
* @hide
|
||||
*/
|
||||
public final class DreamManagerService extends IDreamManager.Stub {
|
||||
private static final boolean DEBUG = true;
|
||||
private static final boolean DEBUG = false;
|
||||
private static final String TAG = "DreamManagerService";
|
||||
|
||||
private final Object mLock = new Object();
|
||||
@ -292,7 +292,7 @@ public final class DreamManagerService extends IDreamManager.Stub {
|
||||
|
||||
stopDreamLocked();
|
||||
|
||||
Slog.i(TAG, "Entering dreamland.");
|
||||
if (DEBUG) Slog.i(TAG, "Entering dreamland.");
|
||||
|
||||
final Binder newToken = new Binder();
|
||||
mCurrentDreamToken = newToken;
|
||||
@ -310,7 +310,7 @@ public final class DreamManagerService extends IDreamManager.Stub {
|
||||
|
||||
private void stopDreamLocked() {
|
||||
if (mCurrentDreamToken != null) {
|
||||
Slog.i(TAG, "Leaving dreamland.");
|
||||
if (DEBUG) Slog.i(TAG, "Leaving dreamland.");
|
||||
|
||||
cleanupDreamLocked();
|
||||
|
||||
|
@ -4113,7 +4113,7 @@ public class PackageManagerService extends IPackageManager.Stub {
|
||||
}
|
||||
}
|
||||
|
||||
Slog.i(TAG, "Linking native library dir for " + path);
|
||||
if (DEBUG_INSTALL) Slog.i(TAG, "Linking native library dir for " + path);
|
||||
final int[] userIds = sUserManager.getUserIds();
|
||||
synchronized (mInstallLock) {
|
||||
for (int userId : userIds) {
|
||||
@ -6301,20 +6301,21 @@ public class PackageManagerService extends IPackageManager.Stub {
|
||||
|
||||
final File packageFile;
|
||||
if (encryptionParams != null || !"file".equals(mPackageURI.getScheme())) {
|
||||
ParcelFileDescriptor out = null;
|
||||
|
||||
mTempPackage = createTempPackageFile(mDrmAppPrivateInstallDir);
|
||||
if (mTempPackage != null) {
|
||||
ParcelFileDescriptor out;
|
||||
try {
|
||||
out = ParcelFileDescriptor.open(mTempPackage,
|
||||
ParcelFileDescriptor.MODE_READ_WRITE);
|
||||
} catch (FileNotFoundException e) {
|
||||
out = null;
|
||||
Slog.e(TAG, "Failed to create temporary file for : " + mPackageURI);
|
||||
}
|
||||
|
||||
// Make a temporary file for decryption.
|
||||
ret = mContainerService
|
||||
.copyResource(mPackageURI, encryptionParams, out);
|
||||
IoUtils.closeQuietly(out);
|
||||
|
||||
packageFile = mTempPackage;
|
||||
|
||||
@ -9079,10 +9080,8 @@ public class PackageManagerService extends IPackageManager.Stub {
|
||||
if (removed.size() > 0) {
|
||||
for (int j=0; j<removed.size(); j++) {
|
||||
PreferredActivity pa = removed.get(i);
|
||||
RuntimeException here = new RuntimeException("here");
|
||||
here.fillInStackTrace();
|
||||
Slog.w(TAG, "Removing dangling preferred activity: "
|
||||
+ pa.mPref.mComponent, here);
|
||||
+ pa.mPref.mComponent);
|
||||
pir.removeFilter(pa);
|
||||
}
|
||||
mSettings.writePackageRestrictionsLPr(
|
||||
|
Reference in New Issue
Block a user