HomeSort by relevance Sort by last modified time
    Searched full:targetfd (Results 1 - 2 of 2) sorted by null

  /frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerSession.java 452 final FileDescriptor targetFd = Libcore.os.open(target.getAbsolutePath(),
459 final StructStat stat = Libcore.os.fstat(targetFd);
465 Libcore.os.posix_fallocate(targetFd, 0, lengthBytes);
469 Libcore.os.lseek(targetFd, offsetBytes, OsConstants.SEEK_SET);
472 bridge.setTargetFile(targetFd);
499 final FileDescriptor targetFd = Libcore.os.open(target.getAbsolutePath(), O_RDONLY, 0);
500 return new ParcelFileDescriptor(targetFd);
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileChannelImpl.java 428 FileDescriptor targetFD = null;
432 targetFD = ((FileChannelImpl)target).fd;
437 targetFD = ((SelChImpl)target).getFD();
439 if (targetFD == null)
442 int targetFDVal = IOUtil.fdVal(targetFD);
    [all...]

Completed in 1211 milliseconds