Searched refs:strerror_r (Results 1 – 19 of 19) sorted by relevance
/bionic/tests/ |
D | string_posix_strerror_r_test.cpp | 44 ASSERT_EQ(0, strerror_r(0, buf, sizeof(buf))); in TEST() 46 ASSERT_EQ(0, strerror_r(1, buf, sizeof(buf))); in TEST() 50 ASSERT_EQ(0, strerror_r(-1, buf, sizeof(buf))); in TEST() 52 ASSERT_EQ(0, strerror_r(1234, buf, sizeof(buf))); in TEST() 58 ASSERT_EQ(-1, strerror_r(4567, buf, 2)); in TEST()
|
D | string_test.cpp | 98 ASSERT_STREQ("Success", strerror_r(0, buf, sizeof(buf))); in TEST() 102 ASSERT_STREQ("Operation not permitted", strerror_r(1, buf, sizeof(buf))); in TEST() 108 ASSERT_STREQ("Unknown error -1", strerror_r(-1, buf, sizeof(buf))); in TEST() 110 ASSERT_STREQ("Unknown error 1234", strerror_r(1234, buf, sizeof(buf))); in TEST() 116 ASSERT_EQ(buf, strerror_r(4567, buf, 2)); in TEST()
|
/bionic/libc/bionic/ |
D | strerror.cpp | 44 strerror_r(error_number, result, g_strerror_tls_buffer.size()); in strerror()
|
D | strerror_r.cpp | 52 int strerror_r(int error_number, char* buf, size_t buf_len) { in strerror_r() function 72 strerror_r(error_number, buf, buf_len); in __gnu_strerror_r()
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | perror.c | 55 (void)strerror_r(errno, buf, sizeof(buf)); in perror()
|
/bionic/libc/include/ |
D | string.h | 90 extern char* strerror_r(int, char*, size_t) __RENAME(__gnu_strerror_r); 92 extern int strerror_r(int, char*, size_t);
|
/bionic/libc/ |
D | libc.mips64.map | 932 strerror_r;
|
D | libc.x86_64.map | 932 strerror_r;
|
D | libc.arm64.map | 932 strerror_r;
|
D | libc.x86.brillo.map | 988 strerror_r;
|
D | libc.mips.brillo.map | 990 strerror_r;
|
D | libc.arm.brillo.map | 992 strerror_r;
|
D | libc.mips.map | 990 strerror_r;
|
D | libc.x86.map | 988 strerror_r;
|
D | libc.arm.map | 992 strerror_r;
|
D | libc.map.txt | 1017 strerror_r;
|
D | Android.mk | 223 bionic/strerror_r.cpp \
|
D | Android.bp | 1405 "bionic/strerror_r.cpp",
|
/bionic/libc/tools/ |
D | posix-2013.txt | 1002 strerror_r
|