Home | History | Annotate | Download | only in asan

Lines Matching full:from_length

496     uptr from_length = REAL(strlen)(from);
497 ASAN_READ_RANGE(ctx, from, from_length + 1);
500 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
503 // to_length + from_length + 1.
504 if (from_length > 0) {
505 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1,
506 from, from_length + 1);
517 uptr from_length = MaybeRealStrnlen(from, size);
518 uptr copy_length = Min(size, from_length + 1);
522 ASAN_WRITE_RANGE(ctx, to + to_length, from_length + 1);
523 if (from_length > 0) {