Searched refs:rawPath (Results 1 - 7 of 7) sorted by relevance
/frameworks/base/core/java/android/os/storage/ |
H A D | IStorageManager.aidl | 150 void mountObb(in String rawPath, in String canonicalPath, in String key, 158 void unmountObb(in String rawPath, boolean force, IObbActionListener token, int nonce) = 22; 163 boolean isObbMounted(in String rawPath) = 23; 167 String getMountedObbPath(in String rawPath) = 24;
|
H A D | StorageManager.java | 558 * @param rawPath the path to the OBB file 564 public boolean mountObb(String rawPath, String key, OnObbStateChangeListener listener) { argument 565 Preconditions.checkNotNull(rawPath, "rawPath cannot be null"); 569 final String canonicalPath = new File(rawPath).getCanonicalPath(); 571 mStorageManager.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce); 574 throw new IllegalArgumentException("Failed to resolve path: " + rawPath, e); 594 * @param rawPath path to the OBB file 600 public boolean unmountObb(String rawPath, boolean force, OnObbStateChangeListener listener) { argument 601 Preconditions.checkNotNull(rawPath, "rawPat 619 isObbMounted(String rawPath) argument 638 getMountedObbPath(String rawPath) argument [all...] |
/frameworks/base/native/android/ |
H A D | storage_manager.cpp | 128 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/packages/services/Proxy/src/com/android/proxyhandler/ |
H A D | ProxyServer.java | 207 String rawPath = uri.getRawPath(); 212 if (rawPath != null) { 213 absolutePath.append(rawPath);
|
/frameworks/base/libs/storage/include/storage/ |
H A D | IMountService.h | 65 virtual void mountObb(const String16& rawPath, const String16& canonicalPath,
|
/frameworks/base/services/core/java/com/android/server/ |
H A D | StorageManagerService.java | 523 public ObbState(String rawPath, String canonicalPath, int callingUid, argument 525 this.rawPath = rawPath; 533 final String rawPath; field in class:StorageManagerService.ObbState 565 sb.append("rawPath=").append(rawPath); 2518 public String getMountedObbPath(String rawPath) { argument 2519 Preconditions.checkNotNull(rawPath, "rawPath cannot be null"); 2526 state = mObbPathToStateMap.get(rawPath); 2549 isObbMounted(String rawPath) argument 2557 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument 2573 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument [all...] |
/frameworks/base/libs/storage/ |
H A D | IMountService.cpp | 445 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, argument 450 data.writeString16(rawPath);
|
Completed in 121 milliseconds