reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
5696 COMMON_INTERCEPTOR_ENTER(ctx, xdr_string, xdrs, p, maxsize); 5697 if (p && xdrs->x_op == __sanitizer_XDR_ENCODE) { 5698 COMMON_INTERCEPTOR_READ_RANGE(ctx, p, sizeof(*p)); 5698 COMMON_INTERCEPTOR_READ_RANGE(ctx, p, sizeof(*p)); 5699 COMMON_INTERCEPTOR_READ_RANGE(ctx, *p, REAL(strlen)(*p) + 1); 5699 COMMON_INTERCEPTOR_READ_RANGE(ctx, *p, REAL(strlen)(*p) + 1); 5704 int res = REAL(xdr_string)(xdrs, p, maxsize); 5705 if (p && xdrs->x_op == __sanitizer_XDR_DECODE) { 5706 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p, sizeof(*p)); 5706 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, p, sizeof(*p)); 5707 if (res && *p) 5708 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, *p, REAL(strlen)(*p) + 1); 5708 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, *p, REAL(strlen)(*p) + 1);