HomeSort by relevance Sort by last modified time
    Searched refs:rawPath (Results 1 - 12 of 12) 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 491 public void mountObb(String rawPath, String canonicalPath, String key,
497 _data.writeString(rawPath);
518 String rawPath, boolean force, IObbActionListener token, int nonce)
524 _data.writeString(rawPath);
540 public boolean isObbMounted(String rawPath) throws RemoteException {
546 _data.writeString(rawPath);
560 public String getMountedObbPath(String rawPath) throws RemoteException {
566 _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/core/java/com/android/server/
MountService.java 270 public ObbState(String rawPath, String canonicalPath, int callingUid,
272 this.rawPath = rawPath;
284 final String rawPath;
318 sb.append("rawPath=").append(rawPath);
    [all...]
  /frameworks/base/include/storage/
IMountService.h 65 virtual void mountObb(const String16& rawPath, const String16& canonicalPath,
  /frameworks/base/core/java/android/os/
Environment.java     [all...]
  /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 438 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key,
443 data.writeString16(rawPath);
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 166 milliseconds