Searched refs:newId (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/libs/storage/include/storage/
H A DIMountService.h59 const String16& newId) = 0;
/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);
172 newId + "with rc " + rc);
177 Log.i(TAG, "Failed ot rename " + oldId + " to " + newId +
/frameworks/base/core/java/android/os/storage/
H A DIStorageManager.aidl125 int renameSecureContainer(in String oldId, in String newId) = 16;
/frameworks/base/core/java/android/service/notification/
H A DCondition.java214 public static Uri.Builder newId(Context context) { method in class:Condition
/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java867 final int newId = mService.updateOrRestartSession(mContext.getActivityToken(),
870 if (newId != mSessionId) {
871 if (sDebug) Log.d(TAG, "Session restarted: " + mSessionId + "=>" + newId);
872 mSessionId = newId;
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
H A DAppWidgetServiceImpl.java4430 newIds[nextPending] = r.newId;
4433 Slog.i(TAG, " " + r.oldId + " => " + r.newId);
4464 newIds[nextPending] = r.newId;
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, newId));
4560 final int oldId, final int newId) {
4564 if (r.oldId == oldId && r.newId
4559 alreadyStashed(ArrayList<RestoreUpdateRecord> stash, final int oldId, final int newId) argument
4571 stashHostRestoreUpdateLocked(Host host, int oldId, int newId) argument
4691 public int newId; field in class:AppWidgetServiceImpl.BackupRestoreController.RestoreUpdateRecord
[all...]
/frameworks/base/libs/storage/
H A DIMountService.cpp354 int32_t renameSecureContainer(const String16& oldId, const String16& newId) argument
359 data.writeString16(newId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DUserSwitcherController.java425 int newId = UserHandle.USER_SYSTEM;
429 newId = info.id;
432 showExitGuestDialog(id, newId);
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DSystemMediaRouteProvider.java354 String newId = String.format(Locale.US, "%s_%d", id, i);
355 if (findSystemRouteRecordByDescriptorId(newId) < 0) {
356 return newId;
/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
2946 && surface->getUniqueId(&newId) == NO_ERROR
2948 && newId == oldId) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DZenModePanel.java148 mForeverId = Condition.newId(mContext).appendPath("forever").build();
/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 351 milliseconds