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
 4218   COMMON_INTERCEPTOR_WRITE_RANGE(ctx, mnt, sizeof(*mnt));
 4218   COMMON_INTERCEPTOR_WRITE_RANGE(ctx, mnt, sizeof(*mnt));
 4219   if (mnt->mnt_fsname)
 4220     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, mnt->mnt_fsname,
 4221                                    REAL(strlen)(mnt->mnt_fsname) + 1);
 4222   if (mnt->mnt_dir)
 4223     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, mnt->mnt_dir,
 4224                                    REAL(strlen)(mnt->mnt_dir) + 1);
 4225   if (mnt->mnt_type)
 4226     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, mnt->mnt_type,
 4227                                    REAL(strlen)(mnt->mnt_type) + 1);
 4228   if (mnt->mnt_opts)
 4229     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, mnt->mnt_opts,
 4230                                    REAL(strlen)(mnt->mnt_opts) + 1);