Searched defs:fileno (Results 1 - 25 of 27) sorted by relevance

12

/external/compiler-rt/test/tsan/
H A Duser_fopen.cc16 extern "C" int fileno(FILE *f) { function
19 printf("user fileno\n");
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dserver_process_unittest.py58 def fileno(self): member in class:MockFile
/external/chromium_org/third_party/icu/source/io/
H A Dufile.c22 * fileno is not declared when building with GCC in strict mode.
37 #if U_PLATFORM_USES_ONLY_WIN32_API && !defined(fileno)
39 #define fileno _fileno macro
60 result->fFileno = fileno(f);
/external/chromium_org/third_party/skia/src/ports/
H A DSkOSFile_win.cpp34 int fileno = _fileno((FILE*)f); local
35 if (fileno < 0) {
39 HANDLE file = (HANDLE)_get_osfhandle(fileno);
79 void* sk_fdmmap(int fileno, size_t* length) { argument
80 HANDLE file = (HANDLE)_get_osfhandle(fileno);
116 int fileno = sk_fileno(f); local
117 if (fileno < 0) {
121 return sk_fdmmap(fileno, length);
/external/icu/icu4c/source/io/
H A Dufile.c22 * fileno is not declared when building with GCC in strict mode.
37 #if U_PLATFORM_USES_ONLY_WIN32_API && !defined(fileno)
39 #define fileno _fileno macro
60 result->fFileno = fileno(f);
/external/skia/src/ports/
H A DSkOSFile_win.cpp23 int fileno = _fileno((FILE*)f); local
24 if (fileno < 0) {
28 HANDLE file = (HANDLE)_get_osfhandle(fileno);
68 void* sk_fdmmap(int fileno, size_t* length) { argument
69 HANDLE file = (HANDLE)_get_osfhandle(fileno);
105 int fileno = sk_fileno(f); local
106 if (fileno < 0) {
110 return sk_fdmmap(fileno, length);
/external/chromium_org/sync/tools/testserver/
H A Dxmppserver_test.py220 def fileno(self): member in class:FakeSocket
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dtools_common.h39 #define fileno _fileno macro
/external/chromium_org/third_party/tlslite/tlslite/
H A Dtlsrecordlayer.py497 def fileno(self): member in class:TLSRecordLayer
/external/fio/
H A Dblktrace.c177 static void trace_add_open_close_event(struct thread_data *td, int fileno, enum file_log_act action) argument
185 ipo->fileno = fileno;
210 last_fileno = f->fileno;
216 int fileno; local
219 fileno = add_file_exclusive(td, dev);
221 td->files[fileno]->major = maj;
222 td->files[fileno]->minor = min;
223 trace_add_open_close_event(td, fileno, FIO_LOG_OPEN_FILE);
224 last_fileno = fileno;
233 store_ipo(struct thread_data *td, unsigned long long offset, unsigned int bytes, int rw, unsigned long long ttime, int fileno) argument
282 int fileno; local
313 int fileno; local
[all...]
H A Diolog.h83 int fileno; member in union:io_piece::__anon21436
H A Dfile.h78 int fileno; member in struct:fio_file
H A Diolog.c95 f = td->files[ipo->fileno];
143 io_u->file = td->files[ipo->fileno];
315 int reads, writes, waits, fileno = 0, file_action = 0; /* stupid gcc */ local
358 fileno = get_fileno(td, fname);
362 fileno = add_file(td, fname, 0, 1);
366 fileno = get_fileno(td, fname);
369 fileno = get_fileno(td, fname);
411 ipo->fileno = fileno;
/external/libvpx/libvpx/
H A Dtools_common.h44 #define fileno _fileno macro
/external/zlib/src/test/
H A Dminigzip.c38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
54 # define fileno(file) file->__file macro
57 # include <unix.h> /* for fileno */
401 int ifd = fileno(in);
608 file = gzdopen(fileno(stdin), "rb");
612 file = gzdopen(fileno(stdout), outmode);
638 file = gzdopen(fileno(stdout), outmode);
/external/chromium-trace/trace-viewer/examples/stream_server/
H A Dstandalone.py408 def fileno(self): member in class:WebSocketServer
409 """Override SocketServer.TCPServer.fileno."""
411 self._logger.critical('Not supported: fileno')
412 return self._sockets[0][0].fileno()
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dstandalone.py404 def fileno(self): member in class:WebSocketServer
405 """Override SocketServer.TCPServer.fileno."""
407 self._logger.critical('Not supported: fileno')
408 return self._sockets[0][0].fileno()
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py572 self.child_fd = sys.stdout.fileno()
688 def fileno(self): member in class:spawn
1058 #fd = sys.stdin.fileno()
1503 x = fcntl.ioctl(self.fileno(), TIOCGWINSZ, s)
1528 fcntl.ioctl(self.fileno(), TIOCSWINSZ, s)
1558 a = struct.unpack('hhhh', fcntl.ioctl(sys.stdout.fileno(),
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/
H A Dserialposix.py608 def fileno(self): member in class:PosixSerial
/external/lldb/test/pexpect-2.4/
H A Dpexpect.py536 self.child_fd = sys.stdout.fileno() # used by setwinsize()
650 def fileno (self): # File-like object. member in class:spawn
1010 #fd = sys.stdin.fileno()
1429 x = fcntl.ioctl(self.fileno(), TIOCGWINSZ, s)
1453 fcntl.ioctl(self.fileno(), TIOCSWINSZ, s)
1482 a = struct.unpack('hhhh', fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ , s))
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dstandalone.py543 def fileno(self): member in class:WebSocketServer
544 """Override SocketServer.TCPServer.fileno."""
546 self._logger.critical('Not supported: fileno')
547 return self._sockets[0][0].fileno()
/external/chromium_org/third_party/icu/source/extra/uconv/
H A Duconv.cpp50 #ifndef fileno
51 #define fileno _fileno macro
638 if (setmode(fileno(stdin), O_BINARY) == -1) {
1339 if (setmode(fileno(outfile), O_BINARY) == -1) {
/external/chromium_org/third_party/webrtc/base/
H A Dstream.cc30 #define fileno _fileno macro
440 if (fstat(fileno(file_), &file_stats) != 0)
490 return flock(fileno(file_), LOCK_EX|LOCK_NB) == 0;
500 return flock(fileno(file_), LOCK_UN) == 0;
/external/icu/icu4c/source/extra/uconv/
H A Duconv.cpp50 #ifndef fileno
51 #define fileno _fileno macro
638 if (setmode(fileno(stdin), O_BINARY) == -1) {
1339 if (setmode(fileno(outfile), O_BINARY) == -1) {
/external/openssl/apps/
H A Dapps.c114 the declaration of fileno(). The value
2778 # ifdef fileno
2779 # undef fileno macro
2780 # define fileno(a) (int)_fileno(a) macro
3084 { return read(fileno(stdin),buf,siz); }
3097 { return write(fileno(stdout),buf,siz); }

Completed in 588 milliseconds

12