Searched refs:cleanup_handler (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/libdispatch-442.1.4/private/
H A Dio_private.h152 * @param cleanup_handler The handler to enqueue when the system
168 void (*cleanup_handler)(void *context, int error));
191 * @param cleanup_handler The handler to enqueue when the system
208 void (*cleanup_handler)(void *context, int error));
234 * @param cleanup_handler The handler to enqueue when the system
252 void (*cleanup_handler)(void *context, int error));
/macosx-10.10/libdispatch-442.1.4/dispatch/
H A Dio.h205 * @param cleanup_handler The handler to enqueue when the system
219 void (^cleanup_handler)(int error));
240 * @param cleanup_handler The handler to enqueue when the system
255 void (^cleanup_handler)(int error));
279 * @param cleanup_handler The handler to enqueue when the system
295 void (^cleanup_handler)(int error));
/macosx-10.10/libdispatch-442.1.4/src/
H A Dio.c228 dispatch_queue_t queue, int err, void (^cleanup_handler)(int))
231 if (cleanup_handler) {
236 cleanup_handler(err);
321 dispatch_queue_t queue, void (^cleanup_handler)(int))
349 _dispatch_io_init(channel, fd_entry, queue, err, cleanup_handler);
362 void (*cleanup_handler)(void *context, int error))
364 return dispatch_io_create(type, fd, queue, !cleanup_handler ? NULL :
365 ^(int error){ cleanup_handler(context, error); });
371 void (^cleanup_handler)(int error))
428 _dispatch_io_init(channel, NULL, queue, err, cleanup_handler);
227 _dispatch_io_init(dispatch_io_t channel, dispatch_fd_entry_t fd_entry, dispatch_queue_t queue, int err, void (^cleanup_handler)(int)) argument
320 dispatch_io_create(dispatch_io_type_t type, dispatch_fd_t fd, dispatch_queue_t queue, void (^cleanup_handler)(int)) argument
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dssh-agent.c1161 cleanup_handler(int sig) function
1500 signal(SIGHUP, cleanup_handler);
1501 signal(SIGTERM, cleanup_handler);

Completed in 95 milliseconds