Searched defs:fcntl (Results 1 - 10 of 10) sorted by relevance

/external/lldb/test/pexpect-2.4/examples/
H A Dscript.py22 import signal, fcntl, termios, struct namespace
89 a = struct.unpack ('HHHH', fcntl.ioctl(sys.stdout.fileno(), TIOCGWINSZ , s))
/external/bison/lib/
H A Dfcntl.c23 #include <fcntl.h>
31 # define rpl_fcntl fcntl
33 #undef fcntl macro
152 native fcntl. An unrecognized ACTION returns -1 with errno set to
194 int flags = fcntl (fd, F_GETFD);
200 result = fcntl (fd, action, target);
201 if (0 <= result && fcntl (fd, F_SETFD, flags) == -1)
235 result = fcntl (fd, action, target);
256 int flags = fcntl (result, F_GETFD);
257 if (flags < 0 || fcntl (resul
[all...]
H A Derror.c88 # include <fcntl.h>
99 /* The gnulib override of fcntl is not needed in this file. */
100 # undef fcntl macro
130 There is no fcntl, and the gnulib replacement fcntl does not support
135 # error Please port fcntl to your platform
137 return 0 <= fcntl (fd, F_GETFL);
/external/bison/darwin-lib/
H A Dfcntl.h2 /* Like <fcntl.h>, but with non-working flags defined to 0.
33 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution.
34 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an
41 #include_next <fcntl.h>
52 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution.
53 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an
61 #include_next <fcntl.h>
400 # undef fcntl
401 # define fcntl rpl_fcntl
403 _GL_FUNCDECL_RPL (fcntl, in
411 _GL_CXXALIASWARN (fcntl); variable
413 # undef fcntl macro
[all...]
/external/bison/linux-lib/
H A Dfcntl.h2 /* Like <fcntl.h>, but with non-working flags defined to 0.
33 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution.
34 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an
41 #include_next <fcntl.h>
52 <fcntl.h>. On glibc systems, we would like to avoid namespace pollution.
53 But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an
61 #include_next <fcntl.h>
400 # undef fcntl macro
401 # define fcntl rpl_fcntl macro
403 _GL_FUNCDECL_RPL (fcntl, in
411 _GL_CXXALIASWARN (fcntl); variable
413 # undef fcntl macro
[all...]
/external/lldb/test/pexpect-2.4/
H A Dpexpect.py78 import fcntl namespace
1429 x = fcntl.ioctl(self.fileno(), TIOCGWINSZ, s)
1453 fcntl.ioctl(self.fileno(), TIOCSWINSZ, s)
1479 import pexpect, struct, fcntl, termios, signal, sys
1482 a = struct.unpack('hhhh', fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ , s))
/external/chromium-trace/trace-viewer/tracing/third_party/python_gflags/
H A Dgflags.py399 import fcntl namespace
401 fcntl = None variable
534 if (not sys.stdout.isatty()) or (termios is None) or (fcntl is None):
537 data = fcntl.ioctl(sys.stdout, termios.TIOCGWINSZ, '1234')
/external/lldb/test/
H A Ddotest.py1401 import fcntl, termios, struct, os namespace
1402 cr = struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ,
/external/valgrind/coregrind/
H A Dm_libcfile.c61 newfd = VG_(fcntl)(oldfd, VKI_F_DUPFD, VG_(fd_hard_limit));
66 VG_(fcntl)(newfd, VKI_F_SETFD, VKI_FD_CLOEXEC);
114 if (0 == VG_(fcntl)(fd, VKI_F_GETPATH, (UWord)tmp)) {
423 Int VG_(fcntl) ( Int fd, Int cmd, Addr arg ) function
/external/fio/os/windows/
H A Dposix.c375 int fcntl(int fildes, int cmd, ...) function

Completed in 364 milliseconds