/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | vsprintf.h | 49 * 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 D | biosint.c | 16 * @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 D | ansiesc.c | 32 * 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 D | eapol.c | 49 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 D | NativeEventQueue.h | 48 * 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 D | EventQueue.h | 47 * 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 D | indexes.py | 61 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 D | pushSAX.py | 43 handler = callback() variable 45 ctxt = libxml2.createPushParser(handler, "<foo", 4, "test.xml")
|
H A D | pushSAXhtml.py | 43 handler = callback() variable 45 ctxt = libxml2.htmlCreatePushParser(handler, "<foo", 4, "test.xml")
|
H A D | sync.py | 43 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 D | validDTD.py | 12 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 D | validRNG.py | 12 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 D | validSchemas.py | 12 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 D | thread2.py | 18 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 D | xlink.c | 57 * 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 D | Environs.c | 5 - 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 D | fcmgmt_cmd.c | 83 * 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 D | testWriter.c | 1151 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 D | timers.c | 96 /* 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 D | fwtcp.c | 49 * 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 D | portfwd.c | 115 * 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 D | fwudp.c | 72 * 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 D | proxy_pollmgr.c | 162 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 D | jaxws-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 D | driver.h | 61 * 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,
|