HomeSort by relevance Sort by last modified time
    Searched full:fileno (Results 26 - 50 of 510) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 42 #define fileno _fileno macro
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xw32defs.h 42 #define fileno _fileno macro
  /external/zlib/
minigzip.c 38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
50 # define fileno(file) file->__file macro
53 # include <unix.h> /* for fileno */
206 int ifd = fileno(in);
397 file = gzdopen(fileno(stdin), "rb");
401 file = gzdopen(fileno(stdout), outmode);
427 file = gzdopen(fileno(stdout), outmode);
  /external/bluetooth/glib/tests/
unicode-collate.c 88 in = g_io_channel_unix_new (fileno (stdin));
  /external/webkit/Source/WebCore/platform/efl/
SharedBufferEfl.cpp 52 if (fstat(fileno(file), &fileStat)) {
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 80 fd = self._proc.stdout.fileno()
83 fd = self._proc.stderr.fileno()
165 out_fd = self._proc.stdout.fileno()
166 err_fd = self._proc.stderr.fileno()
server_process_unittest.py 38 def fileno(self): member in class:MockFile
  /external/openssl/crypto/rc4/
rc4.c 149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
  /external/chromium/base/
shared_memory_posix.cc 141 if (fstat(fileno(fp), &stat) != 0)
145 if (HANDLE_EINTR(ftruncate(fileno(fp), size)) != 0)
262 mapped_file_ = dup(fileno(fp));
  /external/ppp/pppd/plugins/radius/
buildreq.c 107 while (do_lock_exclusive(fileno(sf))!= 0)
138 ftruncate(fileno(sf),0);
143 if (do_unlock(fileno(sf)) != 0)
  /external/zlib/contrib/iostream2/
zstream.h 35 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
73 m_fp = ::gzdopen(fileno(fp), "rb");
191 m_fp = ::gzdopen(fileno(fp), mode);
  /bionic/libc/include/
stdio.h 124 short _file; /* fileno, if Unix descriptor, else -1 */
309 int fileno(FILE *);
417 #define fileno(p) (!__isthreaded ? __sfileno(p) : (fileno)(p)) macro
  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 95 void Fileno(CheckerContext &C, const CallExpr *CE) const;
153 II_fileno = &Ctx.Idents.get("fileno");
208 Fileno(C, CE);
335 void StreamChecker::Fileno(CheckerContext &C, const CallExpr *CE) const {
  /external/iproute2/misc/
nstat.c 549 if (flock(fileno(hist_fp), LOCK_EX)) {
553 if (fstat(fileno(hist_fp), &stb) != 0) {
571 ftruncate(fileno(hist_fp), 0);
615 ftruncate(fileno(hist_fp), 0);
  /external/jpeg/
wrjpgcom.c 492 setmode(fileno(stdin), O_BINARY);
495 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
524 setmode(fileno(stdout), O_BINARY);
527 if ((outfile = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
  /external/llvm/lib/MC/
MCStreamer.cpp 140 bool MCStreamer::EmitDwarfFileDirective(unsigned FileNo,
142 return getContext().GetDwarfFile(Filename, FileNo) == 0;
145 void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
150 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa,
MCAsmStreamer.cpp 198 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
199 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
742 bool MCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo, StringRef Filename){
744 OS << "\t.file\t" << FileNo << ' ';
748 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
751 void MCAsmStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
756 this->MCStreamer::EmitDwarfLocDirective(FileNo, Line, Column, Flags,
761 OS << "\t.loc\t" << FileNo << " " << Line << " " << Column;
    [all...]
  /external/llvm/lib/Target/PTX/
PTXMCAsmStreamer.cpp 166 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename);
488 bool PTXMCAsmStreamer::EmitDwarfFileDirective(unsigned FileNo,
490 OS << "\t.file\t" << FileNo << ' ';
493 return this->MCStreamer::EmitDwarfFileDirective(FileNo, Filename);
  /external/oprofile/libpp/
symbol.h 33 /// A simple container for a fileno:linenr location.
  /external/qemu/
migration-exec.c 80 s->fd = fileno(f);
  /external/v8/tools/
stats-viewer.py 116 size = os.fstat(data_file.fileno()).st_size
117 fileno = data_file.fileno()
118 self.shared_mmap = mmap.mmap(fileno, size, access=mmap.ACCESS_READ)
  /frameworks/base/cmds/screenshot/
screenshot.c 27 fb = fileno(fb_in);
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdio-write.c 51 int fd = fileno (stream); \
  /external/bluetooth/bluez/sbc/
sbcinfo.c 191 fd = fileno(stdin);
299 if (fd > fileno(stderr))
  /external/chromium/net/tools/testserver/
xmppserver_test.py 174 def fileno(self): member in class:XmppConnectionTest
246 def fileno(self): member in class:XmppServerTest

Completed in 2791 milliseconds

12 3 4 5 6 7 8 91011>>