Searched refs:EOF (Results 1 – 25 of 31) sorted by relevance
12
/bionic/libc/upstream-openbsd/lib/libc/gen/ |
D | isctype.c | 44 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L|_N))); in isalnum() 51 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L))); in isalpha() 65 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _C)); in iscntrl() 72 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _N)); in isdigit() 79 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N))); in isgraph() 86 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _L)); in islower() 93 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N|_B))); in isprint() 100 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _P)); in ispunct() 107 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _S)); in isspace() 114 return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _U)); in isupper() [all …]
|
D | tolower_.c | 13 EOF,
|
D | toupper_.c | 14 EOF,
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | wbuf.c | 59 return (EOF); in __swbuf() 75 return (EOF); in __swbuf() 82 return (EOF); in __swbuf()
|
D | refill.c | 63 return (EOF); in __srefill() 70 return (EOF); in __srefill() 75 return (EOF); in __srefill() 125 return (EOF); in __srefill()
|
D | ungetc.c | 57 return (EOF); in __submore() 69 return (EOF); in __submore() 81 if (c == EOF) in ungetc() 82 return (EOF); in ungetc() 94 return (EOF); in ungetc()
|
D | fclose.c | 46 return (EOF); in fclose() 52 r = EOF; in fclose()
|
D | wsetup.c | 55 return (EOF); in __swsetup() 72 return (EOF); in __swsetup()
|
D | rget.c | 50 return (EOF); in __srget()
|
D | fflush.c | 49 r = EOF; in fflush() 82 return (EOF); in __sflush()
|
D | vswscanf.c | 69 return (EOF); in vswscanf() 74 return (EOF); in vswscanf()
|
D | gets.c | 48 if (c == EOF) in gets()
|
D | putc.c | 48 return (EOF); in putc_unlocked()
|
D | fseek.c | 66 return (EOF); in fseeko() 89 return (EOF); in fseeko() 113 return (EOF); in fseeko() 234 return (EOF); in fseeko()
|
D | fpurge.c | 50 return(EOF); in fpurge()
|
D | puts.c | 61 return (ret ? EOF : '\n'); in puts()
|
D | setvbuf.c | 56 return (EOF); in setvbuf() 98 ret = EOF; in setvbuf()
|
D | vdprintf.c | 72 return fflush(&f) ? EOF : ret; in vdprintf()
|
D | fgetwc.c | 65 if (ch == EOF) { in __fgetwc_unlock()
|
D | fvwrite.c | 62 return (EOF); in __sfvwrite() 203 return (EOF); in __sfvwrite()
|
D | vfwscanf.c | 323 return (EOF); in __vfwscanf() 784 return (nconversions != 0 ? nassigned : EOF); in __vfwscanf()
|
D | vfscanf.c | 297 return (EOF); in __svfscanf() 447 if (wctob(*wcp) != EOF && in __svfscanf()
|
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
D | wctob.c | 41 return (EOF); in wctob()
|
D | btowc.c | 40 if (c == EOF) in btowc()
|
/bionic/tests/ |
D | stdio_test.cpp | 574 ASSERT_EQ(EOF, putc('x', fp)); in TEST() 599 EXPECT_EQ(EOF, putc('x', fp)); in TEST() 603 EXPECT_EQ(EOF, fprintf(fp, "hello")); in TEST() 607 EXPECT_EQ(EOF, fwprintf(fp, L"hello")); in TEST() 617 EXPECT_EQ(EOF, fputs("hello", fp)); in TEST() 758 ASSERT_NE(EOF, fputs("abc>\n", fp)); in TEST() 775 ASSERT_NE(EOF, fputs("xyz\n", fp)); in TEST() 805 ASSERT_NE(EOF, fputs("hello, world!", fp)); in TEST()
|
12