Home
last modified time | relevance | path

Searched refs:canonicalPath (Results 1 – 8 of 8) sorted by relevance

/frameworks/support/v4/java/android/support/v4/os/
DEnvironmentCompat.java62 final String canonicalPath = path.getCanonicalPath(); in getStorageState() local
66 if (canonicalPath.startsWith(canonicalExternal)) { in getStorageState()
/frameworks/base/native/android/
Dstorage_manager.cpp131 char canonicalPath[PATH_MAX]; in mountObb() local
132 if (realpath(rawPath, canonicalPath) == NULL) { in mountObb()
139 String16 canonicalPath16(canonicalPath); in mountObb()
/frameworks/base/services/java/com/android/server/
DMountService.java248 public ObbState(String rawPath, String canonicalPath, int callingUid, in ObbState() argument
251 this.canonicalPath = canonicalPath.toString(); in ObbState()
254 this.ownerPath = buildObbPath(canonicalPath, userId, false); in ObbState()
255 this.voldPath = buildObbPath(canonicalPath, userId, true); in ObbState()
263 final String canonicalPath; field in MountService.ObbState
297 sb.append(",canonicalPath=").append(canonicalPath); in toString()
1977 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) { in mountObb() argument
1979 Preconditions.checkNotNull(canonicalPath, "canonicalPath cannot be null"); in mountObb()
1983 final ObbState obbState = new ObbState(rawPath, canonicalPath, callingUid, token, nonce); in mountObb()
2004 rawPath, existingState.canonicalPath, callingUid, token, nonce); in unmountObb()
[all …]
/frameworks/base/include/storage/
DIMountService.h65 virtual void mountObb(const String16& rawPath, const String16& canonicalPath,
/frameworks/base/core/java/android/os/storage/
DStorageManager.java464 final String canonicalPath = new File(rawPath).getCanonicalPath(); in mountObb() local
466 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce); in mountObb()
DIMountService.java490 public void mountObb(String rawPath, String canonicalPath, String key, in mountObb() argument
497 _data.writeString(canonicalPath); in mountObb()
1066 final String canonicalPath = data.readString(); in onTransact() local
1072 mountObb(rawPath, canonicalPath, key, observer, nonce); in onTransact()
1274 public void mountObb(String rawPath, String canonicalPath, String key, in mountObb() argument
/frameworks/base/core/java/android/net/
DUri.java2305 final String canonicalPath; in getCanonicalUri() local
2307 canonicalPath = new File(getPath()).getCanonicalPath(); in getCanonicalUri()
2317 if (canonicalPath.startsWith(legacyPath)) { in getCanonicalUri()
2320 canonicalPath.substring(legacyPath.length() + 1))); in getCanonicalUri()
2324 return Uri.fromFile(new File(canonicalPath)); in getCanonicalUri()
/frameworks/base/libs/storage/
DIMountService.cpp436 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, in mountObb() argument
442 data.writeString16(canonicalPath); in mountObb()