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

/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc517 uptr from_length = REAL(strlen)(from); local
518 ASAN_READ_RANGE(ctx, from, from_length + 1);
521 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
524 // to_length + from_length + 1.
525 if (from_length > 0) {
526 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1,
527 from, from_length + 1);
538 uptr from_length = MaybeRealStrnlen(from, size); local
539 uptr copy_length = Min(size, from_length + 1);
543 ASAN_WRITE_RANGE(ctx, to + to_length, from_length
[all...]

Completed in 40 milliseconds