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.java716 final FileDescriptor targetFd = Os.open(target.getAbsolutePath(), in doWriteInternal() local
723 mContext.getSystemService(StorageManager.class).allocateBytes(targetFd, lengthBytes, in doWriteInternal()
728 Os.lseek(targetFd, offsetBytes, OsConstants.SEEK_SET); in doWriteInternal()
748 FileUtils.copy(incomingFd.getFileDescriptor(), targetFd, lengthBytes, null, in doWriteInternal() local
757 IoUtils.closeQuietly(targetFd); in doWriteInternal()
773 fd.init(mContext, targetFd); in doWriteInternal()
776 bridge.setTargetFile(targetFd); in doWriteInternal()
805 final FileDescriptor targetFd = Os.open(target.getAbsolutePath(), O_RDONLY, 0); in openReadInternalLocked() local
806 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