Lines Matching defs:rawPath

233         public ObbState(String rawPath, String canonicalPath, int callingUid,
235 this.rawPath = rawPath;
247 final String rawPath;
281 sb.append("rawPath=").append(rawPath);
1874 public String getMountedObbPath(String rawPath) {
1875 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
1882 state = mObbPathToStateMap.get(rawPath);
1885 Slog.w(TAG, "Failed to find OBB mounted at " + rawPath);
1905 public boolean isObbMounted(String rawPath) {
1906 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
1908 return mObbPathToStateMap.containsKey(rawPath);
1914 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
1915 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
1920 final ObbState obbState = new ObbState(rawPath, canonicalPath, callingUid, token, nonce);
1929 public void unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) {
1930 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
1934 existingState = mObbPathToStateMap.get(rawPath);
1941 rawPath, existingState.canonicalPath, callingUid, token, nonce);
1948 Slog.w(TAG, "Unknown OBB mount at " + rawPath);
2126 if (o.rawPath.equals(obbState.rawPath)) {
2150 mObbPathToStateMap.put(obbState.rawPath, obbState);
2165 mObbPathToStateMap.remove(obbState.rawPath);
2289 Slog.i(TAG, "Removing state for " + obbState.rawPath);
2294 obbState.token.onObbResult(obbState.rawPath, obbState.nonce,
2298 + obbState.rawPath);
2388 mObbState.token.onObbResult(mObbState.rawPath, mObbState.nonce, status);
2421 isMounted = mObbPathToStateMap.containsKey(mObbState.rawPath);
2511 existingState = mObbPathToStateMap.get(mObbState.rawPath);
2520 Slog.w(TAG, "Permission denied attempting to unmount OBB " + existingState.rawPath