Home
last modified time | relevance | path

Searched refs:fileId (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
DFileA3D.java239 long fileId = rs.nFileA3DCreateFromAsset(mgr, path); in createFromAsset() local
241 if(fileId == 0) { in createFromAsset()
244 FileA3D fa3d = new FileA3D(fileId, rs, null); in createFromAsset()
259 long fileId = rs.nFileA3DCreateFromFile(path); in createFromFile() local
261 if(fileId == 0) { in createFromFile()
264 FileA3D fa3d = new FileA3D(fileId, rs, null); in createFromFile()
303 long fileId = 0; in createFromResource() local
306 fileId = rs.nFileA3DCreateFromAssetStream(asset); in createFromResource()
311 if(fileId == 0) { in createFromResource()
314 FileA3D fa3d = new FileA3D(fileId, rs, is); in createFromResource()
/frameworks/base/services/core/java/com/android/server/storage/
DAppFuseBridge.java99 public ParcelFileDescriptor openFile(int mountId, int fileId, int mode)
114 return scope.openFile(mountId, fileId, flags);
164 public abstract ParcelFileDescriptor openFile(int mountId, int fileId, int flags)
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccPkcs15.java72 public boolean loadFile(String fileId, Message callBack) { in loadFile() argument
73 log("loadFile: " + fileId); in loadFile()
74 if (fileId == null || callBack == null) return false; in loadFile()
75 mFileId = fileId; in loadFile()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiConfigStore.java294 private static @Nullable StoreFile createFile(File storeBaseDir, @StoreFileId int fileId, in createFile() argument
303 File file = new File(storeDir, STORE_ID_TO_FILE_NAME.get(fileId)); in createFile()
308 return new StoreFile(file, fileId, encryptionUtil); in createFile()
334 for (int fileId : Arrays.asList( in createUserFiles()
337 createFile(Environment.getDataMiscCeDirectory(userId), fileId, in createUserFiles()
736 public StoreFile(File file, @StoreFileId int fileId, in StoreFile() argument
740 mFileId = fileId; in StoreFile()
/frameworks/base/core/tests/coretests/src/android/provider/
DMockFontProvider.java97 public Font(int id, int fileId, int ttcIndex, String varSettings, int weight, int italic, in Font() argument
100 mFileId = fileId; in Font()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConfigStoreTest.java875 MockStoreFile(@WifiConfigStore.StoreFileId int fileId) { in MockStoreFile() argument
876 super(new File("MockStoreFile"), fileId, mEncryptionUtil); in MockStoreFile()
922 MockStoreData(@WifiConfigStore.StoreFileId int fileId) { in MockStoreData() argument
923 mFileId = fileId; in MockStoreData()
/frameworks/base/core/java/android/os/storage/
DIStorageManager.aidl184 ParcelFileDescriptor openProxyFileDescriptor(int mountPointId, int fileId, int mode) = 74; in openProxyFileDescriptor() argument
DStorageManager.java1806 final int fileId = mFuseAppLoop.registerCallback(callback, handler); in openProxyFileDescriptor() local
1808 mFuseAppLoop.getMountPointId(), fileId, mode); in openProxyFileDescriptor()
1810 mFuseAppLoop.unregisterCallback(fileId); in openProxyFileDescriptor()
/frameworks/base/core/java/android/provider/
DMediaStore.java1267 long fileId) { in getMtpObjectsUri() argument
1268 return ContentUris.withAppendedId(getMtpObjectsUri(volumeName), fileId); in getMtpObjectsUri()
1277 long fileId) { in getMtpReferencesUri() argument
1278 return getMtpObjectsUri(volumeName, fileId).buildUpon().appendPath("references") in getMtpReferencesUri()
/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java2906 public ParcelFileDescriptor openFile(int mountId, int fileId, int flags) in openFile() argument
2910 mVold.openAppFuseFile(uid, mountId, fileId, flags)); in openFile()
2961 int mountId, int fileId, int mode) { in openProxyFileDescriptor() argument
2973 return mAppFuseBridge.openFile(mountId, fileId, mode); in openProxyFileDescriptor()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRIL.java1955 public void iccIO(int command, int fileId, String path, int p1, int p2, int p3, in iccIO() argument
1957 iccIOForApp(command, fileId, path, p1, p2, p3, data, pin2, null, result); in iccIO()
1961 public void iccIOForApp(int command, int fileId, String path, int p1, int p2, int p3, in iccIOForApp() argument
1973 + Integer.toHexString(fileId) + " path = " + path + " p1 = " in iccIOForApp()
1983 iccIo.fileId = fileId; in iccIOForApp()