Searched refs:handlers (Results 1 - 25 of 50) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dansiesc.h67 * and points to the list of escape sequence handlers.
70 /** Array of handlers
75 struct ansiesc_handler *handlers; member in struct:ansiesc_context
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dansiesc.c34 * @v handlers List of escape sequence handlers
39 static void ansiesc_call_handler ( struct ansiesc_handler *handlers, argument
44 for ( handler = handlers ; handler->function ; handler++ ) {
111 ansiesc_call_handler ( ctx->handlers, ctx->function,
/vbox/src/VBox/Devices/Network/slirp/libalias/
H A Dalias_nbt.c148 struct proto_handler handlers[] = { variable in typeref:struct:proto_handler
173 #define handlers pData->nbt_module macro
199 if (handlers == NULL)
200 handlers = RTMemAllocZ(4 * sizeof(struct proto_handler));
201 handlers[0].pri = 130;
202 handlers[0].dir = IN|OUT;
203 handlers[0].proto = UDP;
204 handlers[0].fingerprint = &fingerprint1;
205 handlers[0].protohandler = &protohandler1;
208 handlers[
[all...]
H A Dalias_dummy.c99 * the protocol handlers present in every module.
101 * ITS EXACT NAME: handlers.
104 struct proto_handler handlers [] = { variable in typeref:struct:proto_handler
123 LibAliasAttachHandlers(handlers);
127 LibAliasDetachHandlers(handlers);
H A Dalias_ftp.c140 struct proto_handler handlers[] = { variable in typeref:struct:proto_handler
151 #define handlers pData->ftp_module macro
177 if (handlers == NULL)
178 handlers = RTMemAllocZ(2 * sizeof(struct proto_handler));
179 handlers[0].pri = 80;
180 handlers[0].dir = OUT;
181 handlers[0].proto = TCP;
182 handlers[0].fingerprint = &fingerprint;
183 handlers[0].protohandler = &protohandler;
184 handlers[
[all...]
H A Dalias_dns.c342 #define handlers pData->dns_module macro
348 if (!handlers)
349 handlers = RTMemAllocZ(2 * sizeof(struct proto_handler));
351 handlers[0].pri = 20;
352 handlers[0].dir = IN;
353 handlers[0].proto = UDP;
354 handlers[0].fingerprint = &fingerprint;
355 handlers[0].protohandler = &protohandler;
356 handlers[1].pri = EOH;
362 LibAliasAttachHandlers(pData, handlers);
[all...]
H A Dalias_cuseeme.c94 struct proto_handler handlers[] = { variable in typeref:struct:proto_handler
120 LibAliasAttachHandlers(handlers);
124 LibAliasDetachHandlers(handlers);
H A Dalias_irc.c119 struct proto_handler handlers[] = { variable in typeref:struct:proto_handler
138 LibAliasAttachHandlers(handlers);
142 LibAliasDetachHandlers(handlers);
H A Dalias_pptp.c136 struct proto_handler handlers[] = { variable in typeref:struct:proto_handler
152 * WATCH OUT!!! these 2 handlers NEED a priority of INT_MAX (highest possible)
180 LibAliasAttachHandlers(handlers);
184 LibAliasDetachHandlers(handlers);
H A Dalias_skinny.c79 struct proto_handler handlers[] = { variable in typeref:struct:proto_handler
98 LibAliasAttachHandlers(handlers);
102 LibAliasDetachHandlers(handlers);
H A Dalias_smedia.c163 struct proto_handler handlers[] = { variable in typeref:struct:proto_handler
182 LibAliasAttachHandlers(handlers);
186 LibAliasDetachHandlers(handlers);
/vbox/src/VBox/NetworkServices/NAT/
H A Dproxy_pollmgr.c47 struct pollmgr_handler **handlers; member in struct:pollmgr
88 pollmgr.handlers = NULL;
124 malloc(newcap * sizeof(*pollmgr.handlers));
126 DPRINTF(("%s: Failed to allocate handlers array\n", __func__));
133 pollmgr.handlers = newhdls;
200 pollmgr.fds = newfds; /* don't crash/leak if realloc(handlers) fails */
204 realloc(pollmgr.handlers, newcap * sizeof(*pollmgr.handlers));
206 DPRINTF(("%s: Failed to reallocate handlers array\n", __func__));
213 pollmgr.handlers
[all...]
/vbox/src/libs/xpcom18a4/python/test/
H A Dtest_com_exceptions.py98 old_handlers = logger.handlers
100 logger.handlers = [test_handler]
109 logger.handlers = old_handlers
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/vmware/
H A Dvmconsole.c54 /** VMware logfile console ANSI escape sequence handlers */
64 .handlers = vmconsole_handlers,
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcCommandModule.cpp102 // message handlers
288 static ipcCommandModule::MsgHandler handlers[] = local
310 if (type < 0 || type >= (int) (sizeof(handlers)/sizeof(handlers[0]))) {
315 (handlers[type])(client, rawMsg);
/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dmount.vboxsf.c131 } handlers[] local
192 for (handler = handlers; handler->name; ++handler)
295 for (handler = handlers; handler->name; ++handler)
/vbox/src/VBox/Devices/PC/ipxe/src/net/udp/
H A Dsyslog.c89 /** Syslog ANSI escape sequence handlers */
100 .handlers = syslog_handlers,
/vbox/src/libs/xpcom18a4/python/
H A D__init__.py159 if len(logger.handlers) == 0:
/vbox/src/libs/libxml2-2.6.31/
H A Dencoding.c1229 * Char encoding handlers *
1236 static xmlCharEncodingHandlerPtr *handlers = NULL; variable
1335 if (handlers != NULL) return;
1337 handlers = (xmlCharEncodingHandlerPtr *)
1347 if (handlers == NULL) {
1386 * unregisters all the encoding handlers and the aliases.
1392 if (handlers == NULL) return;
1396 if (handlers[nbCharEncodingHandler] != NULL) {
1397 if (handlers[nbCharEncodingHandler]->name != NULL)
1398 xmlFree(handlers[nbCharEncodingHandle
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/firmware/pcbios/
H A Dbios_console.c142 /** BIOS console ANSI escape sequence handlers */
152 .handlers = bios_ansiesc_handlers,
/vbox/src/VBox/Devices/PC/ipxe/src/interface/efi/
H A Defi_console.c140 /** EFI console ANSI escape sequence handlers */
150 .handlers = efi_ansiesc_handlers,
/vbox/src/VBox/Devices/PC/ipxe/src/net/tcp/
H A Dsyslogs.c127 /** Encrypted syslog ANSI escape sequence handlers */
138 .handlers = syslogs_handlers,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dsyn.h140 struct _ListNode *handlers; /* list of ExceptionHandler's */ member in struct:_ExceptionGroup
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dinputstr.h481 XIPropertyHandlerPtr handlers; /* NULL-terminated */ member in struct:_DeviceIntRec::__anon8479
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dinputstr.h534 XIPropertyHandlerPtr handlers; /* NULL-terminated */ member in struct:_DeviceIntRec::__anon8800

Completed in 100 milliseconds

12