Searched defs:mountId (Results 1 - 4 of 4) sorted by last modified time
/frameworks/base/services/core/java/com/android/server/ |
H A D | StorageManagerService.java | 3027 public AppFuseMountScope(int uid, int pid, int mountId) { argument 3028 super(uid, pid, mountId); 3034 "appfuse", "mount", uid, Process.myPid(), mountId); 3046 mConnector.execute("appfuse", "unmount", uid, Process.myPid(), mountId); 3089 int mountId, int fileId, int mode) { 3098 return mAppFuseBridge.openFile(pid, mountId, fileId, mode); 3088 openProxyFileDescriptor( int mountId, int fileId, int mode) argument
|
/frameworks/base/services/core/java/com/android/server/storage/ |
H A D | AppFuseBridge.java | 62 Preconditions.checkArgument(mScopes.indexOfKey(mountScope.mountId) < 0); 64 throw new FuseUnavailableMountException(mountScope.mountId); 67 mNativeLoop, mountScope.mountId, mountScope.open().detachFd()); 69 throw new FuseUnavailableMountException(mountScope.mountId); 72 mScopes.put(mountScope.mountId, mountScope); 90 public ParcelFileDescriptor openFile(int pid, int mountId, int fileId, int mode) argument 94 scope = mScopes.get(mountId); 96 throw new FuseUnavailableMountException(mountId); 104 throw new FuseUnavailableMountException(mountId); 110 throw new FuseUnavailableMountException(mountId); 115 onMount(int mountId) argument 123 onClosed(int mountId) argument 135 public final int mountId; field in class:AppFuseBridge.MountScope 140 MountScope(int uid, int pid, int mountId) argument 167 native_add_bridge(long loop, int mountId, int deviceId) argument [all...] |
/frameworks/base/services/core/jni/ |
H A D | com_android_server_storage_AppFuseBridge.cpp | 109 JNIEnv* env, jobject self, jlong java_loop, jint mountId, jint javaDevFd) { 119 if (!loop->AddBridge(mountId, std::move(devFd), std::move(proxyFd[0]))) { 108 com_android_server_storage_AppFuseBridge_add_bridge( JNIEnv* env, jobject self, jlong java_loop, jint mountId, jint javaDevFd) argument
|
/frameworks/base/core/java/com/android/internal/os/ |
H A D | FuseUnavailableMountException.java | 23 public FuseUnavailableMountException(int mountId) { argument 24 super("AppFuse mount point " + mountId + " is unavailable");
|
Completed in 252 milliseconds