/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/chromium_org/v8/src/ |
platform-openbsd.cc | 119 mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fileno(file), 0); 134 mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fileno(file), 0); 220 fileno(f), 0);
|
/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/src/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);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_file_eintr.py | 45 'infile = _io.FileIO(sys.stdin.fileno(), "rb")') 188 return ('infile = io.open(sys.stdin.fileno(), "rb") ;' 203 return ('infile = io.open(sys.stdin.fileno(), "rt", newline=None) ;'
|
test_gzip.py | 39 # Try flush and fileno. 41 f.fileno() 43 os.fsync(f.fileno())
|
test_linuxaudiodev.py | 30 self.dev.fileno()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_file_eintr.py | 45 'infile = _io.FileIO(sys.stdin.fileno(), "rb")') 188 return ('infile = io.open(sys.stdin.fileno(), "rb") ;' 203 return ('infile = io.open(sys.stdin.fileno(), "rt", newline=None) ;'
|
test_gzip.py | 39 # Try flush and fileno. 41 f.fileno() 43 os.fsync(f.fileno())
|
/bionic/libc/include/ |
stdio.h | 98 short _file; /* fileno, if Unix descriptor, else -1 */ 300 int fileno(FILE *); 407 #define fileno(p) (!__isthreaded ? __sfileno(p) : (fileno)(p)) macro
|
/external/chromium_org/base/memory/ |
shared_memory_posix.cc | 215 if (fstat(fileno(fp.get()), &stat) != 0) 219 if (HANDLE_EINTR(ftruncate(fileno(fp.get()), options.size)) != 0) 365 if (fstat(fileno(fp.get()), &st)) 374 mapped_file_ = dup(fileno(fp.get()));
|
/external/chromium_org/content/common/ |
sandbox_mac_fontloading_unittest.mm | 117 file_util::WriteFileDescriptor(fileno(temp_file),
|
/external/chromium_org/tools/gn/ |
standard_out.cc | 41 is_console = isatty(fileno(stdout));
|
/external/chromium_org/v8/tools/ |
stats-viewer.py | 118 size = os.fstat(data_file.fileno()).st_size 119 fileno = data_file.fileno() 120 self.shared_mmap = mmap.mmap(fileno, size, access=mmap.ACCESS_READ)
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
StreamChecker.cpp | 91 void Fileno(CheckerContext &C, const CallExpr *CE) const; 139 II_fileno = &Ctx.Idents.get("fileno"); 194 Fileno(C, CE); 331 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/include/llvm/MC/ |
MCObjectStreamer.h | 104 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
|
/external/llvm/lib/MC/ |
MCStreamer.cpp | 155 bool MCStreamer::EmitDwarfFileDirective(unsigned FileNo, 158 return getContext().GetDwarfFile(Directory, Filename, FileNo, CUID) == 0; 161 void MCStreamer::EmitDwarfLocDirective(unsigned FileNo, unsigned Line, 166 getContext().setCurrentDwarfLoc(FileNo, Line, Column, Flags, Isa,
|
/external/oprofile/libpp/ |
symbol.h | 33 /// A simple container for a fileno:linenr location.
|
/external/qemu/distrib/jpeg-6b/ |
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/qemu/ |
migration-exec.c | 80 s->fd = fileno(f);
|
/external/v8/tools/ |
stats-viewer.py | 118 size = os.fstat(data_file.fileno()).st_size 119 fileno = data_file.fileno() 120 self.shared_mmap = mmap.mmap(fileno, size, access=mmap.ACCESS_READ)
|
/frameworks/native/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); \
|