/external/elfutils/tests/ |
ecp.c | 29 int infd = open (argv[1], O_RDONLY); local 30 if (infd == -1) 33 Elf *inelf = elf_begin (infd, ELF_C_READ, NULL);
|
/external/bluetooth/glib/tests/ |
spawn-test-win32-gui.c | 45 int infd = atoi (__argv[2]); local 49 if (infd < 0 || outfd < 0) 71 if ((k = read (infd, &n, sizeof (n))) != sizeof (n)) 82 if ((k = read (infd, buf, n)) != n)
|
/external/llvm/lib/Support/Unix/ |
Program.inc | 116 int InFD = open(File, FD == 0 ? O_RDONLY : O_WRONLY|O_CREAT, 0666); 117 if (InFD == -1) { 124 if (dup2(InFD, FD) == -1) { 126 close(InFD); 129 close(InFD); // Close the original FD
|
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream.h | 88 // int infd = open("infile", O_RDONLY); 95 // int bytes = read(infd, buffer, size); 104 // close(infd);
|
/dalvik/libdex/ |
SysUtil.h | 120 int sysCopyFileToFile(int outFd, int inFd, size_t count);
|
SysUtil.cpp | 411 int sysCopyFileToFile(int outFd, int inFd, size_t count) 419 ssize_t actual = TEMP_FAILURE_RETRY(read(inFd, buf, getSize));
|
ZipArchive.cpp | 587 static int inflateToFile(int outFd, int inFd, size_t uncompLen, size_t compLen) 635 ssize_t actual = TEMP_FAILURE_RETRY(read(inFd, readBuf, getSize));
|
/libcore/luni/src/main/java/libcore/io/ |
ForwardingOs.java | 102 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { return os.sendfile(outFd, inFd, inOffset, byteCount); }
|
Os.java | 97 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException;
|
Posix.java | 136 public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException;
|
/external/ppp/pppd/ |
main.c | [all...] |
/frameworks/base/core/java/com/android/internal/backup/ |
IBackupTransport.aidl | 109 int performBackup(in PackageInfo packageInfo, in ParcelFileDescriptor inFd);
|
/system/core/adb/ |
commandline.c | 245 static void copy_to_file(int inFd, int outFd) { 251 D("copy_to_file(%d -> %d)\n", inFd, outFd); 253 len = adb_read(inFd, buf, BUFSIZE); [all...] |
/libcore/luni/src/main/native/ |
libcore_io_Posix.cpp | [all...] |