Lines Matching refs:err
208 char *err = php_win32_error_to_msg(hr); in PHP_FUNCTION() local
209 snprintf(buf, sizeof(buf), "Failed to init .Net runtime [%s] %s", where, err); in PHP_FUNCTION()
210 if (err) in PHP_FUNCTION()
211 LocalFree(err); in PHP_FUNCTION()
222 char *err = php_win32_error_to_msg(hr); in PHP_FUNCTION() local
223 snprintf(buf, sizeof(buf), "Failed to re-init .Net domain [%s] %s", where, err); in PHP_FUNCTION()
224 if (err) in PHP_FUNCTION()
225 LocalFree(err); in PHP_FUNCTION()
235 char *err = php_win32_error_to_msg(hr); in PHP_FUNCTION() local
236 snprintf(buf, sizeof(buf), "Failed to re-init .Net domain [%s] %s", where, err); in PHP_FUNCTION()
237 if (err) in PHP_FUNCTION()
238 LocalFree(err); in PHP_FUNCTION()
318 char *err = php_win32_error_to_msg(hr); in PHP_FUNCTION() local
319 snprintf(buf, sizeof(buf), "Failed to instantiate .Net object [%s] [0x%08x] %s", where, hr, err); in PHP_FUNCTION()
320 if (err && err[0]) { in PHP_FUNCTION()
321 LocalFree(err); in PHP_FUNCTION()