Home
last modified time | relevance | path

Searched refs:str (Results 1 – 12 of 12) sorted by relevance

/libio/
A Diofputws_u.c32 fputws_unlocked (const wchar_t *str, FILE *fp) in fputws_unlocked() argument
34 size_t len = __wcslen (str); in fputws_unlocked()
38 && _IO_sputn (fp, (char *) str, len) == len) in fputws_unlocked()
A Diofputws.c31 fputws (const wchar_t *str, FILE *fp) in fputws() argument
33 size_t len = __wcslen (str); in fputws()
38 && _IO_sputn (fp, (char *) str, len) == len) in fputws()
A Diofputs_u.c32 __fputs_unlocked (const char *str, FILE *fp) in __fputs_unlocked() argument
34 size_t len = strlen (str); in __fputs_unlocked()
37 if (_IO_fwide (fp, -1) == -1 && _IO_sputn (fp, str, len) == len) in __fputs_unlocked()
A Dioputs.c32 _IO_puts (const char *str) in _IO_puts() argument
35 size_t len = strlen (str); in _IO_puts()
40 && _IO_sputn (stdout, str, len) == len in _IO_puts()
A Dtst-fputws.c26 const wchar_t str[] = L"\xbe\n"; in do_test() local
31 if (fputws (str, stdout) < 0) in do_test()
A Diofputs.c31 _IO_fputs (const char *str, FILE *fp) in _IO_fputs() argument
33 size_t len = strlen (str); in _IO_fputs()
38 && _IO_sputn (fp, str, len) == len) in _IO_fputs()
A Dtst_swprintf.c11 const char *str; member
56 ssize_t res = swprintf (buf, tests[n].n, L"%s", tests[n].str); in main()
61 tests[n].n, tests[n].str); in main()
67 tests[n].n, tests[n].str, tests[n].exp, res); in main()
72 tests[n].n, tests[n].str); in main()
A Dtst-sscanf.c10 const char str[] = "abbcXab"; in do_test() local
14 sscanf (str, cnv, wcs); in do_test()
A Dtst_putwc.c37 const wchar_t str[] = L"This is a test of putwc\n"; in do_test() local
49 for (n = 0; str[n] != L'\0'; ++n) in do_test()
50 putwc (str[n], fp); in do_test()
A Dtst-ungetwc1.c14 const char *str = "abcdef"; in do_test() local
40 fputs (str, fp); in do_test()
A Dtst-ungetwc2.c14 const char *str = "abcdef"; in do_test() local
40 fputs (str, fp); in do_test()
/libio/bits/
A Dstdio2.h43 # define sprintf(str, ...) \ argument
44 __builtin___sprintf_chk (str, __USE_FORTIFY_LEVEL - 1, \
45 __glibc_objsize (str), __VA_ARGS__)
76 # define snprintf(str, len, ...) \ argument
77 __builtin___snprintf_chk (str, len, __USE_FORTIFY_LEVEL - 1, \
78 __glibc_objsize (str), __VA_ARGS__)

Completed in 20 milliseconds