Home | History | Annotate | Download | only in rtl

Lines Matching refs:domain

1360 TSAN_INTERCEPTOR(int, socket, int domain, int type, int protocol) {
1361 SCOPED_TSAN_INTERCEPTOR(socket, domain, type, protocol);
1362 int fd = REAL(socket)(domain, type, protocol);
1368 TSAN_INTERCEPTOR(int, socketpair, int domain, int type, int protocol, int *fd) {
1369 SCOPED_TSAN_INTERCEPTOR(socketpair, domain, type, protocol, fd);
1370 int res = REAL(socketpair)(domain, type, protocol, fd);