Searched refs:SAN_INTERCEPTOR (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/sys/sys/ |
| H A D | systm.h | 257 #define SAN_INTERCEPTOR(func) \ macro 259 void *SAN_INTERCEPTOR(memset)(void *, int, size_t); 312 int SAN_INTERCEPTOR(copyin)(const void *, void *, size_t); 314 int SAN_INTERCEPTOR(copyout)(const void *, void *, size_t); 343 int SAN_INTERCEPTOR(fubyte)(volatile const void *base); 344 int SAN_INTERCEPTOR(fuword16)(volatile const void *base); 358 #define fubyte(b) SAN_INTERCEPTOR(fubyte)((b)) 359 #define fuword16(b) SAN_INTERCEPTOR(fuword16)((b)) 360 #define fueword(b, v) SAN_INTERCEPTOR(fueword)((b), (v)) 363 #define subyte(b, w) SAN_INTERCEPTOR(subyte)((b), (w)) [all …]
|
| H A D | libkern.h | 236 #ifndef SAN_INTERCEPTOR 237 #define SAN_INTERCEPTOR(func) \ macro 240 char *SAN_INTERCEPTOR(strcpy)(char *, const char *); 241 int SAN_INTERCEPTOR(strcmp)(const char *, const char *); 242 size_t SAN_INTERCEPTOR(strlen)(const char *); 244 #define strcpy(d, s) SAN_INTERCEPTOR(strcpy)((d), (s)) 245 #define strcmp(s1, s2) SAN_INTERCEPTOR(strcmp)((s1), (s2)) 246 #define strlen(s) SAN_INTERCEPTOR(strlen)(s)
|