HomeSort by relevance Sort by last modified time
    Searched refs:fd1 (Results 26 - 50 of 66) sorted by null

12 3

  /external/toybox/lib/
portability.h 142 int linkat(int fd1, const char *path1, int fd2, const char *path2, int flag);
  /hardware/ti/omap4-aah/domx/omx_proxy_component/omx_camera/src/
omx_proxy_camera.c 409 int fd1 = -1, fd2 = -1; local
431 ret = ion_share(pCompPrv->ion_fd, handle, &fd1);
438 pVtcConfig->IonBufhdl[0] = (OMX_PTR)(fd1);
463 close(fd1);
  /system/core/init/
builtins.cpp 768 int fd1 = -1, fd2 = -1; local
776 if ((fd1 = open(args[1].c_str(), O_RDONLY|O_CLOEXEC)) < 0)
788 rc = read(fd1, p, brtr);
816 if (fd1 >= 0)
817 close(fd1);
  /system/core/toolbox/
newfs_msdos.c 265 int ch, fd, fd1; local
495 fd1 = -1;
503 if ((fd1 = open(bname, O_RDONLY)) == -1 || fstat(fd1, &sb))
648 if (!x && lseek(fd1, opt_ofs, SEEK_SET))
652 if ((n = read(fd1, img, bpb.bps)) == -1)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
connection.py 196 fd1, fd2 = os.pipe()
197 c1 = _multiprocessing.Connection(fd1, writable=False)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
connection.py 196 fd1, fd2 = os.pipe()
197 c1 = _multiprocessing.Connection(fd1, writable=False)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 196 fd1, fd2 = os.pipe()
197 c1 = _multiprocessing.Connection(fd1, writable=False)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 196 fd1, fd2 = os.pipe()
197 c1 = _multiprocessing.Connection(fd1, writable=False)
  /external/bison/darwin-lib/
stdio.h     [all...]
unistd.h     [all...]
  /external/bison/lib/
unistd.in.h     [all...]
stdio.in.h     [all...]
  /external/bison/linux-lib/
stdio.h     [all...]
unistd.h     [all...]
  /external/clang/test/CodeGen/
atomic-ops.c 178 struct S fd1(struct S *a) { function
179 // CHECK-LABEL: @fd1
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
libiberty.h 187 extern int fdmatch (int fd1, int fd2);
  /toolchain/binutils/binutils-2.25/include/
libiberty.h 190 extern int fdmatch (int fd1, int fd2);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 265 FileDescriptor fd1 = pfd1.getFileDescriptor(); local
266 decoder = BitmapRegionDecoder.newInstance(fd1, false);
  /external/libxml2/
runtest.c 609 int fd1, fd2; local
613 fd1 = open(r1, RD_FLAGS);
614 if (fd1 < 0)
618 close(fd1);
622 res1 = read(fd1, bytes1, 4096);
625 close(fd1);
632 close(fd1);
637 close(fd1);
    [all...]
  /system/core/adb/
shell_service.cpp 138 // Creates a socketpair and saves the endpoints to |fd1| and |fd2|.
139 bool CreateSocketpair(ScopedFd* fd1, ScopedFd* fd2) {
145 fd1->Reset(sockets[0]);
  /external/dbus/dbus/
dbus-sysdeps.h 405 dbus_bool_t _dbus_full_duplex_pipe (int *fd1,
  /external/elfutils/src/
elfcmp.c 162 int fd1; local
164 Elf *elf1 = open_file (fname1, &fd1, &ebl1);
660 close (fd1);
  /libcore/luni/src/main/java/libcore/io/
Os.java 155 public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException;
ForwardingOs.java 162 public void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { os.socketpair(domain, type, protocol, fd1, fd2); }
  /libcore/luni/src/main/java/android/system/
Os.java 496 public static void socketpair(int domain, int type, int protocol, FileDescriptor fd1, FileDescriptor fd2) throws ErrnoException { Libcore.os.socketpair(domain, type, protocol, fd1, fd2); }

Completed in 8194 milliseconds

12 3