Searched refs:mempcpy (Results 1 – 12 of 12) sorted by relevance
/bionic/docs/ |
D | clang_fortify_anatomy.md | 132 ## Breakdown of `mempcpy` 134 The [FORTIFY'ed version of `mempcpy`] is a full, featureful example of a 139 - If the `mempcpy` has the potential to write to more bytes than what is 147 void* mempcpy(void* __dst, const void* __src, size_t __n) __INTRODUCED_IN(23); 153 The [source for `mempcpy`] in Bionic's headers for is: 156 void* mempcpy(void* const dst __pass_object_size0, const void* src, size_t copy_amount) 159 "'mempcpy' called with size bigger than buffer") { 176 void* mempcpy( 183 "'mempcpy' called with size bigger than buffer"))) { 205 ### How does Clang select `mempcpy`? argument [all …]
|
D | status.md | 221 * <string.h> `basename`, `strerror_l`, `strerror_r`, `mempcpy`.
|
/bionic/libc/bionic/ |
D | exec.cpp | 157 mempcpy(mempcpy(mempcpy(buf, dir, dir_len), "/", 1), name, name_len + 1); in execvpe()
|
D | mempcpy.cpp | 31 void* mempcpy(void* dst, const void* src, size_t n) { in mempcpy() function
|
D | fortify.cpp | 506 return mempcpy(dst, src, count); in __mempcpy_chk()
|
/bionic/tests/ |
D | clang_fortify_tests.cpp | 152 EXPECT_FORTIFY_DEATH(mempcpy(small_buffer, large_buffer, sizeof(large_buffer))); in FORTIFY_TEST() 195 EXPECT_NO_DEATH(mempcpy(split.tiny_buffer, &split, sizeof(split))); in FORTIFY_TEST()
|
D | string_test.cpp | 1522 TEST(STRING_TEST, mempcpy) { in TEST() argument 1524 ASSERT_EQ(&dst[4], reinterpret_cast<char*>(mempcpy(dst, "hello", 4))); in TEST()
|
/bionic/libc/include/bits/fortify/ |
D | string.h | 64 void* _Nonnull mempcpy(void* _Nonnull const dst __pass_object_size0, const void* _Nonnull src, size… in mempcpy() function
|
/bionic/libc/include/ |
D | string.h | 55 void* _Nonnull mempcpy(void* _Nonnull __dst, const void* _Nonnull __src, size_t __n) __INTRODUCED_I…
|
/bionic/libc/ |
D | libc.map.txt | 643 mempcpy; # introduced=23
|
D | Android.bp | 876 "bionic/mempcpy.cpp",
|
/bionic/tools/versioner/platforms/ |
D | libc.map.txt | 643 mempcpy; # introduced=23
|