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
 1850   if (pwd) {
 1851     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd, sizeof(*pwd));
 1851     COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd, sizeof(*pwd));
 1852     if (pwd->pw_name)
 1853       COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd->pw_name,
 1854                                      REAL(strlen)(pwd->pw_name) + 1);
 1855     if (pwd->pw_passwd)
 1856       COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd->pw_passwd,
 1857                                      REAL(strlen)(pwd->pw_passwd) + 1);
 1859     if (pwd->pw_gecos)
 1860       COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd->pw_gecos,
 1861                                      REAL(strlen)(pwd->pw_gecos) + 1);
 1868     if (pwd->pw_dir)
 1869       COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd->pw_dir,
 1870                                      REAL(strlen)(pwd->pw_dir) + 1);
 1871     if (pwd->pw_shell)
 1872       COMMON_INTERCEPTOR_WRITE_RANGE(ctx, pwd->pw_shell,
 1873                                      REAL(strlen)(pwd->pw_shell) + 1);