Searched defs:handler (Results 1 - 25 of 78) sorted by relevance

1234

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dvsprintf.h49 * Character handler
57 void ( * handler ) ( struct printf_context *ctx, unsigned int c ); member in struct:printf_context
60 * When handler() is called, @len will be set to the number of
62 * handler()).
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/
H A Dbiosint.c16 * @v handler Offset within .text16 to interrupt handler
17 * @v chain_vector Vector for chaining to previous handler
19 * Hooks in an i386 INT handler. The handler itself must reside
21 * the address of the previously-installed handler for this interrupt;
22 * the handler should probably exit by ljmping via this vector.
24 void hook_bios_interrupt ( unsigned int interrupt, unsigned int handler, argument
28 .offset = handler,
32 interrupt, rm_cs, handler );
69 unhook_bios_interrupt( unsigned int interrupt, unsigned int handler, struct segoff *chain_vector ) argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dansiesc.c32 * Call ANSI escape sequence handler
42 struct ansiesc_handler *handler; local
44 for ( handler = handlers ; handler->function ; handler++ ) {
45 if ( handler->function == function ) {
46 handler->handle ( count, params );
62 * appropriate handler if one exists in this ANSI escape sequence
105 * calling handler to avoid potential infinite loops.
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Deapol.c49 struct eapol_handler *handler; local
56 for_each_table_entry ( handler, EAPOL_HANDLERS ) {
57 if ( handler->type == eapol->type ) {
59 return handler->rx ( iob, netdev, ll_dest, ll_source );
/vbox/include/VBox/com/
H A DNativeEventQueue.h48 * Subclasses usually reimplement virtual #handler() (that does nothing by
61 * Event handler. Called in the context of the event queue's thread.
66 virtual void *handler() { return NULL; } function in class:com::NativeEvent
H A DEventQueue.h47 * Subclasses usually reimplement virtual #handler() (that does nothing by
73 * Event handler. Called in the context of the event queue's thread.
78 virtual void *handler(void) { return NULL; } function in class:com::Event
/vbox/src/libs/libxml2-2.6.31/python/tests/
H A Dindexes.py61 handler = callback(0, 13, 27, 198, 183) variable
62 ctxt = libxml2.createPushParser(handler, "<foo>\n", 6, "test.xml")
84 handler = callback(43, 57, 71, 198, 183) variable
88 ctxt = libxml2.createPushParser(handler, chunk, len(chunk), "test.xml")
H A DpushSAX.py43 handler = callback() variable
45 ctxt = libxml2.createPushParser(handler, "<foo", 4, "test.xml")
H A DpushSAXhtml.py43 handler = callback() variable
45 ctxt = libxml2.htmlCreatePushParser(handler, "<foo", 4, "test.xml")
H A Dsync.py43 handler = callback() variable
47 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
59 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
71 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
83 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
95 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
107 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
119 ctxt = libxml2.createPushParser(handler, None, 0, "test.xml")
H A DvalidDTD.py12 def handler(self, msg, data): member in class:ErrorHandler
14 raise Exception, "Error handler did not receive correct argument"
31 ctxt.setValidityErrorHandler(e.handler, e.handler, ARG)
H A DvalidRNG.py12 def handler(self, msg, data): member in class:ErrorHandler
14 raise Exception, "Error handler did not receive correct argument"
46 ctxt.setValidityErrorHandler(e.handler, e.handler, ARG)
H A DvalidSchemas.py12 def handler(self, msg, data): member in class:ErrorHandler
14 raise Exception, "Error handler did not receive correct argument"
53 ctxt_valid.setValidityErrorHandler(e.handler, e.handler, ARG)
H A Dthread2.py18 def handler(self,ctx,str): member in class:ErrorHandler
36 # check ther global error handler
45 # global error handler
47 libxml2.registerErrorHandler(eh.handler,"")
/vbox/src/libs/libxml2-2.6.31/
H A Dxlink.c57 * Get the default xlink handler.
69 * @handler: the new value for the xlink handler block
74 xlinkSetDefaultHandler(xlinkHandlerPtr handler) { argument
75 xlinkDefaultHandler = handler;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DEnvirons.c5 - atexit(void(*handler)(void))
39 the signal SIGABRT is being caught and the signal handler does not return.
69 atexit(void (*handler)(void)) argument
73 if((handler != NULL) && (gMD->num_atexit < ATEXIT_MAX)) {
74 gMD->atexit_handler[gMD->num_atexit++] = handler;
/vbox/src/VBox/Devices/PC/ipxe/src/hci/commands/
H A Dfcmgmt_cmd.c83 * Parse Fibre Channel ELS handler name
86 * @ret handler Fibre Channel ELS handler
90 struct fc_els_handler **handler ) {
92 for_each_table_entry ( (*handler), FC_ELS_HANDLERS ) {
93 if ( strcasecmp ( (*handler)->name, text ) == 0 )
166 struct fc_els_handler *handler; local
174 /* Parse ELS handler */
175 if ( ( rc = parse_fc_els_handler ( argv[optind], &handler ) ) != 0 )
200 if ( ( rc = fcels ( opts.port, id, handler ) ) !
[all...]
/vbox/src/libs/libxml2-2.6.31/doc/examples/
H A DtestWriter.c1151 xmlCharEncodingHandlerPtr handler; local
1156 handler = xmlFindCharEncodingHandler(encoding);
1158 if (!handler) {
1159 printf("ConvertInput: no encoding handler found for '%s'\n",
1170 ret = handler->input(out, &out_size, (const xmlChar *) in, &temp);
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtimers.c96 /* call TCP timer handler */
131 /* call proxy timer handler */
359 * @param handler callback function to call when msecs have elapsed
364 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name) argument
367 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg)
392 timeout->h = handler;
401 LWIP_DEBUGF(TIMERS_DEBUG, ("sys_timeout: %p msecs=%"U32_F" handler=%s arg=%p\n",
434 * calling 'handler' in the list of timeouts.
436 * @param handler callback function that would be called by the timeout
437 * @param arg callback argument that would be passed to handler
440 sys_untimeout(sys_timeout_handler handler, void *arg) argument
482 sys_timeout_handler handler; local
546 sys_timeout_handler handler; local
[all...]
/vbox/src/VBox/NetworkServices/NAT/
H A Dfwtcp.c49 * Our poll manager handler.
214 fwtcp_pmgr_listen(struct pollmgr_handler *handler, SOCKET fd, int revents) argument
224 fwtcp = (struct fwtcp *)handler->data;
H A Dportfwd.c115 * POLLMGR_CHAN_PORTFWD handler.
118 portfwd_pmgr_chan(struct pollmgr_handler *handler, SOCKET fd, int revents) argument
120 void *ptr = pollmgr_chan_recv_ptr(handler, fd, revents);
H A Dfwudp.c72 * Our poll manager handler.
261 fwudp_pmgr_pump(struct pollmgr_handler *handler, SOCKET fd, int revents) argument
273 fwudp = (struct fwudp *)handler->data;
H A Dproxy_pollmgr.c162 pollmgr_add_chan(int slot, struct pollmgr_handler *handler) argument
165 handler->slot = -1;
169 pollmgr_add_at(slot, handler, pollmgr.chan[slot][POLLMGR_CHFD_RD], POLLIN);
178 pollmgr_add(struct pollmgr_handler *handler, SOCKET fd, int events) argument
196 handler->slot = -1;
209 handler->slot = -1;
227 pollmgr_add_at(slot, handler, fd, events);
233 pollmgr_add_at(int slot, struct pollmgr_handler *handler, SOCKET fd, int events) argument
238 pollmgr.handlers[slot] = handler;
240 handler
274 pollmgr_chan_recv_ptr(struct pollmgr_handler *handler, SOCKET fd, int revents) argument
375 struct pollmgr_handler *handler; local
589 struct pollmgr_handler *handler; local
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxws-api.jar ... MF javax/ javax/xml/ javax/xml/ws/ javax/xml/ws/handler/ javax/xml/ws/handler/soap/ javax/xml/ws/http/ javax ...
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Ddriver.h61 * A tracked handler for an event that will hopefully be generated by
70 ms_drm_handler_proc handler; member in struct:ms_drm_queue
114 ms_drm_handler_proc handler,

Completed in 72 milliseconds

1234