Searched defs:from_length (Results 1 - 1 of 1) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc465 uptr from_length = REAL(strlen)(from); local
466 ASAN_READ_RANGE(from, from_length + 1);
469 ASAN_WRITE_RANGE(to + to_length, from_length + 1);
472 // to_length + from_length + 1.
473 if (from_length > 0) {
474 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1,
475 from, from_length + 1);
484 uptr from_length = MaybeRealStrnlen(from, size); local
485 uptr copy_length = Min(size, from_length + 1);
489 ASAN_WRITE_RANGE(to + to_length, from_length
[all...]

Completed in 1299 milliseconds