Home | History | Annotate | Download | only in rtl

Lines Matching refs:domain

1275 TSAN_INTERCEPTOR(int, socket, int domain, int type, int protocol) {
1276 SCOPED_TSAN_INTERCEPTOR(socket, domain, type, protocol);
1277 int fd = REAL(socket)(domain, type, protocol);
1283 TSAN_INTERCEPTOR(int, socketpair, int domain, int type, int protocol, int *fd) {
1284 SCOPED_TSAN_INTERCEPTOR(socketpair, domain, type, protocol, fd);
1285 int res = REAL(socketpair)(domain, type, protocol, fd);