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

/frameworks/support/v4/java/android/support/v4/os/
H A DEnvironmentCompat.java62 final String canonicalPath = path.getCanonicalPath();
66 if (canonicalPath.startsWith(canonicalExternal)) {
/frameworks/base/native/android/
H A Dstorage_manager.cpp131 char canonicalPath[PATH_MAX]; local
132 if (realpath(rawPath, canonicalPath) == NULL) {
139 String16 canonicalPath16(canonicalPath);
/frameworks/base/include/storage/
H A DIMountService.h65 virtual void mountObb(const String16& rawPath, const String16& canonicalPath,
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java270 public ObbState(String rawPath, String canonicalPath, int callingUid, argument
273 this.canonicalPath = canonicalPath.toString();
276 this.ownerPath = buildObbPath(canonicalPath, userId, false);
277 this.voldPath = buildObbPath(canonicalPath, userId, true);
285 final String canonicalPath; field in class:MountService.ObbState
319 sb.append(",canonicalPath=").append(canonicalPath);
2147 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
2149 Preconditions.checkNotNull(canonicalPath, "canonicalPat
2146 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
3020 buildObbPath(final String canonicalPath, int userId, boolean forVold) argument
[all...]
/frameworks/base/core/java/android/os/storage/
H A DStorageManager.java464 final String canonicalPath = new File(rawPath).getCanonicalPath();
466 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
H A DIMountService.java491 public void mountObb(String rawPath, String canonicalPath, String key, argument
498 _data.writeString(canonicalPath);
1217 final String canonicalPath = data.readString();
1223 mountObb(rawPath, canonicalPath, key, observer, nonce);
1489 public void mountObb(String rawPath, String canonicalPath, String key, argument
/frameworks/base/core/java/android/net/
H A DUri.java2308 final String canonicalPath;
2310 canonicalPath = new File(getPath()).getCanonicalPath();
2320 if (canonicalPath.startsWith(legacyPath)) {
2323 canonicalPath.substring(legacyPath.length() + 1)));
2327 return Uri.fromFile(new File(canonicalPath));
/frameworks/base/libs/storage/
H A DIMountService.cpp438 void mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, argument
444 data.writeString16(canonicalPath);

Completed in 1589 milliseconds