Lines Matching defs:fake
412 TSAN_INTERCEPTOR(int, pause, int fake) {
413 SCOPED_TSAN_INTERCEPTOR(pause, fake);
414 return BLOCK_REAL(pause)(fake);
1800 TSAN_INTERCEPTOR(int, inotify_init, int fake) {
1801 SCOPED_TSAN_INTERCEPTOR(inotify_init, fake);
1802 int fd = REAL(inotify_init)(fake);
1923 TSAN_INTERCEPTOR(void*, tmpfile, int fake) {
1924 SCOPED_TSAN_INTERCEPTOR(tmpfile, fake);
1925 void *res = REAL(tmpfile)(fake);
1935 TSAN_INTERCEPTOR(void*, tmpfile64, int fake) {
1936 SCOPED_TSAN_INTERCEPTOR(tmpfile64, fake);
1937 void *res = REAL(tmpfile64)(fake);
1957 TSAN_INTERCEPTOR(void, abort, int fake) {
1958 SCOPED_TSAN_INTERCEPTOR(abort, fake);
1960 REAL(abort)(fake);
2312 TSAN_INTERCEPTOR(int, fork, int fake) {
2314 return REAL(fork)(fake);
2315 SCOPED_INTERCEPTOR_RAW(fork, fake);
2316 return REAL(fork)(fake);
2345 TSAN_INTERCEPTOR(int, vfork, int fake) {
2359 return WRAP(fork)(fake);