Lines Matching refs:msg

231 		char *werr, *msg;  in PHP_FUNCTION()  local
234 spprintf(&msg, 0, "Failed to create COM object `%s': %s", module_name, werr); in PHP_FUNCTION()
237 php_com_throw_exception(res, msg); in PHP_FUNCTION()
238 efree(msg); in PHP_FUNCTION()
356 char *source = NULL, *desc = NULL, *msg = NULL; in php_com_invoke_helper() local
370 spprintf(&msg, 0, "<b>Source:</b> %s<br/><b>Description:</b> %s", in php_com_invoke_helper()
374 spprintf(&msg, 0, "Source: %s\nDescription: %s", in php_com_invoke_helper()
392 spprintf(&msg, 0, "Parameter %d: %s", arg_err, desc); in php_com_invoke_helper()
401 msg = NULL; in php_com_invoke_helper()
408 spprintf(&msg, 0, "Error [0x%08x] %s", hr, desc); in php_com_invoke_helper()
413 if (msg) { in php_com_invoke_helper()
414 php_com_throw_exception(hr, msg); in php_com_invoke_helper()
415 efree(msg); in php_com_invoke_helper()
490 char *msg = NULL; in php_com_do_invoke_byref() local
492 spprintf(&msg, 0, "Unable to lookup `%s': %s", f->function_name->val, winerr); in php_com_do_invoke_byref()
494 php_com_throw_exception(hr, msg); in php_com_do_invoke_byref()
495 efree(msg); in php_com_do_invoke_byref()
652 char *msg = NULL; in php_com_do_invoke() local
658 spprintf(&msg, 0, "Unable to lookup `%s': %s", name, winerr); in php_com_do_invoke()
660 php_com_throw_exception(hr, msg); in php_com_do_invoke()
661 efree(msg); in php_com_do_invoke()
798 MSG msg; in PHP_FUNCTION() local
808 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { in PHP_FUNCTION()
809 TranslateMessage(&msg); in PHP_FUNCTION()
810 DispatchMessage(&msg); in PHP_FUNCTION()