OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:targetfd
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/services/core/java/com/android/server/pm/
PackageInstallerSession.java
371
final FileDescriptor
targetFd
= Libcore.os.open(target.getAbsolutePath(),
378
final StructStat stat = Libcore.os.fstat(
targetFd
);
384
Libcore.os.posix_fallocate(
targetFd
, 0, lengthBytes);
388
Libcore.os.lseek(
targetFd
, offsetBytes, OsConstants.SEEK_SET);
391
bridge.setTargetFile(
targetFd
);
418
final FileDescriptor
targetFd
= Libcore.os.open(target.getAbsolutePath(), O_RDONLY, 0);
419
return new ParcelFileDescriptor(
targetFd
);
[
all
...]
Completed in 1549 milliseconds