reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
 3935   COMMON_INTERCEPTOR_ENTER(ctx, wordexp, s, p, flags);
 3940   int res = REAL(wordexp)(s, p, flags);
 3941   if (!res && p) {
 3942     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p, sizeof(*p));
 3942     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p, sizeof(*p));
 3943     if (p->we_wordc)
 3944       COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p->we_wordv,
 3945                                      sizeof(*p->we_wordv) * p->we_wordc);
 3945                                      sizeof(*p->we_wordv) * p->we_wordc);
 3946     for (uptr i = 0; i < p->we_wordc; ++i) {
 3947       char *w = p->we_wordv[i];