Lines Matching refs:msg
233 char *werr, *msg; in PHP_FUNCTION() local
236 spprintf(&msg, 0, "Failed to create COM object `%s': %s", module_name, werr); in PHP_FUNCTION()
239 php_com_throw_exception(res, msg); in PHP_FUNCTION()
240 efree(msg); in PHP_FUNCTION()
358 char *source = NULL, *desc = NULL, *msg = NULL; in php_com_invoke_helper() local
372 spprintf(&msg, 0, "<b>Source:</b> %s<br/><b>Description:</b> %s", in php_com_invoke_helper()
376 spprintf(&msg, 0, "Source: %s\nDescription: %s", in php_com_invoke_helper()
394 spprintf(&msg, 0, "Parameter %d: %s", arg_err, desc); in php_com_invoke_helper()
403 msg = NULL; in php_com_invoke_helper()
410 spprintf(&msg, 0, "Error [0x%08x] %s", hr, desc); in php_com_invoke_helper()
415 if (msg) { in php_com_invoke_helper()
416 php_com_throw_exception(hr, msg); in php_com_invoke_helper()
417 efree(msg); in php_com_invoke_helper()
492 char *msg = NULL; in php_com_do_invoke_byref() local
494 spprintf(&msg, 0, "Unable to lookup `%s': %s", f->function_name->val, winerr); in php_com_do_invoke_byref()
496 php_com_throw_exception(hr, msg); in php_com_do_invoke_byref()
497 efree(msg); in php_com_do_invoke_byref()
654 char *msg = NULL; in php_com_do_invoke() local
660 spprintf(&msg, 0, "Unable to lookup `%s': %s", name, winerr); in php_com_do_invoke()
662 php_com_throw_exception(hr, msg); in php_com_do_invoke()
663 efree(msg); in php_com_do_invoke()
800 MSG msg; in PHP_FUNCTION() local
810 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { in PHP_FUNCTION()
811 TranslateMessage(&msg); in PHP_FUNCTION()
812 DispatchMessage(&msg); in PHP_FUNCTION()