Home | History | Annotate | Download | only in server

Lines Matching defs:rawPath

270         public ObbState(String rawPath, String canonicalPath, int callingUid,
272 this.rawPath = rawPath;
284 final String rawPath;
318 sb.append("rawPath=").append(rawPath);
2107 public String getMountedObbPath(String rawPath) {
2108 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
2115 state = mObbPathToStateMap.get(rawPath);
2118 Slog.w(TAG, "Failed to find OBB mounted at " + rawPath);
2138 public boolean isObbMounted(String rawPath) {
2139 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
2141 return mObbPathToStateMap.containsKey(rawPath);
2147 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
2148 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
2153 final ObbState obbState = new ObbState(rawPath, canonicalPath, callingUid, token, nonce);
2162 public void unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) {
2163 Preconditions.checkNotNull(rawPath, "rawPath cannot be null");
2167 existingState = mObbPathToStateMap.get(rawPath);
2174 rawPath, existingState.canonicalPath, callingUid, token, nonce);
2181 Slog.w(TAG, "Unknown OBB mount at " + rawPath);
2571 if (o.rawPath.equals(obbState.rawPath)) {
2595 mObbPathToStateMap.put(obbState.rawPath, obbState);
2610 mObbPathToStateMap.remove(obbState.rawPath);
2734 Slog.i(TAG, "Removing state for " + obbState.rawPath);
2739 obbState.token.onObbResult(obbState.rawPath, obbState.nonce,
2743 + obbState.rawPath);
2833 mObbState.token.onObbResult(mObbState.rawPath, mObbState.nonce, status);
2866 isMounted = mObbPathToStateMap.containsKey(mObbState.rawPath);
2956 existingState = mObbPathToStateMap.get(mObbState.rawPath);
2965 Slog.w(TAG, "Permission denied attempting to unmount OBB " + existingState.rawPath