Searched refs:rawPath (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java450 * @param rawPath the path to the OBB file
456 public boolean mountObb(String rawPath, String key, OnObbStateChangeListener listener) { argument
457 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
461 final String canonicalPath = new File(rawPath).getCanonicalPath();
463 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
466 throw new IllegalArgumentException("Failed to resolve path: " + rawPath, e);
488 * @param rawPath path to the OBB file
494 public boolean unmountObb(String rawPath, boolean force, OnObbStateChangeListener listener) { argument
495 Preconditions.checkNotNull(rawPath, "rawPat
515 isObbMounted(String rawPath) argument
536 getMountedObbPath(String rawPath) argument
[all...]
H A DIMountService.java492 public void mountObb(String rawPath, String canonicalPath, String key, argument
498 _data.writeString(rawPath);
519 String rawPath, boolean force, IObbActionListener token, int nonce)
525 _data.writeString(rawPath);
541 public boolean isObbMounted(String rawPath) throws RemoteException { argument
547 _data.writeString(rawPath);
561 public String getMountedObbPath(String rawPath) throws RemoteException { argument
567 _data.writeString(rawPath);
1047 final String rawPath = data.readString();
1054 mountObb(rawPath, canonicalPat
518 unmountObb( String rawPath, boolean force, IObbActionListener token, int nonce) argument
1198 getMountedObbPath(String rawPath) argument
1224 isObbMounted(String rawPath) argument
1247 mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
1291 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]
/frameworks/base/native/android/
H A Dstorage_manager.cpp128 void mountObb(const char* rawPath, const char* key, AStorageManager_obbCallbackFunc func, argument
132 if (realpath(rawPath, canonicalPath) == NULL) {
133 ALOGE("mountObb failed to resolve path %s: %s", rawPath, strerror(errno));
138 String16 rawPath16(rawPath);
/frameworks/base/services/java/com/android/server/
H A DMountService.java233 public ObbState(String rawPath, String canonicalPath, int callingUid, argument
235 this.rawPath = rawPath;
247 final String rawPath; field in class:MountService.ObbState
281 sb.append("rawPath=").append(rawPath);
1874 public String getMountedObbPath(String rawPath) { argument
1875 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
1882 state = mObbPathToStateMap.get(rawPath);
1905 isObbMounted(String rawPath) argument
1913 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
1929 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]
/frameworks/base/include/storage/
H A DIMountService.h65 virtual void mountObb(const String16& rawPath, const String16& canonicalPath,
/frameworks/base/libs/storage/
H A DIMountService.cpp436 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, argument
441 data.writeString16(rawPath);

Completed in 1571 milliseconds