Symbol: xsputn
headers/cpp/builtinbuf.h
44
virtual streamsize xsputn(const char *, streamsize);
headers/cpp/indstream.h
65
virtual streamsize xsputn(const char* s, streamsize n);
headers/cpp/stdiostream.h
53
streamsize xsputn(const char* s, streamsize n);
headers/cpp/streambuf.h
326
virtual streamsize xsputn(const char* s, streamsize n);
headers/cpp/streambuf.h
358
streamsize sputn(const char* s, streamsize n) { return xsputn(s, n); }
headers/cpp/streambuf.h
418
streamsize xsputn(const char* s, streamsize n);
src/libs/stdc++/legacy/stdiostream.cc
137
return streambuf::xsputn(s, n);
src/libs/stdc++/legacy/streambuf.cc
137
{ return ((streambuf*)fp)->xsputn((const char*)s, n); }
src/libs/stdc++/legacy/streambuf.cc
187
JUMP_INIT(xsputn, _IO_sb_xsputn),
src/system/libroot/posix/glibc/libio/fileops.c
1627
JUMP_INIT(xsputn, _IO_file_xsputn),
src/system/libroot/posix/glibc/libio/fileops.c
1652
JUMP_INIT(xsputn, _IO_new_file_xsputn),
src/system/libroot/posix/glibc/libio/fileops.c
1676
JUMP_INIT(xsputn, _IO_new_file_xsputn),
src/system/libroot/posix/glibc/libio/iofopncook.c
127
JUMP_INIT(xsputn, _IO_file_xsputn),
src/system/libroot/posix/glibc/libio/iofopncook.c
246
JUMP_INIT(xsputn, _IO_file_xsputn),
src/system/libroot/posix/glibc/libio/iopopen.c
360
JUMP_INIT(xsputn, _IO_new_file_xsputn),
src/system/libroot/posix/glibc/libio/memstream.c
44
JUMP_INIT (xsputn, _IO_default_xsputn),
src/system/libroot/posix/glibc/libio/strops.c
358
JUMP_INIT(xsputn, _IO_default_xsputn),
src/system/libroot/posix/glibc/libio/vsnprintf.c
77
JUMP_INIT(xsputn, _IO_default_xsputn),
src/system/libroot/posix/glibc/libio/vswprintf.c
76
JUMP_INIT(xsputn, _IO_wdefault_xsputn),
src/system/libroot/posix/glibc/libio/wfileops.c
1058
JUMP_INIT(xsputn, _IO_wfile_xsputn),
src/system/libroot/posix/glibc/libio/wfileops.c
1084
JUMP_INIT(xsputn, _IO_wfile_xsputn),
src/system/libroot/posix/glibc/libio/wfileops.c
1108
JUMP_INIT(xsputn, _IO_wfile_xsputn),
src/system/libroot/posix/glibc/libio/wstrops.c
357
JUMP_INIT(xsputn, _IO_wdefault_xsputn),
src/system/libroot/posix/glibc/stdio-common/vfprintf.c
2251
JUMP_INIT (xsputn, _IO_wdefault_xsputn),
src/system/libroot/posix/glibc/stdio-common/vfprintf.c
2273
JUMP_INIT (xsputn, _IO_default_xsputn),