Home
last modified time | relevance | path

Searched defs:rawPath (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/os/storage/
DIStorageManager.aidl150 void mountObb(in String rawPath, in String canonicalPath, in String key, in mountObb()
158 void unmountObb(in String rawPath, boolean force, IObbActionListener token, int nonce) = 22; in unmountObb()
163 boolean isObbMounted(in String rawPath) = 23; field
167 String getMountedObbPath(in String rawPath) = 24; field
DStorageManager.java562 public boolean mountObb(String rawPath, String key, OnObbStateChangeListener listener) { in mountObb()
598 public boolean unmountObb(String rawPath, boolean force, OnObbStateChangeListener listener) { in unmountObb()
617 public boolean isObbMounted(String rawPath) { in isObbMounted()
636 public String getMountedObbPath(String rawPath) { in getMountedObbPath()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DMockStorageManager.java217 public void mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, in mountObb()
223 public void unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) in unmountObb()
229 public boolean isObbMounted(String rawPath) throws RemoteException { in isObbMounted()
234 public String getMountedObbPath(String rawPath) throws RemoteException { in getMountedObbPath()
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
DProxyServer.java207 String rawPath = uri.getRawPath(); in getAbsolutePathFromAbsoluteURI() local
/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java525 public ObbState(String rawPath, String canonicalPath, int callingUid, in ObbState()
535 final String rawPath; field in StorageManagerService.ObbState
2507 public String getMountedObbPath(String rawPath) { in getMountedObbPath()
2538 public boolean isObbMounted(String rawPath) { in isObbMounted()
2547 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) { in mountObb()
2562 public void unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) { in unmountObb()
/frameworks/base/libs/storage/
DIMountService.cpp445 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, in mountObb()