Home | History | Annotate | Download | only in server

Lines Matching refs:canonicalPath

496         public ObbState(String rawPath, String canonicalPath, int callingUid,
499 this.canonicalPath = canonicalPath;
507 final String canonicalPath;
539 sb.append(",canonicalPath=").append(canonicalPath);
2463 event = mConnector.execute("obb", "path", state.canonicalPath);
2486 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
2488 Preconditions.checkNotNull(canonicalPath, "canonicalPath cannot be null");
2492 final ObbState obbState = new ObbState(rawPath, canonicalPath, callingUid, token, nonce);
2513 rawPath, existingState.canonicalPath, callingUid, token, nonce);
3305 if (state.canonicalPath.startsWith(path)) {
3393 obbInfo = mContainerService.getObbInfo(mObbState.canonicalPath);
3396 + mObbState.canonicalPath);
3400 throw new IOException("Couldn't read OBB file: " + mObbState.canonicalPath);
3477 mConnector.execute("obb", "mount", mObbState.canonicalPath, new SensitiveArg(hashedKey),
3488 Slog.d(TAG, "Successfully mounted OBB " + mObbState.canonicalPath);
3549 final Command cmd = new Command("obb", "unmount", mObbState.canonicalPath);