HomeSort by relevance Sort by last modified time
    Searched refs:rawPath (Results 1 - 8 of 8) sorted by null

  /frameworks/base/core/java/android/os/storage/
StorageManager.java 453 * @param rawPath the path to the OBB file
459 public boolean mountObb(String rawPath, String key, OnObbStateChangeListener listener) {
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) {
498 Preconditions.checkNotNull(rawPath, "rawPath cannot be null")
    [all...]
IMountService.java 492 public void mountObb(String rawPath, String canonicalPath, String key,
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 {
547 _data.writeString(rawPath);
561 public String getMountedObbPath(String rawPath) throws RemoteException {
567 _data.writeString(rawPath);
    [all...]
  /frameworks/base/native/android/
storage_manager.cpp 128 void mountObb(const char* rawPath, const char* key, AStorageManager_obbCallbackFunc func,
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/
MountService.java 242 public ObbState(String rawPath, String canonicalPath, int callingUid,
244 this.rawPath = rawPath;
256 final String rawPath;
290 sb.append("rawPath=").append(rawPath);
    [all...]
  /frameworks/base/core/java/android/os/
Environment.java 698 final String rawPath = path.getCanonicalPath();
699 if (rawPath.startsWith(CANONCIAL_EMULATED_STORAGE_TARGET)) {
701 rawPath.substring(CANONCIAL_EMULATED_STORAGE_TARGET.length()));
  /frameworks/base/include/storage/
IMountService.h 65 virtual void mountObb(const String16& rawPath, const String16& canonicalPath,
  /libcore/luni/src/main/java/java/io/
File.java 227 String rawPath = uri.getRawPath();
228 if (rawPath == null || rawPath.isEmpty()) {
    [all...]
  /frameworks/base/libs/storage/
IMountService.cpp 436 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key,
441 data.writeString16(rawPath);

Completed in 103 milliseconds