Lines Matching refs:connection
293 xpc_connection_t connection, xpc_handler_t handler) { in TSAN_INTERCEPTOR() argument
294 SCOPED_TSAN_INTERCEPTOR(xpc_connection_set_event_handler, connection, in TSAN_INTERCEPTOR()
296 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
300 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
304 REAL(xpc_connection_set_event_handler)(connection, new_handler); in TSAN_INTERCEPTOR()
307 TSAN_INTERCEPTOR(void, xpc_connection_send_barrier, xpc_connection_t connection, in TSAN_INTERCEPTOR() argument
309 SCOPED_TSAN_INTERCEPTOR(xpc_connection_send_barrier, connection, barrier); in TSAN_INTERCEPTOR()
310 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
314 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
318 REAL(xpc_connection_send_barrier)(connection, new_barrier); in TSAN_INTERCEPTOR()
322 xpc_connection_t connection, xpc_object_t message, in TSAN_INTERCEPTOR() argument
324 SCOPED_TSAN_INTERCEPTOR(xpc_connection_send_message_with_reply, connection, in TSAN_INTERCEPTOR()
326 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
330 Acquire(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
335 (connection, message, replyq, new_handler); in TSAN_INTERCEPTOR()
338 TSAN_INTERCEPTOR(void, xpc_connection_cancel, xpc_connection_t connection) { in TSAN_INTERCEPTOR() argument
339 SCOPED_TSAN_INTERCEPTOR(xpc_connection_cancel, connection); in TSAN_INTERCEPTOR()
340 Release(thr, pc, (uptr)connection); in TSAN_INTERCEPTOR()
341 REAL(xpc_connection_cancel)(connection); in TSAN_INTERCEPTOR()