Lines Matching refs:msg

225 		char *werr, *msg;  in PHP_FUNCTION()  local
228 spprintf(&msg, 0, "Failed to create COM object `%s': %s", module_name, werr); in PHP_FUNCTION()
231 php_com_throw_exception(res, msg TSRMLS_CC); in PHP_FUNCTION()
232 efree(msg); in PHP_FUNCTION()
351 char *source = NULL, *desc = NULL, *msg = NULL; in php_com_invoke_helper() local
365 spprintf(&msg, 0, "<b>Source:</b> %s<br/><b>Description:</b> %s", in php_com_invoke_helper()
369 spprintf(&msg, 0, "Source: %s\nDescription: %s", in php_com_invoke_helper()
387 spprintf(&msg, 0, "Parameter %d: %s", arg_err, desc); in php_com_invoke_helper()
396 msg = NULL; in php_com_invoke_helper()
403 spprintf(&msg, 0, "Error [0x%08x] %s", hr, desc); in php_com_invoke_helper()
408 if (msg) { in php_com_invoke_helper()
409 php_com_throw_exception(hr, msg TSRMLS_CC); in php_com_invoke_helper()
410 efree(msg); in php_com_invoke_helper()
483 char *msg = NULL; in php_com_do_invoke_byref() local
485 spprintf(&msg, 0, "Unable to lookup `%s': %s", name, winerr); in php_com_do_invoke_byref()
487 php_com_throw_exception(hr, msg TSRMLS_CC); in php_com_do_invoke_byref()
488 efree(msg); in php_com_do_invoke_byref()
638 char *msg = NULL; in php_com_do_invoke() local
644 spprintf(&msg, 0, "Unable to lookup `%s': %s", name, winerr); in php_com_do_invoke()
646 php_com_throw_exception(hr, msg TSRMLS_CC); in php_com_do_invoke()
647 efree(msg); in php_com_do_invoke()
780 MSG msg; in PHP_FUNCTION() local
790 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { in PHP_FUNCTION()
791 TranslateMessage(&msg); in PHP_FUNCTION()
792 DispatchMessage(&msg); in PHP_FUNCTION()