| /vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
| H A D | timers.h | 80 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name); 81 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) 83 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg); 86 void sys_untimeout(sys_timeout_handler handler, void *arg);
|
| H A D | debug.h | 72 /** if "expression" isn't true, then print "message" and execute "handler" expression */ 74 #define LWIP_ERROR(message, expression, handler) do { if (!(expression)) { \ 75 LWIP_PLATFORM_ASSERT(message); handler;}} while(0)
|
| /vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/ |
| H A D | biosint.h | 27 extern void hook_bios_interrupt ( unsigned int interrupt, unsigned int handler, 30 unsigned int handler,
|
| /vbox/src/VBox/Devices/PC/ipxe/src/include/usr/ |
| H A D | fcmgmt.h | 19 struct fc_els_handler *handler );
|
| /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/src/VBox/Additions/x11/x11include/4.3/include/extensions/ |
| H A D | Xext.h | 37 int (*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/libs/libxml2-2.6.31/python/tests/ |
| 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 | 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 | 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 | 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")
|
| /vbox/src/libs/libxml2-2.6.31/doc/tutorial/ |
| H A D | includeconvert.c | 11 xmlCharEncodingHandlerPtr handler; 18 handler = xmlFindCharEncodingHandler(encoding); 20 if (!handler) { 27 ret = handler->input(out, &out_size, in, &temp);
|
| /vbox/src/VBox/NetworkServices/NAT/ |
| 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/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/ |
| H A D | encoding.c | 1241 * parser internals, so the default encoding handler is NULL 1260 xmlCharEncodingHandlerPtr handler; local 1293 * allocate and fill-up an handler block. 1295 handler = (xmlCharEncodingHandlerPtr) 1297 if (handler == NULL) { 1302 handler->input = input; 1303 handler->output = output; 1304 handler->name = up; 1307 handler->iconv_in = NULL; 1308 handler 1415 xmlRegisterCharEncodingHandler(xmlCharEncodingHandlerPtr handler) argument 1442 xmlCharEncodingHandlerPtr handler; local 1754 xmlCharEncFirstLine(xmlCharEncodingHandler *handler, xmlBufferPtr out, xmlBufferPtr in) argument 1841 xmlCharEncInFunc(xmlCharEncodingHandler * handler, xmlBufferPtr out, xmlBufferPtr in) argument 1942 xmlCharEncOutFunc(xmlCharEncodingHandler *handler, xmlBufferPtr out, xmlBufferPtr in) argument 2111 xmlCharEncCloseFunc(xmlCharEncodingHandler *handler) argument 2172 xmlCharEncodingHandler * handler = in->buf->encoder; local [all...] |
| H A D | HTMLtree.c | 458 xmlCharEncodingHandlerPtr handler = NULL; local 468 handler = xmlFindCharEncodingHandler(encoding); 469 if (handler == NULL) 477 if (handler == NULL) 478 handler = xmlFindCharEncodingHandler("HTML"); 479 if (handler == NULL) 480 handler = xmlFindCharEncodingHandler("ascii"); 485 buf = xmlOutputBufferCreateFile(out, handler); 521 xmlCharEncodingHandlerPtr handler = NULL; local 550 handler 1024 xmlCharEncodingHandlerPtr handler = NULL; local 1084 xmlCharEncodingHandlerPtr handler = NULL; local 1148 xmlCharEncodingHandlerPtr handler = NULL; local [all...] |
| /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/Additions/linux/sharedfolders/ |
| H A D | mount.vboxsf.c | 156 }, *handler; local 192 for (handler = handlers; handler->name; ++handler) 195 for (j = 0; j < key_len && handler->name[j] == s[j]; ++j) 198 if (j == key_len && !handler->name[j]) 200 if (handler->has_arg) 209 switch(handler->opt) 290 if (!handler->name) 295 for (handler [all...] |
| /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/libs/libxml2-2.6.31/include/libxml/ |
| H A D | encoding.h | 157 xmlRegisterCharEncodingHandler (xmlCharEncodingHandlerPtr handler); 192 xmlCharEncOutFunc (xmlCharEncodingHandler *handler, 197 xmlCharEncInFunc (xmlCharEncodingHandler *handler, 201 xmlCharEncFirstLine (xmlCharEncodingHandler *handler, 205 xmlCharEncCloseFunc (xmlCharEncodingHandler *handler);
|
| /vbox/src/VBox/Devices/PC/ipxe/src/usr/ |
| H A D | fcmgmt.c | 97 * @v handler ELS handler 101 struct fc_els_handler *handler ) { 106 port->name, handler->name, fc_id_ntoa ( peer_port_id ) ); 108 handler ) ) != 0 ) {
|
| /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 ... |