Searched defs:rawPath (Results 1 - 5 of 5) sorted by relevance

/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/libs/storage/
H A DIMountService.cpp445 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, argument
450 data.writeString16(rawPath);
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java407 * @param rawPath the path to the OBB file
413 public boolean mountObb(String rawPath, String key, OnObbStateChangeListener listener) { argument
414 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
418 final String canonicalPath = new File(rawPath).getCanonicalPath();
420 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
423 throw new IllegalArgumentException("Failed to resolve path: " + rawPath, e);
445 * @param rawPath path to the OBB file
451 public boolean unmountObb(String rawPath, boolean force, OnObbStateChangeListener listener) { argument
452 Preconditions.checkNotNull(rawPath, "rawPat
472 isObbMounted(String rawPath) argument
493 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);
1533 final String rawPath = data.readString();
1540 mountObb(rawPath, canonicalPat
518 unmountObb( String rawPath, boolean force, IObbActionListener token, int nonce) argument
1894 getMountedObbPath(String rawPath) argument
1920 isObbMounted(String rawPath) argument
1943 mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
1988 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java453 public ObbState(String rawPath, String canonicalPath, int callingUid, argument
455 this.rawPath = rawPath;
467 final String rawPath; field in class:MountService.ObbState
501 sb.append("rawPath=").append(rawPath);
2256 public String getMountedObbPath(String rawPath) { argument
2257 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
2264 state = mObbPathToStateMap.get(rawPath);
2287 isObbMounted(String rawPath) argument
2295 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
2311 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]

Completed in 37 milliseconds