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/core/java/android/os/storage/
H A DStorageManager.java453 * @param rawPath the path to the OBB file
459 public boolean mountObb(String rawPath, String key, OnObbStateChangeListener listener) { argument
460 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
464 final String canonicalPath = new File(rawPath).getCanonicalPath();
466 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
469 throw new IllegalArgumentException("Failed to resolve path: " + rawPath, e);
491 * @param rawPath path to the OBB file
497 public boolean unmountObb(String rawPath, boolean force, OnObbStateChangeListener listener) { argument
498 Preconditions.checkNotNull(rawPath, "rawPat
518 isObbMounted(String rawPath) argument
539 getMountedObbPath(String rawPath) argument
[all...]
H A DIMountService.java490 public void mountObb(String rawPath, String canonicalPath, String key, argument
496 _data.writeString(rawPath);
517 String rawPath, boolean force, IObbActionListener token, int nonce)
523 _data.writeString(rawPath);
539 public boolean isObbMounted(String rawPath) throws RemoteException { argument
545 _data.writeString(rawPath);
559 public String getMountedObbPath(String rawPath) throws RemoteException { argument
565 _data.writeString(rawPath);
1065 final String rawPath = data.readString();
1072 mountObb(rawPath, canonicalPat
516 unmountObb( String rawPath, boolean force, IObbActionListener token, int nonce) argument
1225 getMountedObbPath(String rawPath) argument
1251 isObbMounted(String rawPath) argument
1274 mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
1318 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]
/frameworks/base/libs/storage/
H A DIMountService.cpp436 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, argument
441 data.writeString16(rawPath);
/frameworks/base/services/java/com/android/server/
H A DMountService.java248 public ObbState(String rawPath, String canonicalPath, int callingUid, argument
250 this.rawPath = rawPath;
262 final String rawPath; field in class:MountService.ObbState
296 sb.append("rawPath=").append(rawPath);
1937 public String getMountedObbPath(String rawPath) { argument
1938 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
1945 state = mObbPathToStateMap.get(rawPath);
1968 isObbMounted(String rawPath) argument
1976 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
1992 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]

Completed in 201 milliseconds