HomeSort by relevance Sort by last modified time
    Searched refs:_fileno (Results 1 - 25 of 68) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fileno.c 58 int _fileno __P((FILE *)); /* XXX */
60 __weak_alias(fileno,_fileno)
63 _fileno(fp)
  /external/lz4/programs/
platform.h 113 # define IS_CONSOLE(stdStream) _isatty(_fileno(stdStream))
121 return _isatty(_fileno(stdStream)) && GetConsoleMode((HANDLE)_get_osfhandle(_fileno(stdStream)), &dummy);
133 # include <io.h> /* _setmode, _fileno, _get_osfhandle */
137 # define SET_BINARY_MODE(file) { int unused=_setmode(_fileno(file), _O_BINARY); (void)unused; }
138 # define SET_SPARSE_FILE_MODE(file) { DWORD dw; DeviceIoControl((HANDLE) _get_osfhandle(_fileno(file)), FSCTL_SET_SPARSE, 0, 0, 0, 0, &dw, 0); }
  /external/boringssl/src/tool/
tool.cc 95 if (_setmode(_fileno(stdin), _O_BINARY) == -1) {
96 perror("_setmode(_fileno(stdin), O_BINARY)");
99 if (_setmode(_fileno(stdout), _O_BINARY) == -1) {
100 perror("_setmode(_fileno(stdout), O_BINARY)");
103 if (_setmode(_fileno(stderr), _O_BINARY) == -1) {
104 perror("_setmode(_fileno(stderr), O_BINARY)");
  /device/generic/goldfish-opengl/android-emu/android/utils/
debug.c 114 out_fd = _fileno(stdout);
115 err_fd = _fileno(stderr);
131 out_fd = _fileno(stdout);
132 err_fd = _fileno(stderr);
  /external/libchrome/mojo/core/test/
test_utils_win.cc 23 reinterpret_cast<HANDLE>(_get_osfhandle(_fileno(fp.get()))),
  /external/python/cpython3/Lib/asyncio/
unix_events.py 431 self._fileno = pipe.fileno()
435 mode = os.fstat(self._fileno).st_mode
440 self._fileno = None
444 os.set_blocking(self._fileno, False)
449 self._fileno, self._read_ready)
461 info.append(f'fd={self._fileno}')
465 selector, self._fileno, selectors.EVENT_READ)
478 data = os.read(self._fileno, self.max_size)
490 self._loop._remove_reader(self._fileno)
495 self._loop._remove_reader(self._fileno)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
win_posix.h 48 /* fileno cannot be an inline function, because _fileno is a macro. */
49 # define fileno(fileptr) _fileno(fileptr)
  /external/skia/tools/
skp_parser.cpp 71 (void)_setmode(_fileno(stdout), _O_BINARY);
  /external/skqp/tools/
skp_parser.cpp 71 (void)_setmode(_fileno(stdout), _O_BINARY);
  /external/libdivsufsort/examples/
mksary.c 97 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
121 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
unbwt.c 111 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
135 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
suftest.c 97 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
bwt.c 118 if(_setmode(_fileno(stdin), _O_BINARY) == -1) {
143 if(_setmode(_fileno(stdout), _O_BINARY) == -1) {
  /external/clang/tools/c-arcmt-test/
c-arcmt-test.c 117 _setmode( _fileno(stdout), _O_BINARY );
  /external/skia/third_party/icu/
SkLoadICU.cpp 31 int fileno = _fileno(stream.get());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
asyncore.py 236 self._fileno = None
281 map[self._fileno] = self
284 fd = self._fileno
290 self._fileno = None
301 self._fileno = sock.fileno()
654 self._fileno = self.socket.fileno()
  /external/python/cpython2/Lib/
asyncore.py 239 self._fileno = None
284 map[self._fileno] = self
287 fd = self._fileno
293 self._fileno = None
304 self._fileno = sock.fileno()
662 self._fileno = self.socket.fileno()
  /external/python/cpython3/Lib/
asyncore.py 226 self._fileno = None
271 map[self._fileno] = self
274 fd = self._fileno
280 self._fileno = None
290 self._fileno = sock.fileno()
643 self._fileno = self.socket.fileno()
  /external/catch2/include/internal/
catch_output_redirect.cpp 22 #define fileno _fileno
  /external/compiler-rt/lib/profile/
InstrProfilingPort.h 21 #define COMPILER_RT_FTRUNCATE(f,l) _chsize(_fileno(f),l)
  /external/google-benchmark/src/
colorprint.cc 162 return 0 != _isatty(_fileno(stdout));
  /external/libaom/libaom/common/
tools_common.h 54 #define fileno _fileno
  /external/libcxx/utils/google-benchmark/src/
colorprint.cc 162 return 0 != _isatty(_fileno(stdout));
  /external/libvpx/libvpx/
tools_common.h 50 #define fileno _fileno
  /external/skia/src/ports/
SkOSFile_win.cpp 41 int fileno = _fileno((FILE*)f);
119 return _fileno((FILE*)f);

Completed in 1250 milliseconds

1 2 3