Searched defs:oldId (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java167 public static boolean renameSdDir(String oldId, String newId) { argument
169 int rc = getStorageManager().renameSecureContainer(oldId, newId);
171 Log.e(TAG, "Failed to rename " + oldId + " to " +
177 Log.i(TAG, "Failed ot rename " + oldId + " to " + newId +
/frameworks/base/libs/storage/
H A DIMountService.cpp354 int32_t renameSecureContainer(const String16& oldId, const String16& newId) argument
358 data.writeString16(oldId);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMockStorageManager.java192 public int renameSecureContainer(String oldId, String newId) throws RemoteException { argument
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp2944 uint64_t oldId, newId; local
2947 && mSurface->getUniqueId(&oldId) == NO_ERROR
2948 && newId == oldId) {
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java2331 final long oldId = Binder.clearCallingIdentity();
2336 Binder.restoreCallingIdentity(oldId);
4429 oldIds[nextPending] = r.oldId;
4433 Slog.i(TAG, " " + r.oldId + " => " + r.newId);
4463 oldIds[nextPending] = r.oldId;
4467 Slog.i(TAG, " " + r.oldId + " => " + r.newId);
4541 private void stashProviderRestoreUpdateLocked(Provider provider, int oldId, int newId) { argument
4548 if (alreadyStashed(r, oldId, newId)) {
4550 Slog.i(TAG, "ID remap " + oldId + " -> " + newId
4556 r.add(new RestoreUpdateRecord(oldId, newI
4559 alreadyStashed(ArrayList<RestoreUpdateRecord> stash, final int oldId, final int newId) argument
4571 stashHostRestoreUpdateLocked(Host host, int oldId, int newId) argument
4690 public int oldId; field in class:AppWidgetServiceImpl.BackupRestoreController.RestoreUpdateRecord
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java2408 public int renameSecureContainer(String oldId, String newId) { argument
2418 if (mAsecMountSet.contains(oldId) || mAsecMountSet.contains(newId)) {
2425 mConnector.execute("asec", "rename", oldId, newId);

Completed in 1302 milliseconds