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

/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc402 uptr from_length = REAL(strlen)(from); local
403 ASAN_READ_RANGE(from, from_length + 1);
406 ASAN_WRITE_RANGE(to + to_length, from_length + 1);
409 // to_length + from_length + 1.
410 if (from_length > 0) {
411 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1,
412 from, from_length + 1);
421 uptr from_length = MaybeRealStrnlen(from, size); local
422 uptr copy_length = Min(size, from_length + 1);
426 ASAN_WRITE_RANGE(to + to_length, from_length
[all...]

Completed in 68 milliseconds