OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:targetfd
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerSession.java
430
final FileDescriptor
targetFd
= Libcore.os.open(target.getAbsolutePath(),
437
final StructStat stat = Libcore.os.fstat(
targetFd
);
443
Libcore.os.posix_fallocate(
targetFd
, 0, lengthBytes);
447
Libcore.os.lseek(
targetFd
, offsetBytes, OsConstants.SEEK_SET);
450
bridge.setTargetFile(
targetFd
);
477
final FileDescriptor
targetFd
= Libcore.os.open(target.getAbsolutePath(), O_RDONLY, 0);
478
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 382 milliseconds