Lines Matching +defs:from +defs:end
95 #define COMMON_INTERCEPTOR_GET_TLS_RANGE(begin, end) \
98 *end = t->tls_end(); \
100 *begin = *end = 0; \
175 // argument irrespective of the |from| length.
176 INTERCEPTOR(char *, strcat, char *to, const char *from) {
180 uptr from_length = internal_strlen(from);
181 MEMPROF_READ_RANGE(from, from_length + 1);
185 return REAL(strcat)(to, from);
188 INTERCEPTOR(char *, strncat, char *to, const char *from, usize size) {
192 uptr from_length = MaybeRealStrnlen(from, size);
194 MEMPROF_READ_RANGE(from, copy_length);
198 return REAL(strncat)(to, from, size);
201 INTERCEPTOR(char *, strcpy, char *to, const char *from) {
205 return REAL(strcpy)(to, from);
208 uptr from_size = internal_strlen(from) + 1;
209 MEMPROF_READ_RANGE(from, from_size);
211 return REAL(strcpy)(to, from);
242 INTERCEPTOR(char *, strncpy, char *to, const char *from, usize size) {
246 uptr from_size = Min<uptr>(size, MaybeRealStrnlen(from, size) + 1);
247 MEMPROF_READ_RANGE(from, from_size);
249 return REAL(strncpy)(to, from, size);
270 // different from int). So, we just imitate this behavior.