Lines Matching defs:proc

55     event_handler_func *proc;	/* Procedure to call to service this event. */
69 handler_func *proc; /* Procedure to call when fd is ready. */
70 gdb_client_data client_data; /* Argument to pass to proc. */
89 sig_handler_func *proc; /* Function to call to do the work */
174 timer_handler_func *proc; /* Function to call to do the work */
209 static void create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data);
267 file_event_ptr->proc = handle_file_event;
285 event_handler_func *proc;
306 proc = event_ptr->proc;
310 do this now because while processing the event, the proc
335 (*proc) (fd);
436 add_file_handler (int fd, handler_func * proc, gdb_client_data client_data)
462 create_file_handler (fd, POLLIN, proc, client_data);
469 create_file_handler (fd, GDB_READABLE | GDB_EXCEPTION, proc, client_data);
478 occurs, proc should be called.
483 create_file_handler (int fd, int mask, handler_func * proc, gdb_client_data client_data)
548 file_ptr->proc = proc;
650 through event_ptr->proc. EVENT_FILE_DESC is file descriptor of the
723 (*file_ptr->proc) (file_ptr->error, file_ptr->client_data);
873 create_async_signal_handler (sig_handler_func * proc, gdb_client_data client_data)
881 async_handler_ptr->proc = proc;
926 (*async_handler_ptr->proc) (async_handler_ptr->client_data);
970 create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data)
991 timer_ptr->proc = proc;
1091 (*saved_timer->proc) (saved_timer->client_data);
1136 event_ptr->proc = handle_timer_event;