/vbox/src/VBox/Devices/Network/lwip-new/src/api/ |
H A D | netifapi.c | 45 netifapi_do_netif_add(struct netifapi_msg_msg *msg) argument 47 if (!netif_add( msg->netif, 48 msg->msg.add.ipaddr, 49 msg->msg.add.netmask, 50 msg->msg.add.gw, 51 msg->msg 65 netifapi_do_netif_set_addr(struct netifapi_msg_msg *msg) argument 80 netifapi_do_netif_common(struct netifapi_msg_msg *msg) argument 106 struct netifapi_msg msg; local 131 struct netifapi_msg msg; local 151 struct netifapi_msg msg; local [all...] |
H A D | tcpip.c | 77 struct tcpip_msg *msg; local 89 sys_timeouts_mbox_fetch(&mbox, (void **)&msg); 91 switch (msg->type) { 94 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: API message %p\n", (void *)msg)); 95 msg->msg.apimsg->function(&(msg->msg.apimsg->msg)); 101 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: PACKET %p\n", (void *)msg)); 233 struct tcpip_msg *msg; local 269 struct tcpip_msg *msg; local 298 struct tcpip_msg *msg; local 328 struct tcpip_msg msg; local 358 struct tcpip_msg msg; local 406 struct tcpip_msg *msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); local 421 tcpip_callbackmsg_delete(struct tcpip_callback_msg* msg) argument 434 tcpip_trycallback(struct tcpip_callback_msg* msg) argument 456 tcpip_callbackmsg(struct tcpip_callback_msg* msg) argument [all...] |
H A D | api_msg.c | 487 * @param msg the api_msg_msg describing the connection type 488 * @return msg->conn->err, but the return value is currently ignored 491 pcb_new(struct api_msg_msg *msg) argument 493 LWIP_ASSERT("pcb_new: pcb already allocated", msg->conn->pcb.tcp == NULL); 496 switch(NETCONNTYPE_GROUP(msg->conn->type)) { 499 msg->conn->pcb.raw = raw_new(msg->msg.n.proto); 500 if(msg->conn->pcb.raw != NULL) { 501 raw_recv(msg 553 lwip_netconn_do_newconn(struct api_msg_msg *msg) argument 833 lwip_netconn_do_delconn(struct api_msg_msg *msg) argument 900 lwip_netconn_do_bind(struct api_msg_msg *msg) argument 986 lwip_netconn_do_connect(struct api_msg_msg *msg) argument 1053 lwip_netconn_do_disconnect(struct api_msg_msg *msg) argument 1075 lwip_netconn_do_listen(struct api_msg_msg *msg) argument 1143 lwip_netconn_do_send(struct api_msg_msg *msg) argument 1196 lwip_netconn_do_recv(struct api_msg_msg *msg) argument 1366 lwip_netconn_do_write(struct api_msg_msg *msg) argument 1421 lwip_netconn_do_getaddr(struct api_msg_msg *msg) argument 1478 lwip_netconn_do_close(struct api_msg_msg *msg) argument 1520 lwip_netconn_do_join_leave_group(struct api_msg_msg *msg) argument 1574 struct dns_api_msg *msg = (struct dns_api_msg*)arg; local 1600 struct dns_api_msg *msg = (struct dns_api_msg*)arg; local [all...] |
H A D | api_lib.c | 71 struct api_msg msg; local 76 msg.msg.msg.n.proto = proto; 77 msg.msg.conn = conn; 78 TCPIP_APIMSG((&msg), lwip_netconn_do_newconn, err); 106 struct api_msg msg; local 113 msg.function = lwip_netconn_do_delconn; 114 msg 138 struct api_msg msg; local 168 struct api_msg msg; local 193 struct api_msg msg; local 235 struct api_msg msg; local 259 struct api_msg msg; local 297 struct api_msg msg; local 361 struct api_msg msg; local 534 struct api_msg msg; local 580 struct api_msg msg; local 611 struct api_msg msg; local 674 struct api_msg msg; local 733 struct api_msg msg; local 763 struct dns_api_msg msg; local [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/api/ |
H A D | tcpip.c | 98 struct tcpip_msg *msg; local 117 sys_mbox_fetch(mbox, (void *)&msg); 118 switch (msg->type) { 120 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: API message %p\n", (void *)msg)); 121 api_msg_input(msg->msg.apimsg); 124 LWIP_DEBUGF(TCPIP_DEBUG, ("tcpip_thread: IP packet %p\n", (void *)msg)); 125 ip_input(msg->msg.inp.p, msg 153 struct tcpip_msg *msg; local 171 struct tcpip_msg *msg; local 188 struct tcpip_msg *msg; local 203 struct tcpip_msg *msg; local [all...] |
H A D | api_msg.c | 272 do_newconn(struct api_msg_msg *msg) argument 274 if(msg->conn->pcb.tcp != NULL) { 278 sys_mbox_post(msg->conn->mbox, NULL); 282 msg->conn->err = ERR_OK; 285 switch(msg->conn->type) { 288 msg->conn->pcb.raw = raw_new(msg->msg.bc.port); /* misusing the port field */ 289 raw_recv(msg->conn->pcb.raw, recv_raw, msg 338 do_delconn(struct api_msg_msg *msg) argument 391 do_bind(struct api_msg_msg *msg) argument 474 do_connect(struct api_msg_msg *msg) argument 560 do_disconnect(struct api_msg_msg *msg) argument 586 do_listen(struct api_msg_msg *msg) argument 629 do_accept(struct api_msg_msg *msg) argument 654 do_send(struct api_msg_msg *msg) argument 680 do_recv(struct api_msg_msg *msg) argument 693 do_write(struct api_msg_msg *msg) argument 743 do_close(struct api_msg_msg *msg) argument 795 api_msg_input(struct api_msg *msg) argument 801 api_msg_post(struct api_msg *msg) argument [all...] |
H A D | api_lib.c | 201 struct api_msg *msg; local 228 if((msg = memp_malloc(MEMP_API_MSG)) == NULL) { 233 msg->type = API_MSG_NEWCONN; 234 msg->msg.msg.bc.port = proto; /* misusing the port field */ 235 msg->msg.conn = conn; 236 api_msg_post(msg); 238 memp_free(MEMP_API_MSG, msg); 266 struct api_msg *msg; local 378 struct api_msg *msg; local 409 struct api_msg *msg; local 438 struct api_msg *msg; local 459 struct api_msg *msg; local 503 struct api_msg *msg; local 599 struct api_msg *msg; local 627 struct api_msg *msg; local 692 struct api_msg *msg; local [all...] |
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/lock/src/ |
H A D | ipcLockProtocol.cpp | 63 IPC_FlattenLockMsg(const ipcLockMsg *msg, PRUint32 *bufLen) argument 66 + strlen(msg->key) // key 73 buf[0] = (msg->opcode | (msg->flags << 4)); 75 memcpy(&buf[1], msg->key, len - 1); 81 IPC_UnflattenLockMsg(const PRUint8 *buf, PRUint32 bufLen, ipcLockMsg *msg) argument 84 msg->opcode = get_opcode(buf); 85 msg->flags = get_flags(buf); 86 msg->key = get_key(buf);
|
H A D | ipcLockService.cpp | 82 ipcLockMsg msg; local 83 msg.opcode = IPC_LOCK_OP_ACQUIRE; 84 msg.flags = (waitIfBusy ? 0 : IPC_LOCK_FL_NONBLOCKING); 85 msg.key = lockName; 88 nsAutoPtr<PRUint8> buf( IPC_FlattenLockMsg(&msg, &bufLen) ); 125 ipcLockMsg msg; local 126 msg.opcode = IPC_LOCK_OP_RELEASE; 127 msg.flags = 0; 128 msg.key = lockName; 131 PRUint8 *buf = IPC_FlattenLockMsg(&msg, 149 ipcLockMsg msg; local [all...] |
H A D | ipcLockProtocol.h | 79 PRUint8 *IPC_FlattenLockMsg(const ipcLockMsg *msg, PRUint32 *bufLen); 82 // unflatten a lock message. upon return, msg->key points into buf, so 83 // buf must not be deallocated until after msg is no longer needed. 85 void IPC_UnflattenLockMsg(const PRUint8 *buf, PRUint32 bufLen, ipcLockMsg *msg);
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/include/ |
H A D | plerror.h | 58 ** Print the messages to "syserr" prepending 'msg' if not NULL. 60 PR_EXTERN(void) PL_PrintError(const char *msg); 63 ** Print the messages to specified output file prepending 'msg' if not NULL. 65 PR_EXTERN(void) PL_FPrintError(PRFileDesc *output, const char *msg);
|
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/ |
H A D | api_msg.h | 117 } msg; member in struct:api_msg_msg 125 void (* function)(struct api_msg_msg *msg); 127 struct api_msg_msg msg; member in struct:api_msg 148 void lwip_netconn_do_newconn ( struct api_msg_msg *msg); 149 void lwip_netconn_do_delconn ( struct api_msg_msg *msg); 150 void lwip_netconn_do_bind ( struct api_msg_msg *msg); 151 void lwip_netconn_do_connect ( struct api_msg_msg *msg); 152 void lwip_netconn_do_disconnect ( struct api_msg_msg *msg); 153 void lwip_netconn_do_listen ( struct api_msg_msg *msg); 154 void lwip_netconn_do_send ( struct api_msg_msg *msg); [all...] |
/vbox/src/libs/xpcom18a4/xpcom/windbgdlg/ |
H A D | windbgdlg.cpp | 49 static char msg[4048]; local 51 wsprintf(msg, 57 return MessageBox(NULL, msg, "nsDebug::Assertion",
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prstdio.c | 60 char* msg = PR_vsmprintf(fmt, ap); local 61 len = strlen(msg); 73 if ((idx - last > 0) && (('\n' == msg[idx]) || (idx == len))) { 74 tmp = PR_Write(fd, msg + last, idx - last); 85 if (('\n' == msg[idx]) && 86 ((0 == idx) || ('\r' != msg[idx-1])) && 87 ('\r' != msg[idx+1])) { 96 rv = PR_Write(fd, msg, len); 99 rv = PR_Write(fd, msg, len); 101 PR_DELETE(msg); [all...] |
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/ |
H A D | api_msg.h | 82 } msg; member in struct:api_msg_msg 87 struct api_msg_msg msg; member in struct:api_msg 90 void api_msg_input(struct api_msg *msg); 91 void api_msg_post(struct api_msg *msg);
|
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/ |
H A D | debug.h | 42 extern void _mesa_print_enable_flags( const char *msg, GLuint flags ); 43 extern void _mesa_print_state( const char *msg, GLuint state );
|
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/ |
H A D | plerror.c | 49 PR_IMPLEMENT(void) PL_FPrintError(PRFileDesc *fd, const char *msg) argument 135 if (NULL != msg) PR_fprintf(fd, "%s: ", msg); 145 PR_IMPLEMENT(void) PL_PrintError(const char *msg) argument 149 PL_FPrintError(fd, msg);
|
/vbox/src/VBox/Devices/PC/ipxe/src/util/ |
H A D | catrom.pl | 40 my $msg = sprintf ( "$romfile: indicator was %02x, ", $indicator ); 43 $msg .= sprintf ( "now %02x\n", $indicator ); 45 warn $msg;
|
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/ |
H A D | ipcConnectionStub.cpp | 61 IPC_SendMsg(ipcMessage *msg) argument
|
H A D | ipcConnection.h | 84 * caller must not touch |msg| after passing it to IPC_SendMsg. 90 IPC_METHOD_PRIVATE IPC_SendMsg(ipcMessage *msg); 142 * daemon. The ipcMessage object, |msg|, must be deleted by the implementation 145 IPC_METHOD_PRIVATE_(void) IPC_OnMessageAvailable(ipcMessage *msg); variable
|
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ |
H A D | ipcdPrivate.h | 56 // platform specific send message function, takes ownership of |msg|. 58 PRStatus IPC_PlatformSendMsg(ipcClient *client, ipcMessage *msg);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | glwindows.h | 55 #define GLWIN_TRACE_MSG(msg, args...) if (glWinDebugSettings.enableTrace) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 56 #define GLWIN_DEBUG_MSG(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 57 #define GLWIN_DEBUG_MSG2(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF(msg, ##args )
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | glwindows.h | 55 #define GLWIN_TRACE_MSG(msg, args...) if (glWinDebugSettings.enableTrace) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 56 #define GLWIN_DEBUG_MSG(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 57 #define GLWIN_DEBUG_MSG2(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF(msg, ##args )
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | glwindows.h | 55 #define GLWIN_TRACE_MSG(msg, args...) if (glWinDebugSettings.enableTrace) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 56 #define GLWIN_DEBUG_MSG(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 57 #define GLWIN_DEBUG_MSG2(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF(msg, ##args )
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | glwindows.h | 55 #define GLWIN_TRACE_MSG(msg, args...) if (glWinDebugSettings.enableTrace) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 56 #define GLWIN_DEBUG_MSG(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF("%s:%d: " msg, __FUNCTION__, __LINE__, ##args ) 57 #define GLWIN_DEBUG_MSG2(msg, args...) if (glWinDebugSettings.enableDebug) ErrorF(msg, ##args )
|