Searched defs:msg (Results 1 - 25 of 256) sorted by relevance

1234567891011

/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A DipcConnection.h84 * 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
H A DipcConnectionStub.cpp61 IPC_SendMsg(ipcMessage *msg) argument
/vbox/src/libs/xpcom18a4/xpcom/windbgdlg/
H A Dwindbgdlg.cpp49 static char msg[4048]; local
51 wsprintf(msg,
57 return MessageBox(NULL, msg, "nsDebug::Assertion",
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dmucurses_test.c27 *msg = "Configure the iSCSI access secret", local
39 mvwprintw( secret, 4, 2, "%s", msg );
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_fog.c32 char msg[100]; local
33 sprintf(msg, "Invalid pname in Fog: %d", (int) pname );
34 __PackError( __LINE__, __FILE__, GL_INVALID_ENUM, msg);
H A Dpack_point.c31 char msg[100]; local
32 sprintf(msg, "Invalid pname in PointParameter: %d", (int) pname );
33 __PackError( __LINE__, __FILE__, GL_INVALID_ENUM, msg);
80 char msg[100]; local
81 sprintf(msg, "Invalid pname in PointParameter: %d", (int) pname );
82 __PackError( __LINE__, __FILE__, GL_INVALID_ENUM, msg);
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcdStub.cpp56 IPC_PlatformSendMsg(ipcClient *client, ipcMessage *msg) argument
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/lock/src/
H A DipcLockProtocol.cpp63 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 DipcLockService.cpp82 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...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprstdio.c60 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...]
H A Dprio.c199 PR_IMPLEMENT(void) PT_FPrintStats(PRFileDesc *debug_out, const char *msg) argument
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dnetifapi.c45 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...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/
H A DTestStateMachine.java47 exit(int status, String msg) argument
49 if (msg != null) {
50 System.out.println(msg);
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dplerror.c49 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/libs/xpcom18a4/nsprpub/pr/tests/
H A Derrset.c171 char msg[256]; local
180 len2 = PR_GetErrorText( msg );
182 printf("%5.5d -- %s\n", errnum, msg );
H A Dlogger.c69 static void Error(const char* msg) argument
71 printf("\t%s\n", msg);
H A Dstat.c88 static void Measure(void (*func)(void), const char *msg) argument
101 printf("%40s: %6.2f usec avg, %d msec total\n", msg, d / count, tot);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dns_parse.c121 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) { argument
122 const u_char *eom = msg + msglen;
126 handle->_msg = msg;
128 if (msg + NS_INT16SZ > eom)
130 NS_GET16(handle->_id, msg);
131 if (msg + NS_INT16SZ > eom)
133 NS_GET16(handle->_flags, msg);
135 if (msg + NS_INT16SZ > eom)
137 NS_GET16(handle->_counts[i], msg);
143 int b = skiprr(msg, eo
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dtcpip.c98 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...]
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dtcpip.h71 } msg; member in struct:tcpip_msg
/vbox/src/VBox/HostServices/SharedOpenGL/dlm/
H A Ddlm_lists.c58 char msg[1000]; local
59 sprintf(msg, "NewList called with display list %d while display list %d was already open",
61 crdlm_error(__LINE__, __FILE__, GL_INVALID_OPERATION, msg);
68 char msg[1000]; local
69 sprintf(msg, "could not allocate %u bytes of memory in NewList",
71 crdlm_error(__LINE__, __FILE__, GL_OUT_OF_MEMORY, msg);
201 char msg[1000]; local
202 sprintf(msg, "DeleteLists called with range (%d) less than zero", (int) range);
203 crdlm_error(__LINE__, __FILE__, GL_INVALID_VALUE, msg);
/vbox/src/VBox/Frontends/VirtualBox/src/
H A DVBoxFBOverlayCommon.h81 VBoxVHWADbgTimeCounter(const char* msg) {mTime = VBOXGETTIME(); mMsg=msg;} argument
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dwritepng.c41 static void writepng_error_handler(png_structp png_ptr, png_const_charp msg);
343 static void writepng_error_handler(png_structp png_ptr, png_const_charp msg) argument
356 fprintf(stderr, "writepng libpng error: %s\n", msg);
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dsys.c49 sys_mbox_fetch(sys_mbox_t mbox, void **msg) argument
62 sys_arch_mbox_fetch(mbox, msg, 0);
65 time = sys_arch_mbox_fetch(mbox, msg, timeouts->next->time);
/vbox/src/VBox/Devices/Network/lwip-new/vbox/
H A DVBoxLwipCore.cpp193 struct tcpip_msg msg; local
194 msg.type = TCPIP_MSG_CALLBACK_TERMINATE;
195 msg.msg.cb.function = lwipCoreFiniDone;
196 msg.msg.cb.ctx = &callback;
198 lwipRc = tcpip_callbackmsg((struct tcpip_callback_msg *)&msg);

Completed in 106 milliseconds

1234567891011