Lines Matching defs:connection
317 xpc_connection_t connection, xpc_handler_t handler) {
318 SCOPED_TSAN_INTERCEPTOR(xpc_connection_set_event_handler, connection,
320 Release(thr, pc, (uptr)connection);
324 Acquire(thr, pc, (uptr)connection);
328 REAL(xpc_connection_set_event_handler)(connection, new_handler);
331 TSAN_INTERCEPTOR(void, xpc_connection_send_barrier, xpc_connection_t connection,
333 SCOPED_TSAN_INTERCEPTOR(xpc_connection_send_barrier, connection, barrier);
334 Release(thr, pc, (uptr)connection);
338 Acquire(thr, pc, (uptr)connection);
342 REAL(xpc_connection_send_barrier)(connection, new_barrier);
346 xpc_connection_t connection, xpc_object_t message,
348 SCOPED_TSAN_INTERCEPTOR(xpc_connection_send_message_with_reply, connection,
350 Release(thr, pc, (uptr)connection);
354 Acquire(thr, pc, (uptr)connection);
359 (connection, message, replyq, new_handler);
362 TSAN_INTERCEPTOR(void, xpc_connection_cancel, xpc_connection_t connection) {
363 SCOPED_TSAN_INTERCEPTOR(xpc_connection_cancel, connection);
364 Release(thr, pc, (uptr)connection);
365 REAL(xpc_connection_cancel)(connection);