Home
last modified time | relevance | path

Searched refs:targetFd (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DPackageInstallerSession.java750 final FileDescriptor targetFd = Os.open(target.getAbsolutePath(), in doWriteInternal() local
757 mContext.getSystemService(StorageManager.class).allocateBytes(targetFd, lengthBytes, in doWriteInternal()
762 Os.lseek(targetFd, offsetBytes, OsConstants.SEEK_SET); in doWriteInternal()
782 FileUtils.copy(incomingFd.getFileDescriptor(), targetFd, lengthBytes, null, in doWriteInternal() local
791 IoUtils.closeQuietly(targetFd); in doWriteInternal()
807 fd.init(mContext, targetFd); in doWriteInternal()
810 bridge.setTargetFile(targetFd); in doWriteInternal()
839 final FileDescriptor targetFd = Os.open(target.getAbsolutePath(), O_RDONLY, 0); in openReadInternalLocked() local
840 return new ParcelFileDescriptor(targetFd); in openReadInternalLocked()
DPackageManagerServiceUtils.java877 final FileDescriptor targetFd = Os.open(targetFile.getAbsolutePath(), in copyFile() local
883 FileUtils.copy(source.getFD(), targetFd); in copyFile() local