Searched refs:handler (Results 51 - 75 of 423) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_serf/
H A Dmerge.c80 svn_ra_serf__handler_t *handler;
410 svn_ra_serf__handler_t *handler;
438 handler = svn_ra_serf__create_expat_handler(session, xmlctx, NULL,
441 handler->method = "MERGE";
442 handler->path = merge_ctx->merge_url;
443 handler->body_delegate = create_merge_body;
444 handler->body_delegate_baton = merge_ctx;
445 handler->body_type = "text/xml";
447 handler->header_delegate = setup_merge_headers;
448 handler
78 svn_ra_serf__handler_t *handler; member in struct:merge_context_t
408 svn_ra_serf__handler_t *handler; local
[all...]
H A Dgetlocks.c245 svn_ra_serf__handler_t *handler;
263 handler = svn_ra_serf__create_expat_handler(session, xmlctx, NULL, pool);
265 handler->method = "REPORT";
266 handler->path = req_url;
267 handler->body_type = "text/xml";
269 handler->body_delegate = create_getlocks_body;
270 handler->body_delegate_baton = lock_ctx;
272 err = svn_ra_serf__context_run_one(handler, pool);
294 if (handler->sline.code != 200
295 && handler
242 svn_ra_serf__handler_t *handler; local
[all...]
H A Dlist.c244 svn_ra_serf__handler_t *handler; local
273 handler = svn_ra_serf__create_expat_handler(session, xmlctx, NULL,
276 handler->method = "REPORT";
277 handler->path = req_url;
278 handler->body_delegate = create_list_body;
279 handler->body_delegate_baton = list_ctx;
280 handler->body_type = "text/xml";
282 SVN_ERR(svn_ra_serf__context_run_one(handler, scratch_pool));
284 if (handler->sline.code != 200)
285 SVN_ERR(svn_ra_serf__unexpected_status(handler));
[all...]
H A Dmultistatus.c429 item->http_status = server_error->handler->sline.code;
456 svn_ra_serf__server_error_create(svn_ra_serf__handler_t *handler,
459 svn_ra_serf__server_error_t *server_error = handler->server_error;
586 err = svn_error_trace(svn_ra_serf__unexpected_status(handler));
595 svn_ra_serf__handler_t *handler,
606 expected_status[0] = handler->sline.code;
612 ms_baton->handler = handler;
621 tmp_handler = svn_ra_serf__create_expat_handler(handler->session,
627 tmp_handler->sline = handler
455 svn_ra_serf__server_error_create(svn_ra_serf__handler_t *handler, apr_pool_t *scratch_pool) argument
593 svn_ra_serf__setup_error_parsing(svn_ra_serf__server_error_t **server_err, svn_ra_serf__handler_t *handler, svn_boolean_t expect_207_only, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
643 svn_ra_serf__handler_t *handler = baton; local
688 svn_ra_serf__handle_server_error(svn_ra_serf__server_error_t *server_error, svn_ra_serf__handler_t *handler, serf_request_t *request, serf_bucket_t *response, apr_status_t *serf_status, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/lib/libc/rpc/
H A Dsvc_auth.c72 enum auth_stat (*handler)(struct svc_req *, struct rpc_msg *); member in struct:authsvc
137 as = (*asp->handler)(rqst, msg);
186 enum auth_stat (*handler)(struct svc_req *, struct rpc_msg *))
217 asp->handler = handler;
/freebsd-11-stable/contrib/ntp/libntp/
H A Dsyssignal.c137 RETSIGTYPE (*handler)(int);
140 handler = SIG_DFL;
141 signal_no_reset(SIGINT, handler);
145 handler = &sigint_handler;
146 signal_no_reset(SIGINT, handler);
184 msyslog(LOG_ERR, "Can't %s console control handler: %m",
/freebsd-11-stable/contrib/wpa/src/utils/
H A Deloop.c46 eloop_sock_handler handler; member in struct:eloop_sock
57 eloop_timeout_handler handler; member in struct:eloop_timeout
66 eloop_signal_handler handler; member in struct:eloop_signal
258 int sock, eloop_sock_handler handler,
363 tmp[table->count].handler = handler;
538 table->table[i].handler(table->table[i].sock,
600 table->table[i].handler(table->table[i].sock,
620 if (table->handler == NULL)
622 table->handler(tabl
257 eloop_sock_table_add_sock(struct eloop_sock_table *table, int sock, eloop_sock_handler handler, void *eloop_data, void *user_data) argument
716 eloop_register_read_sock(int sock, eloop_sock_handler handler, void *eloop_data, void *user_data) argument
745 eloop_register_sock(int sock, eloop_event_type type, eloop_sock_handler handler, void *eloop_data, void *user_data) argument
767 eloop_register_timeout(unsigned int secs, unsigned int usecs, eloop_timeout_handler handler, void *eloop_data, void *user_data) argument
827 eloop_cancel_timeout(eloop_timeout_handler handler, void *eloop_data, void *user_data) argument
849 eloop_cancel_timeout_one(eloop_timeout_handler handler, void *eloop_data, void *user_data, struct os_reltime *remaining) argument
876 eloop_is_timeout_registered(eloop_timeout_handler handler, void *eloop_data, void *user_data) argument
892 eloop_deplete_timeout(unsigned int req_secs, unsigned int req_usecs, eloop_timeout_handler handler, void *eloop_data, void *user_data) argument
924 eloop_replenish_timeout(unsigned int req_secs, unsigned int req_usecs, eloop_timeout_handler handler, void *eloop_data, void *user_data) argument
1018 eloop_register_signal(int sig, eloop_signal_handler handler, void *user_data) argument
1040 eloop_register_signal_terminate(eloop_signal_handler handler, void *user_data) argument
1050 eloop_register_signal_reconfig(eloop_signal_handler handler, void *user_data) argument
1193 eloop_timeout_handler handler = local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DErrorHandling.cpp64 void llvm::install_fatal_error_handler(fatal_error_handler_t handler, argument
69 assert(!ErrorHandler && "Error handler already registered!\n");
70 ErrorHandler = handler;
95 llvm::fatal_error_handler_t handler = nullptr; local
98 // Only acquire the mutex while reading the handler, so as not to invoke a
103 handler = ErrorHandler;
107 if (handler) {
108 handler(handlerData, Reason.str(), GenCrashDiag);
129 void llvm::install_bad_alloc_error_handler(fatal_error_handler_t handler, argument
134 assert(!ErrorHandler && "Bad alloc error handler alread
220 LLVMFatalErrorHandler handler = local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_delta.h272 * @a target, and pushing these windows into the @a handler window handler
292 svn_txdelta_window_handler_t handler,
413 * delta windows to @a handler/@a handler_baton which transform the
414 * data in @a source to the target data. As usual, the window handler
416 * The stream handler functions will read data from @a source as
422 svn_txdelta_target_push(svn_txdelta_window_handler_t handler,
428 /** Send the contents of @a string to window-handler @a handler/@a baton.
436 svn_txdelta_window_handler_t handler,
[all...]
/freebsd-11-stable/bin/sh/
H A Derror.c64 struct jmploc *handler; variable in typeref:struct:jmploc
74 * just do a longjmp to the exception handler. The type of exception is
85 if (handler == NULL)
88 longjmp(handler->loc, 1);
165 * exraise() will disable interrupts for the exception handler.
/freebsd-11-stable/contrib/ntp/ntpdc/
H A Dntpdc.h56 void (*handler) (struct parse *, FILE *); /* command handler */ member in struct:xcmd
/freebsd-11-stable/usr.sbin/bhyve/
H A Dmem.h44 mem_func_t handler; member in struct:mem_range
/freebsd-11-stable/usr.sbin/bluetooth/hccontrol/
H A Dhccontrol.h47 int (*handler)(int, int, char **); member in struct:hci_command
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_siglongjmp.c35 * Regression test for siglongjmp out of a signal handler back into
62 handler(int sig, siginfo_t *info, void *ctx) function
71 "Checks siglongjmp() out of a signal handler back into its thread");
89 act.sa_sigaction = handler;
H A Dt_sleep.c56 handler(int sig) function
59 * Nothing to do; invoking the handler is enough to interrupt
79 act.sa_handler = handler;
/freebsd-11-stable/contrib/libreadline/
H A Dsignals.c89 /* If non-zero, readline will install a signal handler for SIGWINCH. */
113 /* Readline signal handler functions. */
133 handler, ignore it until rl_clear_signals resets the catcher. */
210 because we call the application's SIGWINCH handler after updating
218 /* If another sigwinch handler has been installed, call it. */
241 /* Set up a readline-specific signal handler, saving the old signal
242 information in OHANDLER. Return the old signal handler, like
245 rl_set_sighandler (sig, handler, ohandler)
247 SigHandler *handler;
254 act.sa_handler = handler;
[all...]
/freebsd-11-stable/sys/cam/ctl/
H A Dctl_ha.h118 ctl_evt_handler handler);
121 ctl_evt_handler handler);
/freebsd-11-stable/sys/arm64/include/
H A Dasm.h61 * Sets the trap fault handler. The exception handler will return to the
62 * address in the handler register on a data abort or the xzr register to
63 * clear the handler. The tmp parameter should be a register able to hold
66 #define SET_FAULT_HANDLER(handler, tmp) \
69 str handler, [tmp, #PCB_ONFAULT] /* Set the handler */
/freebsd-11-stable/lib/libc/stdlib/
H A Dset_constraint_handler_s.c48 set_constraint_handler_s(constraint_handler_t handler) argument
55 *new = handler;
/freebsd-11-stable/contrib/libcxxrt/
H A Dmemory.cc52 * handler and a bad allocation exception is thrown if an allocation fails.
62 new_handler set_new_handler(new_handler handler) argument
64 return ATOMIC_SWAP(&new_handl, handler);
115 // std::bad_alloc exception in new handler
142 // std::bad_alloc exception in new handler
/freebsd-11-stable/contrib/expat/lib/
H A Dxmlrole.h116 int(PTRCALL *handler)(struct prolog_state *state, int tok, const char *ptr, member in struct:prolog_state
133 (((state)->handler)(state, tok, ptr, end, enc))
H A Dexpat.h176 /* The Attlist declaration handler is called for *each* attribute. So
178 generate multiple calls to this handler. The "default" parameter
191 /* The XML declaration handler is called for *both* XML declarations
285 there is no applicable handler. This includes both characters that
288 construct which could be reported but for which no handler has been
292 character is not passed to the default handler. There are no
294 default handler: for example, a comment might be split between
340 XML_SetEntityDeclHandler(XML_Parser parser, XML_EntityDeclHandler handler);
343 This handler has been superseded by the EntityDeclHandler above.
381 have standalone="yes". If this handler return
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_arm.S26 @ Handler address is nullptr if handler is not set
32 @ Call the handler with 2 parameters in r0 and r1
53 @ Load the handler address
57 @ Handler address is nullptr if handler is not set
63 @ Call the handler with 2 parameters in r0 and r1
87 @ Handler address is nullptr if handler is not set
93 @ normal function exit happens, so we give the handler code 1
95 @ Call the handler with 2 parameters in r0 and r1
/freebsd-11-stable/sys/mips/rmi/
H A Dintr_machdep.c73 void (*handler) (void *), void *arg, int irq, int flags,
82 void (*handler) (void *), void *arg, int irq, int flags,
86 xlr_establish_intr(name, filt, handler, arg, irq, flags,
119 driver_intr_t handler, void *arg, int irq, int flags,
158 intr_event_add_handler(ie, name, filt, handler, arg,
182 * No need to clear the EIRR here as the handler writes to
118 xlr_establish_intr(const char *name, driver_filter_t filt, driver_intr_t handler, void *arg, int irq, int flags, void **cookiep, void (*busack)(int)) argument
/freebsd-11-stable/contrib/ntp/ntpsnmpd/
H A DntpSnmpSubagentObject.c246 int get_ntpEntSoftwareName (netsnmp_mib_handler *handler, argument
292 int get_ntpEntSoftwareVersion (netsnmp_mib_handler *handler, argument
328 int get_ntpEntSoftwareVendor (netsnmp_mib_handler *handler, argument
361 int get_ntpEntSystemType (netsnmp_mib_handler *handler, argument
421 netsnmp_mib_handler * handler,
464 netsnmp_mib_handler * handler,
497 int get_ntpEntTimeDistance (netsnmp_mib_handler *handler, argument
420 get_ntpEntTimeResolution( netsnmp_mib_handler * handler, netsnmp_handler_registration * reginfo, netsnmp_agent_request_info * reqinfo, netsnmp_request_info * requests ) argument
463 get_ntpEntTimePrecision( netsnmp_mib_handler * handler, netsnmp_handler_registration * reginfo, netsnmp_agent_request_info * reqinfo, netsnmp_request_info * requests ) argument

Completed in 485 milliseconds

1234567891011>>