Lines Matching refs:msg

217 		char *werr, *msg;  in PHP_METHOD()  local
220 spprintf(&msg, 0, "Failed to create COM object `%s': %s", module_name, werr); in PHP_METHOD()
223 php_com_throw_exception(res, msg); in PHP_METHOD()
224 efree(msg); in PHP_METHOD()
343 char *desc = NULL, *msg = NULL; in php_com_invoke_helper() local
357 spprintf(&msg, 0, "<b>Source:</b> %s<br/><b>Description:</b> %s", in php_com_invoke_helper()
361 spprintf(&msg, 0, "Source: %s\nDescription: %s", in php_com_invoke_helper()
379 spprintf(&msg, 0, "Parameter %d: %s", arg_err, desc); in php_com_invoke_helper()
388 msg = NULL; in php_com_invoke_helper()
395 spprintf(&msg, 0, "Error [0x%08x] %s", hr, desc); in php_com_invoke_helper()
400 if (msg) { in php_com_invoke_helper()
401 php_com_throw_exception(hr, msg); in php_com_invoke_helper()
402 efree(msg); in php_com_invoke_helper()
473 char *msg = NULL; in php_com_do_invoke_byref() local
475 spprintf(&msg, 0, "Unable to lookup `%s': %s", f->function_name->val, winerr); in php_com_do_invoke_byref()
477 php_com_throw_exception(hr, msg); in php_com_do_invoke_byref()
478 efree(msg); in php_com_do_invoke_byref()
636 char *msg = NULL; in php_com_do_invoke() local
642 spprintf(&msg, 0, "Unable to lookup `%s': %s", name, winerr); in php_com_do_invoke()
644 php_com_throw_exception(hr, msg); in php_com_do_invoke()
645 efree(msg); in php_com_do_invoke()
774 MSG msg; in PHP_FUNCTION() local
784 while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { in PHP_FUNCTION()
785 TranslateMessage(&msg); in PHP_FUNCTION()
786 DispatchMessage(&msg); in PHP_FUNCTION()