Home
last modified time | relevance | path

Searched refs:mountId (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/storage/
DAppFuseBridge.java62 Preconditions.checkArgument(mScopes.indexOfKey(mountScope.mountId) < 0); in addBridge()
64 throw new FuseUnavailableMountException(mountScope.mountId); in addBridge()
67 mNativeLoop, mountScope.mountId, mountScope.open().detachFd()); in addBridge()
69 throw new FuseUnavailableMountException(mountScope.mountId); in addBridge()
72 mScopes.put(mountScope.mountId, mountScope); in addBridge()
90 public ParcelFileDescriptor openFile(int pid, int mountId, int fileId, int mode)
94 scope = mScopes.get(mountId);
96 throw new FuseUnavailableMountException(mountId);
104 throw new FuseUnavailableMountException(mountId);
110 throw new FuseUnavailableMountException(mountId);
[all …]
/frameworks/base/core/java/com/android/internal/os/
DFuseUnavailableMountException.java23 public FuseUnavailableMountException(int mountId) { in FuseUnavailableMountException() argument
24 super("AppFuse mount point " + mountId + " is unavailable"); in FuseUnavailableMountException()
/frameworks/base/services/core/jni/
Dcom_android_server_storage_AppFuseBridge.cpp109 JNIEnv* env, jobject self, jlong java_loop, jint mountId, jint javaDevFd) { in com_android_server_storage_AppFuseBridge_add_bridge() argument
119 if (!loop->AddBridge(mountId, std::move(devFd), std::move(proxyFd[0]))) { in com_android_server_storage_AppFuseBridge_add_bridge()
/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java2594 public AppFuseMountScope(int uid, int pid, int mountId) { in AppFuseMountScope() argument
2595 super(uid, pid, mountId); in AppFuseMountScope()
2602 mVold.mountAppFuse(uid, Process.myPid(), mountId)); in open()
2611 mVold.unmountAppFuse(uid, Process.myPid(), mountId); in close()
2654 int mountId, int fileId, int mode) { in openProxyFileDescriptor() argument
2663 return mAppFuseBridge.openFile(pid, mountId, fileId, mode); in openProxyFileDescriptor()