Home
last modified time | relevance | path

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

/development/ndk/platforms/android-21/include/
Dstring.h127 size_t bos_src = __bos(src); in stpncpy() local
129 if (bos_src == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in stpncpy()
133 if (__builtin_constant_p(n) && (n <= bos_src)) { in stpncpy()
142 return __stpncpy_chk2(dest, src, n, bos_dest, bos_src); in stpncpy()
150 size_t bos_src = __bos(src); in strncpy() local
152 if (bos_src == __BIONIC_FORTIFY_UNKNOWN_SIZE) { in strncpy()
156 if (__builtin_constant_p(n) && (n <= bos_src)) { in strncpy()
165 return __strncpy_chk2(dest, src, n, bos_dest, bos_src); in strncpy()