error             857 Zend/zend.c    	zend_error(E_PARSE, "%s", error);
error             704 Zend/zend.h    void zenderror(const char *error);
error             604 Zend/zend_API.c 						zend_spprintf(error, 0, "to be a class name derived from %s, '%s' given",
error             611 Zend/zend_API.c 					zend_spprintf(error, 0, "to be a valid class name, '%s' given",
error             635 Zend/zend_API.c 						zend_spprintf(error, 0, "to be a valid callback, %s", is_callable_error);
error             644 Zend/zend_API.c 						zend_spprintf(error, 0, "to be a valid callback, %s", is_callable_error);
error             688 Zend/zend_API.c 	char *error = NULL;
error             691 Zend/zend_API.c 	expected_type = zend_parse_arg_impl(arg_num, arg, va, spec, &error, &severity TSRMLS_CC);
error             693 Zend/zend_API.c 		if (!quiet && (*expected_type || error)) {
error             697 Zend/zend_API.c 			if (error) {
error             699 Zend/zend_API.c 						class_name, space, get_active_function_name(TSRMLS_C), arg_num, error);
error             700 Zend/zend_API.c 				efree(error);
error            2684 Zend/zend_API.c 			if (error) *error = estrdup("cannot access self:: when no class scope is active");
error            2696 Zend/zend_API.c 			if (error) *error = estrdup("cannot access parent:: when no class scope is active");
error            2698 Zend/zend_API.c 			if (error) *error = estrdup("cannot access parent:: when current class scope has no parent");
error            2711 Zend/zend_API.c 			if (error) *error = estrdup("cannot access static:: when no class scope is active");
error            2736 Zend/zend_API.c 		if (error) zend_spprintf(error, 0, "class '%.*s' not found", name_len, name);
error            2754 Zend/zend_API.c 	if (error) {
error            2755 Zend/zend_API.c 		*error = NULL;
error            2789 Zend/zend_API.c 			if (error) zend_spprintf(error, 0, "invalid function name");
error            2800 Zend/zend_API.c 		if (!zend_is_callable_check_class(Z_STRVAL_P(callable), clen, fcc, &strict_class, error TSRMLS_CC)) {
error            2808 Zend/zend_API.c 			if (error) zend_spprintf(error, 0, "class '%s' is not a subclass of '%s'", ce_org->name, fcc->calling_scope->name);
error            2820 Zend/zend_API.c 		if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) {
error            2821 Zend/zend_API.c 			zend_spprintf(error, 0, "function '%s' not found or invalid function name", Z_STRVAL_P(callable));
error            2920 Zend/zend_API.c 				if (error) {
error            2921 Zend/zend_API.c 					zend_spprintf(error, 0, "cannot call abstract method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name);
error            2942 Zend/zend_API.c 					if (error) {
error            2943 Zend/zend_API.c 						zend_spprintf(error, 0, "non-static method %s::%s() %s be called statically, assuming $this from compatible context %s", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb, Z_OBJCE_P(EG(This))->name);
error            2951 Zend/zend_API.c 					if (error) {
error            2952 Zend/zend_API.c 						zend_spprintf(error, 0, "non-static method %s::%s() %s be called statically", fcc->calling_scope->name, fcc->function_handler->common.function_name, verb);
error            2964 Zend/zend_API.c 						if (error) {
error            2965 Zend/zend_API.c 							if (*error) {
error            2966 Zend/zend_API.c 								efree(*error);
error            2968 Zend/zend_API.c 							zend_spprintf(error, 0, "cannot access private method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name);
error            2974 Zend/zend_API.c 						if (error) {
error            2975 Zend/zend_API.c 							if (*error) {
error            2976 Zend/zend_API.c 								efree(*error);
error            2978 Zend/zend_API.c 							zend_spprintf(error, 0, "cannot access protected method %s::%s()", fcc->calling_scope->name, fcc->function_handler->common.function_name);
error            2985 Zend/zend_API.c 	} else if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) {
error            2987 Zend/zend_API.c 			if (error) zend_spprintf(error, 0, "class '%s' does not have a method '%s'", fcc->calling_scope->name, mname);
error            2989 Zend/zend_API.c 			if (error) zend_spprintf(error, 0, "function '%s' does not exist", mname);
error            3019 Zend/zend_API.c 	if (error) {
error            3020 Zend/zend_API.c 		*error = NULL;
error            3064 Zend/zend_API.c 			ret = zend_is_callable_check_func(check_flags, callable, fcc, 0, error TSRMLS_CC);
error            3110 Zend/zend_API.c 						if (!zend_is_callable_check_class(Z_STRVAL_PP(obj), Z_STRLEN_PP(obj), fcc, &strict_class, error TSRMLS_CC)) {
error            3142 Zend/zend_API.c 					ret = zend_is_callable_check_func(check_flags, *method, fcc, strict_class, error TSRMLS_CC);
error            3159 Zend/zend_API.c 							if (error) zend_spprintf(error, 0, "first array member is not a valid class name or object");
error            3161 Zend/zend_API.c 							if (error) zend_spprintf(error, 0, "second array member is not a valid method");
error            3164 Zend/zend_API.c 						if (error) zend_spprintf(error, 0, "array must have exactly two members");
error            3199 Zend/zend_API.c 			if (error) zend_spprintf(error, 0, "no array or string given");
error            3240 Zend/zend_API.c 	if (!zend_is_callable_ex(callable, NULL, check_flags, callable_name, NULL, fcc, error TSRMLS_CC)) {
error            4958 Zend/zend_compile.c 	int error = 0;
error            4976 Zend/zend_compile.c 		error = 1;
error            4992 Zend/zend_compile.c 	if (error) {
error             780 Zend/zend_execute_API.c 		char *error = NULL;
error             786 Zend/zend_execute_API.c 		if (!zend_is_callable_ex(fci->function_name, fci->object_ptr, IS_CALLABLE_CHECK_SILENT, &callable_name, NULL, fci_cache, &error TSRMLS_CC)) {
error             787 Zend/zend_execute_API.c 			if (error) {
error             788 Zend/zend_execute_API.c 				zend_error(E_WARNING, "Invalid callback %s, %s", callable_name, error);
error             789 Zend/zend_execute_API.c 				efree(error);
error             795 Zend/zend_execute_API.c 		} else if (error) {
error             797 Zend/zend_execute_API.c 			if (error[0] >= 'a' && error[0] <= 'z') {
error             798 Zend/zend_execute_API.c 				error[0] += ('A' - 'a');
error             800 Zend/zend_execute_API.c 			zend_error(E_STRICT, "%s", error);
error             801 Zend/zend_execute_API.c 			efree(error);
error             485 ext/bz2/bz2.c  	int               error,           /* Error Container */
error             516 ext/bz2/bz2.c  	error = BZ2_bzBuffToBuffCompress(dest, &dest_len, source, source_len, block_size, 0, work_factor);
error             517 ext/bz2/bz2.c  	if (error != BZ_OK) {
error             519 ext/bz2/bz2.c  		RETURN_LONG(error);
error             535 ext/bz2/bz2.c  	int source_len, error;
error             562 ext/bz2/bz2.c  	while ((error = BZ2_bzDecompress(&bzs)) == BZ_OK && bzs.avail_in > 0) {
error             570 ext/bz2/bz2.c  	if (error == BZ_STREAM_END || error == BZ_OK) {
error             577 ext/bz2/bz2.c  		RETVAL_LONG(error);
error             170 ext/curl/interface.c 	CURLcode error = CURLE_OK;
error             177 ext/curl/interface.c 		error = curl_easy_setopt(ch->cp, CURLOPT_PROTOCOLS, CURLPROTO_ALL & ~CURLPROTO_FILE);
error             196 ext/curl/interface.c 	error = curl_easy_setopt(ch->cp, CURLOPT_URL, url);
error             199 ext/curl/interface.c 	error = curl_easy_setopt(ch->cp, CURLOPT_URL, copystr);
error             203 ext/curl/interface.c 	return (error == CURLE_OK ? 1 : 0);
error            1294 ext/curl/interface.c 			int   error;
error            1317 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1319 ext/curl/interface.c 			if (error == FAILURE) {
error            1355 ext/curl/interface.c 			int   error;
error            1383 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1385 ext/curl/interface.c 			if (error == FAILURE) {
error            1427 ext/curl/interface.c 			int   error;
error            1461 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1463 ext/curl/interface.c 			if (error == FAILURE) {
error            1506 ext/curl/interface.c 			int   error;
error            1535 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1537 ext/curl/interface.c 			if (error == FAILURE) {
error            1587 ext/curl/interface.c 			int   error;
error            1611 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1613 ext/curl/interface.c 			if (error == FAILURE) {
error            1666 ext/curl/interface.c 	int          error;
error            1679 ext/curl/interface.c 	error = call_user_function(EG(function_table), NULL, func, retval, 2, argv TSRMLS_CC);
error            1680 ext/curl/interface.c 	if (error == FAILURE) {
error            2063 ext/curl/interface.c 	CURLcode     error=CURLE_OK;
error            2073 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, option, 2);
error            2232 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue));
error            2324 ext/curl/interface.c 					error = curl_easy_setopt(ch->cp, option, copystr);
error            2329 ext/curl/interface.c 					error = curl_easy_setopt(ch->cp, option, Z_STRVAL_PP(zvalue));
error            2363 ext/curl/interface.c 			error = CURLE_OK;
error            2418 ext/curl/interface.c 					error = curl_easy_setopt(ch->cp, option, fp);
error            2496 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, slist);
error            2514 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue));
error            2586 ext/curl/interface.c 							error = curl_formadd(&first, &last,
error            2626 ext/curl/interface.c 						error = curl_formadd(&first, &last,
error            2640 ext/curl/interface.c 						error = curl_formadd(&first, &last,
error            2653 ext/curl/interface.c 				SAVE_CURL_ERROR(ch, error);
error            2654 ext/curl/interface.c 				if (error != CURLE_OK) {
error            2663 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_HTTPPOST, first);
error            2669 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDSIZE, Z_STRLEN_PP(zvalue));
error            2670 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_COPYPOSTFIELDS, Z_STRVAL_PP(zvalue));
error            2678 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDS, post);
error            2679 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDSIZE, Z_STRLEN_PP(zvalue));
error            2731 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, (curl_off_t)Z_LVAL_PP(zvalue));
error            2738 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, CURLOPT_POSTREDIR, Z_LVAL_PP(zvalue) & CURL_REDIR_POST_ALL);
error            2749 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, CURLOPT_PASSWDFUNCTION, curl_passwd);
error            2750 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, CURLOPT_PASSWDDATA,     (void *) ch);
error            2788 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, Z_STRVAL_PP(zvalue));
error            2792 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, copystr);
error            2838 ext/curl/interface.c 	SAVE_CURL_ERROR(ch, error);
error            2839 ext/curl/interface.c 	if (error != CURLE_OK) {
error            2927 ext/curl/interface.c 	CURLcode	error;
error            2941 ext/curl/interface.c 	error = curl_easy_perform(ch->cp);
error            2942 ext/curl/interface.c 	SAVE_CURL_ERROR(ch, error);
error            2944 ext/curl/interface.c 	if (error != CURLE_OK && error != CURLE_PARTIAL_FILE) {
error             382 ext/curl/multi.c 	CURLMcode error = CURLM_OK;
error             392 ext/curl/multi.c 			error = curl_multi_setopt(mh->multi, option, Z_LVAL_PP(zvalue));
error             397 ext/curl/multi.c 			error = CURLM_UNKNOWN_OPTION;
error             401 ext/curl/multi.c 	if (error != CURLM_OK) {
error              71 ext/curl/share.c 	CURLSHcode error = CURLSHE_OK;
error              77 ext/curl/share.c 			error = curl_share_setopt(sh->share, option, Z_LVAL_PP(zvalue));
error              82 ext/curl/share.c 			error = CURLSHE_BAD_OPTION; 
error              86 ext/curl/share.c 	if (error != CURLSHE_OK) {
error             346 ext/date/lib/parse_date.c 	s->errors->warning_messages[s->errors->warning_count - 1].message = strdup(error);
error             355 ext/date/lib/parse_date.c 	s->errors->error_messages[s->errors->error_count - 1].message = strdup(error);
error             364 ext/date/lib/parse_date.c 	s->errors->warning_messages[s->errors->warning_count - 1].message = strdup(error);
error             373 ext/date/lib/parse_date.c 	s->errors->error_messages[s->errors->error_count - 1].message = strdup(error);
error             113 ext/date/lib/parse_iso_intervals.c 	s->errors->warning_messages[s->errors->warning_count - 1].message = strdup(error);
error             122 ext/date/lib/parse_iso_intervals.c 	s->errors->error_messages[s->errors->error_count - 1].message = strdup(error);
error             186 ext/date/lib/timelib.c 		if (error) {
error             187 ext/date/lib/timelib.c 			*error = 1;
error             191 ext/date/lib/timelib.c 	if (error) {
error             192 ext/date/lib/timelib.c 		*error = 0;
error            1411 ext/date/php_date.c 	timelib_error_container *error = NULL;
error            1415 ext/date/php_date.c 	parsed_time = timelib_strtotime(string, strlen(string), &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            1416 ext/date/php_date.c 	if (error->error_count) {
error            1418 ext/date/php_date.c 		timelib_error_container_dtor(error);
error            1421 ext/date/php_date.c 	timelib_error_container_dtor(error);
error            1438 ext/date/php_date.c 	struct timelib_error_container *error;
error            1474 ext/date/php_date.c 	t = timelib_strtotime(times, time_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            1475 ext/date/php_date.c 	error1 = error->error_count;
error            1476 ext/date/php_date.c 	timelib_error_container_dtor(error);
error            1499 ext/date/php_date.c 	int error;
error            1572 ext/date/php_date.c 	ts = timelib_date_to_int(now, &error);
error            1576 ext/date/php_date.c 	if (error) {
error            2869 ext/date/php_date.c 	add_assoc_long(z, "warning_count", error->warning_count);
error            2872 ext/date/php_date.c 	for (i = 0; i < error->warning_count; i++) {
error            2873 ext/date/php_date.c 		add_index_string(element, error->warning_messages[i].position, error->warning_messages[i].message, 1);
error            2877 ext/date/php_date.c 	add_assoc_long(z, "error_count", error->error_count);
error            2880 ext/date/php_date.c 	for (i = 0; i < error->error_count; i++) {
error            2881 ext/date/php_date.c 		add_index_string(element, error->error_messages[i].position, error->error_messages[i].message, 1);
error            2924 ext/date/php_date.c 	zval_from_error_container(return_value, error);
error            2926 ext/date/php_date.c 	timelib_error_container_dtor(error);
error            2982 ext/date/php_date.c 	struct timelib_error_container *error;
error            2989 ext/date/php_date.c 	parsed_time = timelib_strtotime(date, date_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            2990 ext/date/php_date.c 	php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error);
error            3001 ext/date/php_date.c 	struct timelib_error_container *error;
error            3008 ext/date/php_date.c 	parsed_time = timelib_parse_from_format(format, date, date_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            3009 ext/date/php_date.c 	php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error);
error            3568 ext/date/php_date.c 	int           error;
error            3577 ext/date/php_date.c 	timestamp = timelib_date_to_int(dateobj->time, &error);
error            3578 ext/date/php_date.c 	if (error) {
error             621 ext/dba/dba.c  	char *key = NULL, *error = NULL;
error             829 ext/dba/dba.c  				error = "Unable to establish lock (database file already open)"; /* force failure exit */
error             834 ext/dba/dba.c  	if (!error && lock_mode) {
error             886 ext/dba/dba.c  			error = "Stream does not support locking";
error             889 ext/dba/dba.c  			error = "Unable to establish lock"; /* force failure exit */
error             894 ext/dba/dba.c  	if (!error && (hptr->flags&DBA_STREAM_OPEN)==DBA_STREAM_OPEN) {
error             925 ext/dba/dba.c  	if (error || hptr->open(info, &error TSRMLS_CC) != SUCCESS) {
error             927 ext/dba/dba.c  		php_error_docref2(NULL TSRMLS_CC, Z_STRVAL_PP(args[0]), Z_STRVAL_PP(args[1]), E_WARNING, "Driver initialization failed for handler: %s%s%s", hptr->name, error?": ":"", error?error:"");
error              82 ext/dba/dba_cdb.c 				*error = "Unable to open file";
error              94 ext/dba/dba_cdb.c 			*error = "Update operations are not supported";
error              98 ext/dba/dba_cdb.c 			*error = "Currently not supported";
error             105 ext/dba/dba_db3.c 			*error = db_strerror(err);
error             108 ext/dba/dba_db3.c 		*error = db_strerror(err);
error             143 ext/dba/dba_db4.c 			*error = db_strerror(err);
error             146 ext/dba/dba_db4.c 		*error = db_strerror(err);
error              69 ext/dba/dba_gdbm.c 	*error = gdbm_strerror(gdbm_errno);
error              68 ext/dba/dba_qdbm.c 	*error = (char *) dperrmsg(dpecode);
error              77 ext/dba/php_dba.h 	int (*open)(dba_info *, char **error TSRMLS_DC);
error              94 ext/dba/php_dba.h 	int dba_open_##x(dba_info *info, char **error TSRMLS_DC)
error            1610 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
error            1614 ext/dom/document.c 		ctxt->sax->error = php_libxml_ctx_error;
error            1955 ext/dom/document.c 	cvp->error    = (xmlValidityErrorFunc) php_libxml_error_handler;
error            2197 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
error            2200 ext/dom/document.c 		ctxt->sax->error = php_libxml_ctx_error;
error              80 ext/dom/xpath.c 	int error = 0;
error              93 ext/dom/xpath.c 		error = 1;
error              99 ext/dom/xpath.c 			error = 1;
error             104 ext/dom/xpath.c 			error = 1;
error             108 ext/dom/xpath.c 	if (error == 1) {
error              24 ext/ereg/regex/regcomp.c 	int error;		/* has an error been seen? */
error             132 ext/ereg/regex/regcomp.c 	p->error = 0;
error             182 ext/ereg/regex/regcomp.c 	if (p->error != 0)	/* lose */
error             184 ext/ereg/regex/regcomp.c 	return(p->error);
error             612 ext/ereg/regex/regcomp.c 	if (p->error != 0)	/* don't mess things up further */
error             925 ext/ereg/regex/regcomp.c 	if (p->error != 0)	/* head off possible runaway recursion */
error             988 ext/ereg/regex/regcomp.c 	if (p->error == 0)	/* keep earliest error condition */
error             989 ext/ereg/regex/regcomp.c 		p->error = e;
error            1322 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1374 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1405 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1440 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1511 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1593 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error             479 ext/fileinfo/libmagic/apprentice.c 	ms->error = -1;
error            2605 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2618 ext/fileinfo/libmagic/apprentice.c                        goto error;
error            2625 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2634 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2639 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2644 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2650 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2654 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2667 ext/fileinfo/libmagic/apprentice.c 			goto error;
error            2680 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2698 ext/fileinfo/libmagic/apprentice.c 			goto error;
error            2715 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2727 ext/fileinfo/libmagic/apprentice.c error:
error             125 ext/fileinfo/libmagic/compress.c 				goto error;
error             130 ext/fileinfo/libmagic/compress.c 					goto error;
error             135 ext/fileinfo/libmagic/compress.c 				goto error;
error             138 ext/fileinfo/libmagic/compress.c 				goto error;
error             143 ext/fileinfo/libmagic/compress.c error:
error             387 ext/fileinfo/libmagic/file.h 	int error;
error             104 ext/fileinfo/libmagic/funcs.c 	if (error > 0) {
error             105 ext/fileinfo/libmagic/funcs.c 		file_printf(ms, "%s (%s)", (*buf ? buf : ""), strerror(error));
error             115 ext/fileinfo/libmagic/funcs.c 	ms->error = error;
error             124 ext/fileinfo/libmagic/funcs.c 	file_error_core(ms, error, f, va, 0);
error             323 ext/fileinfo/libmagic/funcs.c 	ms->error = -1;
error             458 ext/fileinfo/libmagic/magic.c 	return (ms->event_flags & EVENT_HAD_ERR) ? ms->error : 0;
error             177 ext/filter/logical_filters.c 	int	   len, error = 0;
error             211 ext/filter/logical_filters.c 				error = 1;
error             215 ext/filter/logical_filters.c 				error = 1;
error             218 ext/filter/logical_filters.c 			error = 1;
error             222 ext/filter/logical_filters.c 			error = 1;
error             226 ext/filter/logical_filters.c 	if (error > 0 || (min_range_set && (ctx_value < min_range)) || (max_range_set && (ctx_value > max_range))) {
error             353 ext/filter/logical_filters.c 				goto error;
error             375 ext/filter/logical_filters.c 				goto error;
error             380 ext/filter/logical_filters.c 			goto error;
error             384 ext/filter/logical_filters.c 		goto error;
error             396 ext/filter/logical_filters.c 				goto error;
error             403 ext/filter/logical_filters.c error:
error            3791 ext/gd/gd.c    	char *error = NULL;
error            3854 ext/gd/gd.c    		error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
error            3857 ext/gd/gd.c    		error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
error            3861 ext/gd/gd.c    	if (error) {
error            3862 ext/gd/gd.c    		php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", error);
error             118 ext/gd/gdcache.c 	userdata = (*(head->gdCacheFetch))(&(head->error), keydata);
error             173 ext/gd/gdcache.c 	*error = NULL;
error              69 ext/gd/gdcache.h 	char				*error;
error             221 ext/gd/libgd/gd_jpeg.c 		goto error;
error             377 ext/gd/libgd/gd_jpeg.c 		goto error;
error             409 ext/gd/libgd/gd_jpeg.c 			goto error;
error             416 ext/gd/libgd/gd_jpeg.c 			goto error;
error             429 ext/gd/libgd/gd_jpeg.c 		goto error;
error             434 ext/gd/libgd/gd_jpeg.c 	goto error;
error             448 ext/gd/libgd/gd_jpeg.c 				goto error;
error             461 ext/gd/libgd/gd_jpeg.c 				goto error;
error             474 ext/gd/libgd/gd_jpeg.c 			goto error;
error             483 ext/gd/libgd/gd_jpeg.c error:
error             116 ext/gd/libgd/gdcache.c   userdata = (*(head->gdCacheFetch)) (&(head->error), keydata);
error             173 ext/gd/libgd/gdcache.c   *error = NULL;
error              68 ext/gd/libgd/gdcache.h 	char				*error;
error             433 ext/gd/libgd/gdft.c 		*error = "Could not find/open font";
error             441 ext/gd/libgd/gdft.c 		*error = "Could not read font";
error             502 ext/gd/libgd/gdft.c 		*error = "Unable to find a CharMap that I can handle";
error             836 ext/gd/libgd/gdft.c 		return fontCache->error;
error             352 ext/gd/libgd/gdkanji.c       error ("iconv_open() error");
error             355 ext/gd/libgd/gdkanji.c 	error ("invalid code specification: \"%s\" or \"%s\"",
error             369 ext/gd/libgd/gdkanji.c 	error ("invalid end of input string");
error             371 ext/gd/libgd/gdkanji.c 	error ("invalid code in input string");
error             373 ext/gd/libgd/gdkanji.c 	error ("output buffer overflow at do_convert()");
error             376 ext/gd/libgd/gdkanji.c 	error ("something happen");
error             383 ext/gd/libgd/gdkanji.c       error ("iconv_close() error");
error             451 ext/gd/libgd/gdkanji.c       error ("invalid code specification: \"%s\"", code);
error             457 ext/gd/libgd/gdkanji.c       error ("output buffer overflow at do_convert()");
error             488 ext/gd/libgd/gdkanji.c       error ("cannot convert NEC Kanji.");
error             547 ext/gd/libgd/gdkanji.c 	  error ("output buffer overflow at Hankaku --> Zenkaku");
error             567 ext/gd/libgd/gdkanji.c       error ("input string too large");
error             572 ext/gd/libgd/gdkanji.c       error ("invalid maximum size of destination\nit should be less than %d.", BUFSIZ);
error             578 ext/gd/libgd/gdkanji.c       error ("output buffer overflow");
error            2624 ext/imap/php_imap.c 	addr->error=NIL;
error            1168 ext/intl/calendar/calendar_methods.cpp 			goto error;
error            1179 ext/intl/calendar/calendar_methods.cpp 		goto error;
error            1188 ext/intl/calendar/calendar_methods.cpp 		goto error;
error            1197 ext/intl/calendar/calendar_methods.cpp 			goto error;
error            1211 ext/intl/calendar/calendar_methods.cpp 		goto error;
error            1219 ext/intl/calendar/calendar_methods.cpp         goto error;
error            1224 ext/intl/calendar/calendar_methods.cpp error:
error            1291 ext/intl/calendar/calendar_methods.cpp 		goto error;
error            1303 ext/intl/calendar/calendar_methods.cpp 		goto error;
error            1306 ext/intl/calendar/calendar_methods.cpp error:
error              34 ext/intl/converter/converter.c 	intl_error error;
error              41 ext/intl/converter/converter.c #define THROW_UFAILURE(obj, fname, error) php_converter_throw_failure(obj, error TSRMLS_CC, \
error              42 ext/intl/converter/converter.c                                           fname "() returned error %ld: %s", (long)error, u_errorName(error))
error              46 ext/intl/converter/converter.c 	intl_error *err = objval ? &(objval->error) : NULL;
error              54 ext/intl/converter/converter.c 	intl_errors_set(err, error, message, 1 TSRMLS_CC);
error              69 ext/intl/converter/converter.c 			UErrorCode error = U_ZERO_ERROR;
error              78 ext/intl/converter/converter.c 			ucnv_getSubstChars(objval->src, chars, &chars_len, &error);
error              79 ext/intl/converter/converter.c 			if (U_FAILURE(error)) {
error              80 ext/intl/converter/converter.c 				THROW_UFAILURE(objval, "ucnv_getSubstChars", error);
error              88 ext/intl/converter/converter.c 	zval_dtor(error);
error              89 ext/intl/converter/converter.c 	ZVAL_LONG(error, U_ZERO_ERROR);
error             104 ext/intl/converter/converter.c 	zval *source, *codeUnits, *error;
error             107 ext/intl/converter/converter.c 		&reason, &source, &codeUnits, &error) == FAILURE) {
error             111 ext/intl/converter/converter.c 	php_converter_default_callback(return_value, getThis(), reason, error TSRMLS_CC);
error             126 ext/intl/converter/converter.c 	zval *source, *codePoint, *error;
error             129 ext/intl/converter/converter.c 		&reason, &source, &codePoint, &error) == FAILURE) {
error             133 ext/intl/converter/converter.c 	php_converter_default_callback(return_value, getThis(), reason, error TSRMLS_CC);
error             361 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             371 ext/intl/converter/converter.c                                  NULL, NULL, &error);
error             372 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             373 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_setToUCallBack", error);
error             377 ext/intl/converter/converter.c 	error = U_ZERO_ERROR;
error             379 ext/intl/converter/converter.c                                     NULL, NULL, &error);
error             380 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             381 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_setFromUCallBack", error);
error             393 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             394 ext/intl/converter/converter.c 	UConverter *cnv = ucnv_open(enc, &error);
error             396 ext/intl/converter/converter.c 	if (error == U_AMBIGUOUS_ALIAS_WARNING) {
error             404 ext/intl/converter/converter.c 	} else if (U_FAILURE(error)) {
error             406 ext/intl/converter/converter.c 			THROW_UFAILURE(objval, "ucnv_open", error);
error             408 ext/intl/converter/converter.c 			php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error setting encoding: %d - %s", (int)error, u_errorName(error));
error             439 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             470 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             476 ext/intl/converter/converter.c 	name = ucnv_getName(cnv, &objval->error.code);
error             477 ext/intl/converter/converter.c 	if (U_FAILURE(objval->error.code)) {
error             478 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_getName()", objval->error.code);
error             510 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             517 ext/intl/converter/converter.c 	if (U_FAILURE(objval->error.code)) {
error             518 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_getType", objval->error.code);
error             607 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             610 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             611 ext/intl/converter/converter.c 		ucnv_setSubstChars(objval->src, chars, chars_len, &error);
error             612 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             613 ext/intl/converter/converter.c 			THROW_UFAILURE(objval, "ucnv_setSubstChars", error);
error             622 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             623 ext/intl/converter/converter.c 		ucnv_setSubstChars(objval->dest, chars, chars_len, &error);
error             624 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             625 ext/intl/converter/converter.c 			THROW_UFAILURE(objval, "ucnv_setSubstChars", error);
error             645 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             652 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             661 ext/intl/converter/converter.c 	ucnv_getSubstChars(objval->src, chars, &chars_len, &error);
error             662 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             663 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_getSubstChars", error);
error             676 ext/intl/converter/converter.c 	UErrorCode	error = U_ZERO_ERROR;
error             689 ext/intl/converter/converter.c 	temp_len = 1 + ucnv_toUChars(src_cnv, NULL, 0, src, src_len, &error);
error             690 ext/intl/converter/converter.c 	if (U_FAILURE(error) && error != U_BUFFER_OVERFLOW_ERROR) {
error             691 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_toUChars", error);
error             697 ext/intl/converter/converter.c 	error = U_ZERO_ERROR;
error             698 ext/intl/converter/converter.c 	temp_len = ucnv_toUChars(src_cnv, temp, temp_len, src, src_len, &error);
error             699 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             700 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_toUChars", error);
error             707 ext/intl/converter/converter.c 	dest_len = 1 + ucnv_fromUChars(dest_cnv, NULL, 0, temp, temp_len, &error);
error             708 ext/intl/converter/converter.c 	if (U_FAILURE(error) && error != U_BUFFER_OVERFLOW_ERROR) {
error             709 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_fromUChars", error);
error             716 ext/intl/converter/converter.c 	error = U_ZERO_ERROR;
error             717 ext/intl/converter/converter.c 	dest_len = ucnv_fromUChars(dest_cnv, dest, dest_len, temp, temp_len, &error);
error             719 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             720 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_fromUChars", error);
error             781 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             821 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             826 ext/intl/converter/converter.c 			if (U_SUCCESS(error) &&
error             829 ext/intl/converter/converter.c 				error = U_ZERO_ERROR;
error             830 ext/intl/converter/converter.c 				ucnv_setSubstChars(src_cnv, Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval) & 0x7F, &error);
error             832 ext/intl/converter/converter.c 			if (U_SUCCESS(error) &&
error             835 ext/intl/converter/converter.c 				error = U_ZERO_ERROR;
error             836 ext/intl/converter/converter.c 				ucnv_setSubstChars(dest_cnv, Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval) & 0x7F, &error);
error             840 ext/intl/converter/converter.c 		if (U_SUCCESS(error) &&
error             845 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             846 ext/intl/converter/converter.c 			THROW_UFAILURE(NULL, "transcode", error);
error             874 ext/intl/converter/converter.c 	RETURN_LONG(intl_error_get_code(&(objval->error) TSRMLS_CC));	
error             883 ext/intl/converter/converter.c 	char *message = intl_error_get_message(&(objval->error) TSRMLS_CC);
error             928 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             938 ext/intl/converter/converter.c 	count = ucnv_countAliases(name, &error);
error             939 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             940 ext/intl/converter/converter.c 		THROW_UFAILURE(NULL, "ucnv_countAliases", error);
error             948 ext/intl/converter/converter.c 		error = U_ZERO_ERROR;
error             949 ext/intl/converter/converter.c 		alias = ucnv_getAlias(name, i, &error);
error             950 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             951 ext/intl/converter/converter.c 			THROW_UFAILURE(NULL, "ucnv_getAlias", error);
error             976 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             977 ext/intl/converter/converter.c 		const char *name = ucnv_getStandard(i, &error);
error             978 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             979 ext/intl/converter/converter.c 			THROW_UFAILURE(NULL, "ucnv_getStandard", error);
error            1035 ext/intl/converter/converter.c 	intl_error_reset(&(objval->error) TSRMLS_CC);
error            1051 ext/intl/converter/converter.c 	intl_error_init(&(objval->error) TSRMLS_CC);
error            1072 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error            1074 ext/intl/converter/converter.c 	intl_errors_reset(&oldobj->error TSRMLS_CC);
error            1076 ext/intl/converter/converter.c 	objval->src = ucnv_safeClone(oldobj->src, NULL, NULL, &error);
error            1077 ext/intl/converter/converter.c 	if (U_SUCCESS(error)) {
error            1078 ext/intl/converter/converter.c 		error = U_ZERO_ERROR;
error            1079 ext/intl/converter/converter.c 		objval->dest = ucnv_safeClone(oldobj->dest, NULL, NULL, &error);
error            1081 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error            1083 ext/intl/converter/converter.c 		THROW_UFAILURE(oldobj, "ucnv_safeClone", error);
error            1085 ext/intl/converter/converter.c 		err_msg = intl_error_get_message(&oldobj->error TSRMLS_CC);
error              46 ext/intl/dateformat/dateformat_class.h 		intl_errors_set(&dfo->datef_data.error, U_ILLEGAL_ARGUMENT_ERROR, "Found unconstructed IntlDateFormatter", 0 TSRMLS_CC); \
error              92 ext/intl/dateformat/dateformat_create.cpp 		goto error;
error             103 ext/intl/dateformat/dateformat_create.cpp 			goto error;
error             115 ext/intl/dateformat/dateformat_create.cpp 			goto error;
error             144 ext/intl/dateformat/dateformat_create.cpp 		goto error;
error             153 ext/intl/dateformat/dateformat_create.cpp error:
error              31 ext/intl/dateformat/dateformat_data.c 	intl_error_reset( &datef_data->error TSRMLS_CC );
error              47 ext/intl/dateformat/dateformat_data.c 	intl_error_reset( &datef_data->error TSRMLS_CC );
error              27 ext/intl/dateformat/dateformat_data.h 	intl_error      error;
error             112 ext/intl/dateformat/dateformat_format.c 	intl_error	*err = &dfo->datef_data.error;
error              44 ext/intl/formatter/formatter_class.h 		intl_errors_set(&nfo->nf_data.error, U_ILLEGAL_ARGUMENT_ERROR, \
error              32 ext/intl/formatter/formatter_data.c 	intl_error_reset( &nf_data->error TSRMLS_CC );
error              48 ext/intl/formatter/formatter_data.c 	intl_error_reset( &nf_data->error TSRMLS_CC );
error              28 ext/intl/formatter/formatter_data.h 	intl_error      error;
error             113 ext/intl/grapheme/grapheme_util.c 		intl_error_set_custom_msg( NULL, (error), 0 TSRMLS_CC ); 	\
error              32 ext/intl/intl_data.h 	intl_error		error;
error              40 ext/intl/intl_data.h #define INTL_DATA_ERROR(obj)				(((intl_object *)(obj))->error)
error             164 ext/intl/msgformat/msgformat.c 	message = intl_error_get_message( &mfo->mf_data.error TSRMLS_CC );
error              44 ext/intl/msgformat/msgformat_class.h 		intl_errors_set(&mfo->mf_data.error, U_ILLEGAL_ARGUMENT_ERROR,	\
error              38 ext/intl/msgformat/msgformat_data.c 	intl_error_reset( &mf_data->error TSRMLS_CC );
error              65 ext/intl/msgformat/msgformat_data.c 	intl_error_reset(&mf_data->error TSRMLS_CC);
error              28 ext/intl/msgformat/msgformat_data.h 	intl_error      error;
error             265 ext/intl/resourcebundle/resourcebundle_class.c 		intl_errors_set(&rb->error, U_ILLEGAL_ARGUMENT_ERROR,
error              29 ext/intl/resourcebundle/resourcebundle_class.h 	intl_error      error;
error              40 ext/intl/resourcebundle/resourcebundle_class.h 		intl_errors_set(&rb->error, U_ILLEGAL_ARGUMENT_ERROR,		\
error              76 ext/intl/timezone/timezone_class.cpp 		goto error;
error              98 ext/intl/timezone/timezone_class.cpp 			goto error;
error             108 ext/intl/timezone/timezone_class.cpp 			goto error;
error             113 ext/intl/timezone/timezone_class.cpp error:
error            1760 ext/ldap/ldap.c 			char error=0;
error            1773 ext/ldap/ldap.c 					error = 1;
error            1778 ext/ldap/ldap.c 					error = 1;
error            1803 ext/ldap/ldap.c 			if (!error) {
error            1804 ext/ldap/ldap.c 				error = ldap_set_option(ldap, option, ctrls);
error            1812 ext/ldap/ldap.c 			if (error) {
error             453 ext/libxml/libxml.c 	xmlResetError(error);
error             466 ext/libxml/libxml.c 	if (error) {
error             467 ext/libxml/libxml.c 		ret = xmlCopyError(error, &error_copy);
error             717 ext/libxml/libxml.c 	_php_list_set_error_structure(error, NULL);
error             982 ext/libxml/libxml.c 	xmlErrorPtr error;
error             984 ext/libxml/libxml.c 	error = xmlGetLastError();
error             986 ext/libxml/libxml.c 	if (error) {
error             988 ext/libxml/libxml.c 		add_property_long(return_value, "level", error->level);
error             989 ext/libxml/libxml.c 		add_property_long(return_value, "code", error->code);
error             990 ext/libxml/libxml.c 		add_property_long(return_value, "column", error->int2);
error             991 ext/libxml/libxml.c 		if (error->message) {
error             992 ext/libxml/libxml.c 			add_property_string(return_value, "message", error->message, 1);
error             996 ext/libxml/libxml.c 		if (error->file) {
error             997 ext/libxml/libxml.c 			add_property_string(return_value, "file", error->file, 1);
error            1001 ext/libxml/libxml.c 		add_property_long(return_value, "line", error->line);
error            1013 ext/libxml/libxml.c 	xmlErrorPtr error;
error            1021 ext/libxml/libxml.c 		error = zend_llist_get_first(LIBXML(error_list));
error            1023 ext/libxml/libxml.c 		while (error != NULL) {
error            1028 ext/libxml/libxml.c 			add_property_long(z_error, "level", error->level);
error            1029 ext/libxml/libxml.c 			add_property_long(z_error, "code", error->code);
error            1030 ext/libxml/libxml.c 			add_property_long(z_error, "column", error->int2);
error            1031 ext/libxml/libxml.c 			if (error->message) {
error            1032 ext/libxml/libxml.c 				add_property_string(z_error, "message", error->message, 1);
error            1036 ext/libxml/libxml.c 			if (error->file) {
error            1037 ext/libxml/libxml.c 				add_property_string(z_error, "file", error->file, 1);
error            1041 ext/libxml/libxml.c 			add_property_long(z_error, "line", error->line);
error            1044 ext/libxml/libxml.c 			error = zend_llist_get_next(LIBXML(error_list));
error            5436 ext/mbstring/oniguruma/regcomp.c   if (IS_NOT_NULL(scan_env.error)) {
error            5439 ext/mbstring/oniguruma/regcomp.c       einfo->par     = scan_env.error;
error             924 ext/mbstring/oniguruma/regparse.c   env->error      = (UChar* )NULL;
error            5550 ext/mbstring/oniguruma/regparse.c   env->error     = arg;
error             289 ext/mbstring/oniguruma/regparse.h   UChar*           error;
error            1046 ext/mysqli/mysqli_api.c 							if (ret == MYSQL_DATA_TRUNCATED && *(stmt->stmt->bind[i].error) != 0) {
error             444 ext/mysqli/mysqli_nonapi.c 			add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1);
error             488 ext/mysqli/mysqli_nonapi.c 			add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1);
error             220 ext/mysqli/mysqli_prop.c 				add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1);
error             417 ext/mysqli/mysqli_prop.c 				add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1);
error              52 ext/mysqli/mysqli_report.c 	php_mysqli_throw_sql_exception((char *)sqlstate, errorno TSRMLS_CC, "%s", error);
error             241 ext/mysqlnd/mysqlnd.c 					SET_CLIENT_ERROR(*conn->error_info, ok_response->error_no, ok_response->sqlstate, ok_response->error);
error             287 ext/mysqlnd/mysqlnd.c 				SET_CLIENT_ERROR(*conn->error_info, ok_response->error_no, ok_response->sqlstate, ok_response->error);
error             779 ext/mysqlnd/mysqlnd.c 		DBG_ERR_FMT("errorno=%u error=%s", greet_packet->error_no, greet_packet->error);
error             780 ext/mysqlnd/mysqlnd.c 		SET_CLIENT_ERROR(*conn->error_info, greet_packet->error_no, greet_packet->sqlstate, greet_packet->error);
error            1061 ext/mysqlnd/mysqlnd.c 	DBG_ERR_FMT("[%u] %.128s (trying to connect via %s)", conn->error_info->error_no, conn->error_info->error, conn->scheme);
error            1063 ext/mysqlnd/mysqlnd.c 		SET_CLIENT_ERROR(*conn->error_info, CR_CONNECTION_ERROR, UNKNOWN_SQLSTATE, conn->error_info->error? conn->error_info->error:"Unknown error");
error            1065 ext/mysqlnd/mysqlnd.c 						 conn->error_info->error_no, conn->error_info->error, conn->scheme);
error            1551 ext/mysqlnd/mysqlnd.c 	return conn->error_info->error;
error            2155 ext/mysqlnd/mysqlnd.c 					DBG_INF_FMT("Error from the server : (%u) %s", conn->error_info->error_no, conn->error_info->error);
error             135 ext/mysqlnd/mysqlnd_auth.c 				DBG_ERR_FMT("ERROR:%u [SQLSTATE:%s] %s", auth_resp_packet->error_no, auth_resp_packet->sqlstate, auth_resp_packet->error);
error             137 ext/mysqlnd/mysqlnd_auth.c 			SET_CLIENT_ERROR(*conn->error_info, auth_resp_packet->error_no, UNKNOWN_SQLSTATE, auth_resp_packet->error);
error             106 ext/mysqlnd/mysqlnd_driver.c 	if (element->error) {
error             107 ext/mysqlnd/mysqlnd_driver.c 		mnd_pefree(element->error, TRUE);
error             188 ext/mysqlnd/mysqlnd_loaddata.c 		char tmp_buf[sizeof(conn->error_info->error)];
error             216 ext/mysqlnd/mysqlnd_loaddata.c 		char tmp_buf[sizeof(conn->error_info->error)];
error             392 ext/mysqlnd/mysqlnd_net.c 				int error = net->data->m.decode(decompressed_data, decompressed_size,
error             394 ext/mysqlnd/mysqlnd_net.c 				if (error == Z_OK) {
error             576 ext/mysqlnd/mysqlnd_net.c 	int error;
error             579 ext/mysqlnd/mysqlnd_net.c 	error = uncompress(uncompressed_data, &tmp_complen, compressed_data, compressed_data_len);
error             582 ext/mysqlnd/mysqlnd_net.c 	if (error != Z_OK) {
error             583 ext/mysqlnd/mysqlnd_net.c 		DBG_INF_FMT("decompression NOT successful. error=%d Z_OK=%d Z_BUF_ERROR=%d Z_MEM_ERROR=%d", error, Z_OK, Z_BUF_ERROR, Z_MEM_ERROR);
error             585 ext/mysqlnd/mysqlnd_net.c 	DBG_RETURN(error == Z_OK? PASS:FAIL);
error             600 ext/mysqlnd/mysqlnd_net.c 	int error;
error             603 ext/mysqlnd/mysqlnd_net.c 	error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len);
error             605 ext/mysqlnd/mysqlnd_net.c 	if (error != Z_OK) {
error             606 ext/mysqlnd/mysqlnd_net.c 		DBG_INF_FMT("compression NOT successful. error=%d Z_OK=%d Z_BUF_ERROR=%d Z_MEM_ERROR=%d", error, Z_OK, Z_BUF_ERROR, Z_MEM_ERROR);
error             612 ext/mysqlnd/mysqlnd_net.c 	DBG_RETURN(error == Z_OK? PASS:FAIL);
error             116 ext/mysqlnd/mysqlnd_portability.h error "Neither int nor long is of 4 bytes width"
error             116 ext/mysqlnd/mysqlnd_priv.h 		(error_info).error[0] = '\0'; \
error             131 ext/mysqlnd/mysqlnd_priv.h 		strlcpy((error_info).error, (c), sizeof((error_info).error)); \
error             137 ext/mysqlnd/mysqlnd_priv.h 			error_for_the_list.error = mnd_pestrdup((c), TRUE); \
error             138 ext/mysqlnd/mysqlnd_priv.h 			if (error_for_the_list.error) { \
error             139 ext/mysqlnd/mysqlnd_priv.h 				DBG_INF_FMT("adding error [%s] to the list", error_for_the_list.error); \
error             149 ext/mysqlnd/mysqlnd_priv.h 		SET_CLIENT_ERROR((error_info_to), (error_info_from).error_no, (error_info_from).sqlstate, (error_info_from).error); \
error            1717 ext/mysqlnd/mysqlnd_ps.c 	return stmt? stmt->error_info->error : 0;
error             395 ext/mysqlnd/mysqlnd_result.c 			DBG_ERR_FMT("error=%s", rset_header->error_info.error);
error             698 ext/mysqlnd/mysqlnd_result.c 			DBG_ERR_FMT("errorno=%u error=%s", row_packet->error_info.error_no, row_packet->error_info.error);
error             825 ext/mysqlnd/mysqlnd_result.c 			DBG_ERR_FMT("errorno=%u error=%s", row_packet->error_info.error_no, row_packet->error_info.error);
error             111 ext/mysqlnd/mysqlnd_structs.h 	char error[MYSQLND_ERRMSG_SIZE+1];
error             120 ext/mysqlnd/mysqlnd_structs.h 	char * error;
error             265 ext/mysqlnd/mysqlnd_wireprotocol.c 			memcpy(error, p, error_msg_len);
error             270 ext/mysqlnd/mysqlnd_wireprotocol.c 	error[error_msg_len]= '\0';
error             352 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error             672 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error             827 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error             917 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error            1070 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error, sizeof(packet->error_info.error),
error            1212 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error, sizeof(packet->error_info.error),
error            1215 ext/mysqlnd/mysqlnd_wireprotocol.c 		DBG_ERR_FMT("Server error : (%u) %s", packet->error_info.error_no, packet->error_info.error);
error            1803 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error,
error            1804 ext/mysqlnd/mysqlnd_wireprotocol.c 										 sizeof(packet->error_info.error),
error            1949 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error,
error            1950 ext/mysqlnd/mysqlnd_wireprotocol.c 										 sizeof(packet->error_info.error),
error            2046 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error,
error            2047 ext/mysqlnd/mysqlnd_wireprotocol.c 										 sizeof(packet->error_info.error),
error              83 ext/mysqlnd/mysqlnd_wireprotocol.h 	char 		error[MYSQLND_ERRMSG_SIZE+1];
error             120 ext/mysqlnd/mysqlnd_wireprotocol.h 	char 		error[MYSQLND_ERRMSG_SIZE+1];
error             150 ext/mysqlnd/mysqlnd_wireprotocol.h 	char 		error[MYSQLND_ERRMSG_SIZE+1];
error             172 ext/mysqlnd/mysqlnd_wireprotocol.h 	char 		error[MYSQLND_ERRMSG_SIZE+1];
error            1627 ext/oci8/oci8_interface.c 	sword error = OCI_SUCCESS;
error            1641 ext/oci8/oci8_interface.c 			error = statement->errcode;
error            1652 ext/oci8/oci8_interface.c 			error = connection->errcode;
error            1659 ext/oci8/oci8_interface.c 			error = connection->errcode;
error            1664 ext/oci8/oci8_interface.c 		error = OCI_G(errcode);
error            1668 ext/oci8/oci8_interface.c 	if (error == OCI_SUCCESS) { /* no error set in the handle */
error             868 ext/odbc/php_odbc.c 	SQLINTEGER	error;        /* Not used */
error             889 ext/odbc/php_odbc.c 	rc = SQLError(henv, conn, stmt, state, &error, errormsg, sizeof(errormsg)-1, &errormsgsize);
error            1479 ext/odbc/php_odbc.c 	 		SQLINTEGER  error;        /* Not used */
error            1484 ext/odbc/php_odbc.c 						result->stmt, state, &error, errormsg,
error             104 ext/opcache/zend_shared_alloc.c 	zend_accel_error(ACCEL_LOG_FATAL, "Unable to allocate shared memory segment of %ld bytes: %s: %s (%d)", allocate_size, error?error:"unknown", strerror(errno), errno );
error            1193 ext/pcntl/pcntl.c         long error;
error            1195 ext/pcntl/pcntl.c         if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &error) == FAILURE) {
error            1199 ext/pcntl/pcntl.c         RETURN_STRING(strerror(error), 1);
error              49 ext/pcre/pcrelib/pcredemo.c const char *error;
error             102 ext/pcre/pcrelib/pcredemo.c   &error,               /* for error message */
error             110 ext/pcre/pcrelib/pcredemo.c   printf("PCRE compilation failed at offset %d: %s\n", erroffset, error);
error             235 ext/pcre/php_pcre.c 	const char			*error;
error             401 ext/pcre/php_pcre.c 					  &error,
error             406 ext/pcre/php_pcre.c 		php_error_docref(NULL TSRMLS_CC,E_WARNING, "Compilation failed: %s at offset %d", error, erroffset);
error             417 ext/pcre/php_pcre.c 		extra = pcre_study(re, soptions, &error);
error             421 ext/pcre/php_pcre.c 		if (error != NULL) {
error            1340 ext/pdo/pdo_stmt.c 	int error = 0, old_arg_count;
error            1369 ext/pdo/pdo_stmt.c 	if (class_name && !error) {
error            1374 ext/pdo/pdo_stmt.c 			error = 1;
error            1376 ext/pdo/pdo_stmt.c 	} else if (!error) {
error            1380 ext/pdo/pdo_stmt.c 	if (!error && !do_fetch(stmt, TRUE, return_value, how, ori, off, 0 TSRMLS_CC)) {
error            1381 ext/pdo/pdo_stmt.c 		error = 1;
error            1383 ext/pdo/pdo_stmt.c 	if (error) {
error            1391 ext/pdo/pdo_stmt.c 	if (error) {
error            1428 ext/pdo/pdo_stmt.c 	int error = 0, flags, old_arg_count;
error            1455 ext/pdo/pdo_stmt.c 				error = 1;
error            1466 ext/pdo/pdo_stmt.c 				error = 1;
error            1472 ext/pdo/pdo_stmt.c 					error = 1;
error            1477 ext/pdo/pdo_stmt.c 		if (!error) {
error            1487 ext/pdo/pdo_stmt.c 			error = 1;
error            1493 ext/pdo/pdo_stmt.c 				error = 1;
error            1511 ext/pdo/pdo_stmt.c 			error = 1;
error            1518 ext/pdo/pdo_stmt.c 			error = 1;
error            1529 ext/pdo/pdo_stmt.c 	if (!error)	{
error            1542 ext/pdo/pdo_stmt.c 			error = 2;
error            1545 ext/pdo/pdo_stmt.c 	if (!error) {
error            1568 ext/pdo/pdo_stmt.c 	if (error) {
error            1570 ext/pdo/pdo_stmt.c 		if (error != 2) {
error             322 ext/phar/dirstream.c 	char *internal_file, *error, *str_key;
error             357 ext/phar/dirstream.c 	if (FAILURE == phar_get_archive(&phar, resource->host, host_len, NULL, 0, &error TSRMLS_CC)) {
error             358 ext/phar/dirstream.c 		if (error) {
error             359 ext/phar/dirstream.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             360 ext/phar/dirstream.c 			efree(error);
error             368 ext/phar/dirstream.c 	if (error) {
error             369 ext/phar/dirstream.c 		efree(error);
error             435 ext/phar/dirstream.c 	char *error, *arch, *entry2;
error             477 ext/phar/dirstream.c 	if (FAILURE == phar_get_archive(&phar, resource->host, host_len, NULL, 0, &error TSRMLS_CC)) {
error             478 ext/phar/dirstream.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: cannot create directory \"%s\" in phar \"%s\", error retrieving phar information: %s", resource->path+1, resource->host, error);
error             479 ext/phar/dirstream.c 		efree(error);
error             484 ext/phar/dirstream.c 	if ((e = phar_get_entry_info_dir(phar, resource->path + 1, strlen(resource->path + 1), 2, &error, 1 TSRMLS_CC))) {
error             495 ext/phar/dirstream.c 	if (error) {
error             496 ext/phar/dirstream.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: cannot create directory \"%s\" in phar \"%s\", %s", resource->path+1, resource->host, error);
error             497 ext/phar/dirstream.c 		efree(error);
error             502 ext/phar/dirstream.c 	if (phar_get_entry_info_dir(phar, resource->path + 1, strlen(resource->path + 1), 0, &error, 1 TSRMLS_CC)) {
error             509 ext/phar/dirstream.c 	if (error) {
error             510 ext/phar/dirstream.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: cannot create directory \"%s\" in phar \"%s\", %s", resource->path+1, resource->host, error);
error             511 ext/phar/dirstream.c 		efree(error);
error             541 ext/phar/dirstream.c 		efree(error);
error             546 ext/phar/dirstream.c 	phar_flush(phar, 0, 0, 0, &error TSRMLS_CC);
error             548 ext/phar/dirstream.c 	if (error) {
error             549 ext/phar/dirstream.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: cannot create directory \"%s\" in phar \"%s\", %s", entry.filename, phar->fname, error);
error             551 ext/phar/dirstream.c 		efree(error);
error             567 ext/phar/dirstream.c 	char *error, *arch, *entry2;
error             614 ext/phar/dirstream.c 	if (FAILURE == phar_get_archive(&phar, resource->host, host_len, NULL, 0, &error TSRMLS_CC)) {
error             615 ext/phar/dirstream.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: cannot remove directory \"%s\" in phar \"%s\", error retrieving phar information: %s", resource->path+1, resource->host, error);
error             616 ext/phar/dirstream.c 		efree(error);
error             623 ext/phar/dirstream.c 	if (!(entry = phar_get_entry_info_dir(phar, resource->path + 1, path_len, 2, &error, 1 TSRMLS_CC))) {
error             624 ext/phar/dirstream.c 		if (error) {
error             625 ext/phar/dirstream.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: cannot remove directory \"%s\" in phar \"%s\", %s", resource->path+1, resource->host, error);
error             626 ext/phar/dirstream.c 			efree(error);
error             685 ext/phar/dirstream.c 		phar_flush(phar, 0, 0, 0, &error TSRMLS_CC);
error             687 ext/phar/dirstream.c 		if (error) {
error             688 ext/phar/dirstream.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "phar error: cannot remove directory \"%s\" in phar \"%s\", %s", entry->filename, phar->fname, error);
error             690 ext/phar/dirstream.c 			efree(error);
error             476 ext/phar/phar.c 		phar_flush(phar, 0, 0, 0, error TSRMLS_CC);
error             485 ext/phar/phar.c 	if (error) {\
error             486 ext/phar/phar.c 		spprintf(error, 0, msg, fname);\
error             536 ext/phar/phar.c 	if (error) {
error             537 ext/phar/phar.c 		*error = NULL;
error             543 ext/phar/phar.c 	if (SUCCESS == phar_get_archive(&phar, unixfname, fname_len, alias, alias_len, error TSRMLS_CC)
error             550 ext/phar/phar.c 	if (SUCCESS == phar_get_archive(&phar, fname, fname_len, alias, alias_len, error TSRMLS_CC)
error             566 ext/phar/phar.c 					if (error) {
error             567 ext/phar/phar.c 						spprintf(error, 0, "'%s' is not a phar archive. Use PharData::__construct() for a standard zip or tar archive", fname);
error             587 ext/phar/phar.c 		if (phar && error && !(options & REPORT_ERRORS)) {
error             588 ext/phar/phar.c 			efree(error);
error             675 ext/phar/phar.c 	if (error) {
error             676 ext/phar/phar.c 		*error = NULL;
error             752 ext/phar/phar.c 		if (error) {
error             753 ext/phar/phar.c 			spprintf(error, 0, "phar \"%s\" is API version %1.u.%1.u.%1.u, and cannot be processed", fname, manifest_ver >> 12, (manifest_ver >> 8) & 0xF, (manifest_ver >> 4) & 0x0F);
error             778 ext/phar/phar.c 			if (error) {
error             779 ext/phar/phar.c 				spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             797 ext/phar/phar.c 					if (error) {
error             798 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" openssl signature length could not be read", fname);
error             815 ext/phar/phar.c 					if (error) {
error             816 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" openssl signature could not be read", fname);
error             821 ext/phar/phar.c 				if (FAILURE == phar_verify_signature(fp, end_of_phar, PHAR_SIG_OPENSSL, sig, signature_len, fname, &signature, &sig_len, error TSRMLS_CC)) {
error             825 ext/phar/phar.c 					if (error) {
error             826 ext/phar/phar.c 						char *save = *error;
error             827 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" openssl signature could not be verified: %s", fname, *error);
error             845 ext/phar/phar.c 					if (error) {
error             846 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             851 ext/phar/phar.c 				if (FAILURE == phar_verify_signature(fp, read_len, PHAR_SIG_SHA512, (char *)digest, 64, fname, &signature, &sig_len, error TSRMLS_CC)) {
error             854 ext/phar/phar.c 					if (error) {
error             855 ext/phar/phar.c 						char *save = *error;
error             856 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" SHA512 signature could not be verified: %s", fname, *error);
error             872 ext/phar/phar.c 					if (error) {
error             873 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             878 ext/phar/phar.c 				if (FAILURE == phar_verify_signature(fp, read_len, PHAR_SIG_SHA256, (char *)digest, 32, fname, &signature, &sig_len, error TSRMLS_CC)) {
error             881 ext/phar/phar.c 					if (error) {
error             882 ext/phar/phar.c 						char *save = *error;
error             883 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" SHA256 signature could not be verified: %s", fname, *error);
error             896 ext/phar/phar.c 				if (error) {
error             897 ext/phar/phar.c 					spprintf(error, 0, "phar \"%s\" has a unsupported signature", fname);
error             910 ext/phar/phar.c 					if (error) {
error             911 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             916 ext/phar/phar.c 				if (FAILURE == phar_verify_signature(fp, read_len, PHAR_SIG_SHA1, (char *)digest, 20, fname, &signature, &sig_len, error TSRMLS_CC)) {
error             919 ext/phar/phar.c 					if (error) {
error             920 ext/phar/phar.c 						char *save = *error;
error             921 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" SHA1 signature could not be verified: %s", fname, *error);
error             937 ext/phar/phar.c 					if (error) {
error             938 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             943 ext/phar/phar.c 				if (FAILURE == phar_verify_signature(fp, read_len, PHAR_SIG_MD5, (char *)digest, 16, fname, &signature, &sig_len, error TSRMLS_CC)) {
error             946 ext/phar/phar.c 					if (error) {
error             947 ext/phar/phar.c 						char *save = *error;
error             948 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" MD5 signature could not be verified: %s", fname, *error);
error             959 ext/phar/phar.c 				if (error) {
error             960 ext/phar/phar.c 					spprintf(error, 0, "phar \"%s\" has a broken or unsupported signature", fname);
error             968 ext/phar/phar.c 		if (error) {
error             969 ext/phar/phar.c 			spprintf(error, 0, "phar \"%s\" does not have a signature", fname);
error            1000 ext/phar/phar.c 			if (error) {
error            1001 ext/phar/phar.c 				spprintf(error, 0, "cannot load phar \"%s\" with implicit alias \"%s\" under different alias \"%s\"", fname, buffer, alias);
error            1251 ext/phar/phar.c 	if (error) {
error            1252 ext/phar/phar.c 		*error = NULL;
error            1262 ext/phar/phar.c 		if (error) {
error            1264 ext/phar/phar.c 				spprintf(error, 0, "Cannot create a phar archive from a URL like \"%s\". Phar objects can only be created from local files", fname);
error            1266 ext/phar/phar.c 				spprintf(error, 0, "Cannot create phar '%s', file extension (or combination) not recognised or the directory does not exist", fname);
error            1278 ext/phar/phar.c 			if (error) {
error            1279 ext/phar/phar.c 				spprintf(error, 0, "Cannot open '%s' as a PharData object. Use Phar::__construct() for executable archives", fname);
error            1287 ext/phar/phar.c 				spprintf(error, 0, "'%s' is not a phar archive. Use PharData::__construct() for a standard zip or tar archive", fname);
error            1297 ext/phar/phar.c 		if (error) {
error            1298 ext/phar/phar.c 			*error = my_error;
error            1307 ext/phar/phar.c 		return phar_open_or_create_zip(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC);
error            1312 ext/phar/phar.c 		return phar_open_or_create_tar(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC);
error            1315 ext/phar/phar.c 	return phar_create_or_parse_filename(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC);
error            1346 ext/phar/phar.c 		if (phar_open_from_fp(fp, fname, fname_len, alias, alias_len, options, pphar, is_data, error TSRMLS_CC) == SUCCESS) {
error            1369 ext/phar/phar.c 			if (error) {
error            1370 ext/phar/phar.c 				spprintf(error, 0, "creating archive \"%s\" disabled by the php.ini setting phar.readonly", fname);
error            1426 ext/phar/phar.c 				if (error) {
error            1427 ext/phar/phar.c 					spprintf(error, 4096, "phar error: phar \"%s\" cannot set alias \"%s\", already in use by another phar archive", mydata->fname, alias);
error            1447 ext/phar/phar.c 				if (error) {
error            1448 ext/phar/phar.c 					spprintf(error, 0, "archive \"%s\" cannot be associated with alias \"%s\", already in use", fname, alias);
error            1479 ext/phar/phar.c 	if (error) {
error            1480 ext/phar/phar.c 		*error = NULL;
error            1487 ext/phar/phar.c 	if (phar_open_parsed_phar(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC) == SUCCESS) {
error            1489 ext/phar/phar.c 	} else if (error && *error) {
error            1505 ext/phar/phar.c 			if (error) {
error            1506 ext/phar/phar.c 				spprintf(error, 0, "unable to open phar for reading \"%s\"", fname);
error            1520 ext/phar/phar.c 	ret =  phar_open_from_fp(fp, fname, fname_len, alias, alias_len, options, pphar, is_data, error TSRMLS_CC);
error            1579 ext/phar/phar.c 	if (error) {
error            1580 ext/phar/phar.c 		*error = NULL;
error            1703 ext/phar/phar.c 				return phar_parse_zipfile(fp, fname, fname_len, alias, alias_len, pphar, error TSRMLS_CC);
error            1709 ext/phar/phar.c 					return phar_parse_tarfile(fp, fname, fname_len, alias, alias_len, pphar, is_data, compression, error TSRMLS_CC);
error            1716 ext/phar/phar.c 			return phar_parse_pharfile(fp, fname, fname_len, alias, alias_len, halt_offset, pphar, compression, error TSRMLS_CC);
error            2330 ext/phar/phar.c 	if (error) {
error            2331 ext/phar/phar.c 		*error = NULL;
error            2342 ext/phar/phar.c 		if (error) {
error            2343 ext/phar/phar.c 			spprintf(error, 0, "cannot initialize a phar outside of PHP execution");
error            2352 ext/phar/phar.c 		if (error) {
error            2353 ext/phar/phar.c 			spprintf(error, 0, "__HALT_COMPILER(); must be declared in a phar");
error            2373 ext/phar/phar.c 		if (error) {
error            2374 ext/phar/phar.c 			spprintf(error, 0, "unable to open phar for reading \"%s\"", fname);
error            2387 ext/phar/phar.c 	ret = phar_open_from_fp(fp, fname, fname_len, alias, alias_len, REPORT_ERRORS, NULL, 0, error TSRMLS_CC);
error            2407 ext/phar/phar.c 	if (error) {
error            2408 ext/phar/phar.c 		*error = NULL;
error            2417 ext/phar/phar.c 			spprintf(error, 0, "phar error: unable to open zip-based phar archive \"%s\" to verify local file header for file \"%s\"", idata->phar->fname, entry->filename);
error            2424 ext/phar/phar.c 			spprintf(error, 0, "phar error: internal corruption of zip-based phar \"%s\" (cannot read local file header for file \"%s\")", idata->phar->fname, entry->filename);
error            2437 ext/phar/phar.c 				spprintf(error, 0, "phar error: internal corruption of zip-based phar \"%s\" (cannot read local data descriptor for file \"%s\")", idata->phar->fname, entry->filename);
error            2449 ext/phar/phar.c 			spprintf(error, 0, "phar error: internal corruption of zip-based phar \"%s\" (local header of file \"%s\" does not match central directory)", idata->phar->fname, entry->filename);
error            2478 ext/phar/phar.c 		spprintf(error, 0, "phar error: internal corruption of phar \"%s\" (crc32 mismatch on file \"%s\")", idata->phar->fname, entry->filename);
error            2520 ext/phar/phar.c 	if (error) {
error            2521 ext/phar/phar.c 		*error = NULL;
error            2537 ext/phar/phar.c 		if (error) {
error            2538 ext/phar/phar.c 			spprintf(error, 0, "Illegal filename passed in for stub creation, was %d characters long, and only 400 or less is allowed", index_len);
error            2545 ext/phar/phar.c 		if (error) {
error            2546 ext/phar/phar.c 			spprintf(error, 0, "Illegal web filename passed in for stub creation, was %d characters long, and only 400 or less is allowed", web_len);
error            2583 ext/phar/phar.c 		if (error) {
error            2584 ext/phar/phar.c 			spprintf(error, 0, "internal error: attempt to flush cached zip-based phar \"%s\"", phar->fname);
error            2589 ext/phar/phar.c 	if (error) {
error            2590 ext/phar/phar.c 		*error = NULL;
error            2600 ext/phar/phar.c 		return phar_zip_flush(phar, user_stub, len, convert, error TSRMLS_CC);
error            2604 ext/phar/phar.c 		return phar_tar_flush(phar, user_stub, len, convert, error TSRMLS_CC);
error            2621 ext/phar/phar.c 		if (error) {
error            2622 ext/phar/phar.c 			spprintf(error, 0, "unable to create temporary file");
error            2638 ext/phar/phar.c 				if (error) {
error            2639 ext/phar/phar.c 					spprintf(error, 0, "unable to access resource to copy stub to new phar \"%s\"", phar->fname);
error            2655 ext/phar/phar.c 				if (error) {
error            2656 ext/phar/phar.c 					spprintf(error, 0, "unable to read resource to copy stub to new phar \"%s\"", phar->fname);
error            2671 ext/phar/phar.c 			if (error) {
error            2672 ext/phar/phar.c 				spprintf(error, 0, "illegal stub for phar \"%s\"", phar->fname);
error            2688 ext/phar/phar.c 			if (error) {
error            2689 ext/phar/phar.c 				spprintf(error, 0, "unable to create stub from string in new phar \"%s\"", phar->fname);
error            2716 ext/phar/phar.c 			if (error) {
error            2718 ext/phar/phar.c 					spprintf(error, 0, "unable to create stub in new phar \"%s\"", phar->fname);
error            2720 ext/phar/phar.c 					spprintf(error, 0, "unable to copy stub of old phar to new phar \"%s\"", phar->fname);
error            2816 ext/phar/phar.c 			newentry = phar_open_jit(phar, entry, error TSRMLS_CC);
error            2819 ext/phar/phar.c 				efree(*error);
error            2820 ext/phar/phar.c 				*error = NULL;
error            2831 ext/phar/phar.c 			if (error) {
error            2832 ext/phar/phar.c 				spprintf(error, 0, "unable to seek to start of file \"%s\" while creating new phar \"%s\"", entry->filename, phar->fname);
error            2855 ext/phar/phar.c 				if (error) {
error            2856 ext/phar/phar.c 					spprintf(error, 0, "unable to gzip compress file \"%s\" to new phar \"%s\"", entry->filename, phar->fname);
error            2859 ext/phar/phar.c 				if (error) {
error            2860 ext/phar/phar.c 					spprintf(error, 0, "unable to bzip2 compress file \"%s\" to new phar \"%s\"", entry->filename, phar->fname);
error            2871 ext/phar/phar.c 			if (error) {
error            2872 ext/phar/phar.c 				spprintf(error, 0, "unable to create temporary file");
error            2886 ext/phar/phar.c 			if (error) {
error            2887 ext/phar/phar.c 				spprintf(error, 0, "unable to seek to start of file \"%s\" while creating new phar \"%s\"", entry->filename, phar->fname);
error            2897 ext/phar/phar.c 			if (error) {
error            2898 ext/phar/phar.c 				spprintf(error, 0, "unable to copy compressed file contents of file \"%s\" while creating new phar \"%s\"", entry->filename, phar->fname);
error            2960 ext/phar/phar.c 		if (error) {
error            2961 ext/phar/phar.c 			spprintf(error, 0, "unable to write manifest header of new phar \"%s\"", phar->fname);
error            2981 ext/phar/phar.c 		if (error) {
error            2982 ext/phar/phar.c 			spprintf(error, 0, "unable to write manifest meta-data of new phar \"%s\"", phar->fname);
error            3020 ext/phar/phar.c 			if (error) {
error            3022 ext/phar/phar.c 					spprintf(error, 0, "unable to write filename of directory \"%s\" to manifest of new phar \"%s\"", entry->filename, phar->fname);
error            3024 ext/phar/phar.c 					spprintf(error, 0, "unable to write filename of file \"%s\" to manifest of new phar \"%s\"", entry->filename, phar->fname);
error            3055 ext/phar/phar.c 			if (error) {
error            3056 ext/phar/phar.c 				spprintf(error, 0, "unable to write temporary manifest of file \"%s\" to manifest of new phar \"%s\"", entry->filename, phar->fname);
error            3071 ext/phar/phar.c 			if (error) {
error            3072 ext/phar/phar.c 				spprintf(error, 0, "unable to write manifest padding byte");
error            3103 ext/phar/phar.c 				if (error) {
error            3104 ext/phar/phar.c 					spprintf(error, 0, "unable to seek to start of file \"%s\" while creating new phar \"%s\"", entry->filename, phar->fname);
error            3115 ext/phar/phar.c 			if (error) {
error            3116 ext/phar/phar.c 				spprintf(error, 0, "unable to seek to start of file \"%s\" while creating new phar \"%s\"", entry->filename, phar->fname);
error            3131 ext/phar/phar.c 			if (error) {
error            3132 ext/phar/phar.c 				spprintf(error, 0, "unable to write contents of file \"%s\" to new phar \"%s\"", entry->filename, phar->fname);
error            3177 ext/phar/phar.c 				if (error) {
error            3178 ext/phar/phar.c 					spprintf(error, 0, "unable to write contents of file \"%s\" to new phar \"%s\" with requested hash type", entry->filename, phar->fname);
error            3186 ext/phar/phar.c 				if (FAILURE == phar_create_signature(phar, newfile, &digest, &digest_len, error TSRMLS_CC)) {
error            3187 ext/phar/phar.c 					if (error) {
error            3188 ext/phar/phar.c 						char *save = *error;
error            3189 ext/phar/phar.c 						spprintf(error, 0, "phar error: unable to write signature: %s", save);
error            3247 ext/phar/phar.c 			if (error) {
error            3248 ext/phar/phar.c 				spprintf(error, 4096, "unable to open new phar \"%s\" for writing", phar->fname);
error            3263 ext/phar/phar.c 				if (error) {
error            3264 ext/phar/phar.c 					spprintf(error, 4096, "unable to compress all contents of phar \"%s\" using zlib, PHP versions older than 5.2.6 have a buggy zlib", phar->fname);
error            3293 ext/phar/phar.c 		if (error) {
error            3294 ext/phar/phar.c 			spprintf(error, 0, "unable to seek to __HALT_COMPILER(); in new phar \"%s\"", phar->fname);
error             215 ext/phar/phar_object.c 				char *error;
error             216 ext/phar/phar_object.c 				if (!phar_open_jit(phar, info, &error TSRMLS_CC)) {
error             217 ext/phar/phar_object.c 					if (error) {
error             218 ext/phar/phar_object.c 						zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error             219 ext/phar/phar_object.c 						efree(error);
error             567 ext/phar/phar_object.c 	char *alias = NULL, *error, *index_php = NULL, *f404 = NULL, *ru = NULL;
error             583 ext/phar/phar_object.c 	if (phar_open_executed_filename(alias, alias_len, &error TSRMLS_CC) != SUCCESS) {
error             584 ext/phar/phar_object.c 		if (error) {
error             585 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error             586 ext/phar/phar_object.c 			efree(error);
error             958 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *stub, *error;
error             966 ext/phar/phar_object.c 	stub = phar_create_default_stub(index, webindex, &stub_len, &error TSRMLS_CC);
error             968 ext/phar/phar_object.c 	if (error) {
error             969 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error             970 ext/phar/phar_object.c 		efree(error);
error             981 ext/phar/phar_object.c 	char *alias = NULL, *error;
error             991 ext/phar/phar_object.c 	RETVAL_BOOL(phar_open_executed_filename(alias, alias_len, &error TSRMLS_CC) == SUCCESS);
error             993 ext/phar/phar_object.c 	if (error) {
error             994 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error             995 ext/phar/phar_object.c 		efree(error);
error            1003 ext/phar/phar_object.c 	char *fname, *alias = NULL, *error;
error            1012 ext/phar/phar_object.c 	RETVAL_BOOL(phar_open_from_filename(fname, fname_len, alias, alias_len, REPORT_ERRORS, NULL, &error TSRMLS_CC) == SUCCESS);
error            1014 ext/phar/phar_object.c 	if (error) {
error            1015 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            1016 ext/phar/phar_object.c 		efree(error);
error            1143 ext/phar/phar_object.c 	char *fname, *alias = NULL, *error, *arch = NULL, *entry = NULL, *save_fname;
error            1188 ext/phar/phar_object.c 	if (phar_open_or_create_filename(fname, fname_len, alias, alias_len, is_data, REPORT_ERRORS, &phar_data, &error TSRMLS_CC) == FAILURE) {
error            1199 ext/phar/phar_object.c 		if (error) {
error            1201 ext/phar/phar_object.c 				"%s", error);
error            1202 ext/phar/phar_object.c 			efree(error);
error            1324 ext/phar/phar_object.c 	char *fname, *error, *zname, *arch, *entry;
error            1337 ext/phar/phar_object.c 	if (FAILURE == phar_open_from_filename(fname, fname_len, NULL, 0, REPORT_ERRORS, &phar, &error TSRMLS_CC)) {
error            1338 ext/phar/phar_object.c 		if (error) {
error            1339 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "Unknown phar archive \"%s\": %s", fname, error);
error            1340 ext/phar/phar_object.c 			efree(error);
error            1426 ext/phar/phar_object.c 	char *fname, *error = NULL, *base = p_obj->b, *opened, *save = NULL, *temp = NULL;
error            1675 ext/phar/phar_object.c 	if (!(data = phar_get_or_create_entry_data(phar_obj->arc.archive->fname, phar_obj->arc.archive->fname_len, str_key, str_key_len, "w+b", 0, &error, 1 TSRMLS_CC))) {
error            1676 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Entry %s cannot be created: %s", str_key, error);
error            1677 ext/phar/phar_object.c 		efree(error);
error            1698 ext/phar/phar_object.c 		if (error) {
error            1699 ext/phar/phar_object.c 			efree(error);
error            1744 ext/phar/phar_object.c 	char *dir, *error, *regex = NULL;
error            1853 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            1855 ext/phar/phar_object.c 		if (error) {
error            1856 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            1857 ext/phar/phar_object.c 			efree(error);
error            1883 ext/phar/phar_object.c 	char *error;
error            1921 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            1922 ext/phar/phar_object.c 		if (error) {
error            1923 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            1924 ext/phar/phar_object.c 			efree(error);
error            1975 ext/phar/phar_object.c 	char *error;
error            1979 ext/phar/phar_object.c 	if (FAILURE == phar_open_entry_fp(entry, &error, 1 TSRMLS_CC)) {
error            1980 ext/phar/phar_object.c 		if (error) {
error            1982 ext/phar/phar_object.c 				"Cannot convert phar archive \"%s\", unable to open entry \"%s\" contents: %s", entry->phar->fname, entry->filename, error);
error            1983 ext/phar/phar_object.c 			efree(error);
error            2027 ext/phar/phar_object.c 	char *error;
error            2182 ext/phar/phar_object.c 	phar_flush(phar, 0, 0, 1, &error TSRMLS_CC);
error            2184 ext/phar/phar_object.c 	if (error) {
error            2185 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error);
error            2186 ext/phar/phar_object.c 		efree(error);
error            2613 ext/phar/phar_object.c 	char *error;
error            2647 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, NULL, 0, 0, &error TSRMLS_CC);
error            2648 ext/phar/phar_object.c 	if (error) {
error            2649 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2650 ext/phar/phar_object.c 		efree(error);
error            2695 ext/phar/phar_object.c 	char *alias, *error, *oldalias;
error            2727 ext/phar/phar_object.c 			spprintf(&error, 0, "alias \"%s\" is already used for archive \"%s\" and cannot be used for other archives", alias, (*fd_ptr)->fname);
error            2729 ext/phar/phar_object.c 				efree(error);
error            2732 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2733 ext/phar/phar_object.c 			efree(error);
error            2763 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, NULL, 0, 0, &error TSRMLS_CC);
error            2765 ext/phar/phar_object.c 		if (error) {
error            2769 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2773 ext/phar/phar_object.c 			efree(error);
error            2840 ext/phar/phar_object.c 	char *error;
error            2855 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            2857 ext/phar/phar_object.c 	if (error) {
error            2858 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2859 ext/phar/phar_object.c 		efree(error);
error            2871 ext/phar/phar_object.c 	char *stub, *error;
error            2905 ext/phar/phar_object.c 			phar_flush(phar_obj->arc.archive, (char *) &zstub, len, 0, &error TSRMLS_CC);
error            2906 ext/phar/phar_object.c 			if (error) {
error            2907 ext/phar/phar_object.c 				zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2908 ext/phar/phar_object.c 				efree(error);
error            2920 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, stub, stub_len, 0, &error TSRMLS_CC);
error            2922 ext/phar/phar_object.c 		if (error) {
error            2923 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2924 ext/phar/phar_object.c 			efree(error);
error            2949 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *error = NULL, *stub = NULL;
error            2981 ext/phar/phar_object.c 		stub = phar_create_default_stub(index, webindex, &stub_len, &error TSRMLS_CC);
error            2983 ext/phar/phar_object.c 		if (error) {
error            2984 ext/phar/phar_object.c 			zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0 TSRMLS_CC, "%s", error);
error            2985 ext/phar/phar_object.c 			efree(error);
error            2999 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, stub, stub_len, 1, &error TSRMLS_CC);
error            3005 ext/phar/phar_object.c 	if (error) {
error            3006 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3007 ext/phar/phar_object.c 		efree(error);
error            3024 ext/phar/phar_object.c 	char *error, *key = NULL;
error            3059 ext/phar/phar_object.c 			phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3060 ext/phar/phar_object.c 			if (error) {
error            3061 ext/phar/phar_object.c 				zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3062 ext/phar/phar_object.c 				efree(error);
error            3306 ext/phar/phar_object.c 	char *error;
error            3368 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3370 ext/phar/phar_object.c 	if (error) {
error            3371 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error);
error            3372 ext/phar/phar_object.c 		efree(error);
error            3382 ext/phar/phar_object.c 	char *error;
error            3412 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3414 ext/phar/phar_object.c 	if (error) {
error            3415 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error);
error            3416 ext/phar/phar_object.c 		efree(error);
error            3428 ext/phar/phar_object.c 	char *oldfile, *newfile, *error;
error            3508 ext/phar/phar_object.c 		if (FAILURE == phar_copy_entry_fp(oldentry, &newentry, &error TSRMLS_CC)) {
error            3511 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3512 ext/phar/phar_object.c 			efree(error);
error            3519 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3521 ext/phar/phar_object.c 	if (error) {
error            3522 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3523 ext/phar/phar_object.c 		efree(error);
error            3572 ext/phar/phar_object.c 	char *fname, *error;
error            3583 ext/phar/phar_object.c 	if (!(entry = phar_get_entry_info_dir(phar_obj->arc.archive, fname, fname_len, 1, &error, 0 TSRMLS_CC))) {
error            3584 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Entry %s does not exist%s%s", fname, error?", ":"", error?error:"");
error            3619 ext/phar/phar_object.c 	char *error;
error            3629 ext/phar/phar_object.c 	if (!(data = phar_get_or_create_entry_data((*pphar)->fname, (*pphar)->fname_len, filename, filename_len, "w+b", 0, &error, 1 TSRMLS_CC))) {
error            3630 ext/phar/phar_object.c 		if (error) {
error            3631 ext/phar/phar_object.c 			zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Entry %s does not exist and cannot be created: %s", filename, error);
error            3632 ext/phar/phar_object.c 			efree(error);
error            3638 ext/phar/phar_object.c 		if (error) {
error            3639 ext/phar/phar_object.c 			efree(error);
error            3665 ext/phar/phar_object.c 		phar_flush(*pphar, 0, 0, 0, &error TSRMLS_CC);
error            3667 ext/phar/phar_object.c 		if (error) {
error            3668 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3669 ext/phar/phar_object.c 			efree(error);
error            3679 ext/phar/phar_object.c 	char *error;
error            3682 ext/phar/phar_object.c 	if (!(data = phar_get_or_create_entry_data((*pphar)->fname, (*pphar)->fname_len, dirname, dirname_len, "w+b", 2, &error, 1 TSRMLS_CC))) {
error            3683 ext/phar/phar_object.c 		if (error) {
error            3684 ext/phar/phar_object.c 			zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "Directory %s does not exist and cannot be created: %s", dirname, error);
error            3685 ext/phar/phar_object.c 			efree(error);
error            3692 ext/phar/phar_object.c 		if (error) {
error            3693 ext/phar/phar_object.c 			efree(error);
error            3701 ext/phar/phar_object.c 		phar_flush(*pphar, 0, 0, 0, &error TSRMLS_CC);
error            3703 ext/phar/phar_object.c 		if (error) {
error            3704 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3705 ext/phar/phar_object.c 			efree(error);
error            3755 ext/phar/phar_object.c 	char *fname, *error;
error            3787 ext/phar/phar_object.c 			phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3789 ext/phar/phar_object.c 			if (error) {
error            3790 ext/phar/phar_object.c 				zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3791 ext/phar/phar_object.c 				efree(error);
error            4028 ext/phar/phar_object.c 	char *error;
error            4054 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            4056 ext/phar/phar_object.c 	if (error) {
error            4057 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4058 ext/phar/phar_object.c 		efree(error);
error            4068 ext/phar/phar_object.c 	char *error;
error            4081 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            4083 ext/phar/phar_object.c 		if (error) {
error            4084 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4085 ext/phar/phar_object.c 			efree(error);
error            4130 ext/phar/phar_object.c 			spprintf(error, 4096, "Cannot extract \"%s...\" to \"%s...\", extracted filename is too long for filesystem", tmp, fullpath);
error            4133 ext/phar/phar_object.c 			spprintf(error, 4096, "Cannot extract \"%s\" to \"%s...\", extracted filename is too long for filesystem", entry->filename, fullpath);
error            4140 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\", internal error", entry->filename);
error            4146 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", openbasedir/safe mode restrictions in effect", entry->filename, fullpath);
error            4153 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", path already exists", entry->filename, fullpath);
error            4170 ext/phar/phar_object.c 				spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath);
error            4176 ext/phar/phar_object.c 				spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath);
error            4202 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\", could not open for writing \"%s\"", entry->filename, fullpath);
error            4208 ext/phar/phar_object.c 		if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) {
error            4209 ext/phar/phar_object.c 			if (error) {
error            4210 ext/phar/phar_object.c 				spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to open internal file pointer: %s", entry->filename, fullpath, *error);
error            4212 ext/phar/phar_object.c 				spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to open internal file pointer", entry->filename, fullpath);
error            4221 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to seek internal file pointer", entry->filename, fullpath);
error            4228 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", copying contents failed", entry->filename, fullpath);
error            4238 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", setting file permissions failed", entry->filename, fullpath);
error            4253 ext/phar/phar_object.c 	char *error = NULL;
error            4336 ext/phar/phar_object.c 						if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) {
error            4338 ext/phar/phar_object.c 								"Extraction from phar \"%s\" failed: %s", phar_obj->arc.archive->fname, error);
error            4339 ext/phar/phar_object.c 							efree(error);
error            4357 ext/phar/phar_object.c 		if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) {
error            4359 ext/phar/phar_object.c 				"Extraction from phar \"%s\" failed: %s", phar_obj->arc.archive->fname, error);
error            4360 ext/phar/phar_object.c 			efree(error);
error            4380 ext/phar/phar_object.c 			if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) {
error            4382 ext/phar/phar_object.c 					"Extraction from phar \"%s\" failed: %s", phar->fname, error);
error            4383 ext/phar/phar_object.c 				efree(error);
error            4398 ext/phar/phar_object.c 	char *fname, *arch, *entry, *error;
error            4422 ext/phar/phar_object.c 	if (phar_open_from_filename(arch, arch_len, NULL, 0, REPORT_ERRORS, &phar_data, &error TSRMLS_CC) == FAILURE) {
error            4425 ext/phar/phar_object.c 		if (error) {
error            4427 ext/phar/phar_object.c 				"Cannot open phar file '%s': %s", fname, error);
error            4428 ext/phar/phar_object.c 			efree(error);
error            4436 ext/phar/phar_object.c 	if ((entry_info = phar_get_entry_info_dir(phar_data, entry, entry_len, 1, &error, 1 TSRMLS_CC)) == NULL) {
error            4438 ext/phar/phar_object.c 			"Cannot access phar file entry '%s' in archive '%s'%s%s", entry, arch, error ? ", " : "", error ? error : "");
error            4587 ext/phar/phar_object.c 	char *error;
error            4636 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            4638 ext/phar/phar_object.c 	if (error) {
error            4639 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4640 ext/phar/phar_object.c 		efree(error);
error            4690 ext/phar/phar_object.c 	char *error;
error            4730 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            4732 ext/phar/phar_object.c 	if (error) {
error            4733 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4734 ext/phar/phar_object.c 		efree(error);
error            4744 ext/phar/phar_object.c 	char *error;
error            4779 ext/phar/phar_object.c 		phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            4781 ext/phar/phar_object.c 		if (error) {
error            4782 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4783 ext/phar/phar_object.c 			efree(error);
error            4800 ext/phar/phar_object.c 	char *error;
error            4822 ext/phar/phar_object.c 	if (SUCCESS != phar_open_entry_fp(link, &error, 0 TSRMLS_CC)) {
error            4824 ext/phar/phar_object.c 			"Phar error: Cannot retrieve contents, \"%s\" in phar \"%s\": %s", entry_obj->ent.entry->filename, entry_obj->ent.entry->phar->fname, error);
error            4825 ext/phar/phar_object.c 		efree(error);
error            4851 ext/phar/phar_object.c 	char *error;
error            4906 ext/phar/phar_object.c 				if (SUCCESS != phar_open_entry_fp(entry_obj->ent.entry, &error, 1 TSRMLS_CC)) {
error            4908 ext/phar/phar_object.c 						"Phar error: Cannot decompress bzip2-compressed file \"%s\" in phar \"%s\" in order to compress with gzip: %s", entry_obj->ent.entry->filename, entry_obj->ent.entry->phar->fname, error);
error            4909 ext/phar/phar_object.c 					efree(error);
error            4937 ext/phar/phar_object.c 				if (SUCCESS != phar_open_entry_fp(entry_obj->ent.entry, &error, 1 TSRMLS_CC)) {
error            4939 ext/phar/phar_object.c 						"Phar error: Cannot decompress gzip-compressed file \"%s\" in phar \"%s\" in order to compress with bzip2: %s", entry_obj->ent.entry->filename, entry_obj->ent.entry->phar->fname, error);
error            4940 ext/phar/phar_object.c 					efree(error);
error            4961 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            4963 ext/phar/phar_object.c 	if (error) {
error            4964 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4965 ext/phar/phar_object.c 		efree(error);
error            4977 ext/phar/phar_object.c 	char *error;
error            5040 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            5042 ext/phar/phar_object.c 	if (error) {
error            5043 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            5044 ext/phar/phar_object.c 		efree(error);
error              31 ext/phar/phar_path_check.c 		*error = "current directory reference";
error              34 ext/phar/phar_path_check.c 		*error = "upper directory reference";
error              88 ext/phar/phar_path_check.c 			*error = "back-slash";
error              96 ext/phar/phar_path_check.c 			*error = "star";
error             108 ext/phar/phar_path_check.c 			*error = NULL;
error             117 ext/phar/phar_path_check.c 			*error ="illegal character";
error             134 ext/phar/phar_path_check.c 				*error ="illegal character";
error             137 ext/phar/phar_path_check.c 			*error = NULL;
error             157 ext/phar/phar_path_check.c 			*error = "double slash";
error             170 ext/phar/phar_path_check.c 			*error = "current directory reference";
error             178 ext/phar/phar_path_check.c 			*error = "upper directory reference";
error              62 ext/phar/stream.c 	char *arch = NULL, *entry = NULL, *error;
error             116 ext/phar/stream.c 		if (phar_open_or_create_filename(resource->host, arch_len, NULL, 0, 0, options, &phar, &error TSRMLS_CC) == FAILURE)
error             118 ext/phar/stream.c 			if (error) {
error             120 ext/phar/stream.c 					php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             122 ext/phar/stream.c 				efree(error);
error             128 ext/phar/stream.c 			if (error) {
error             129 ext/phar/stream.c 				spprintf(&error, 0, "Cannot open cached phar '%s' as writeable, copy on write failed", resource->host);
error             131 ext/phar/stream.c 					php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             133 ext/phar/stream.c 				efree(error);
error             139 ext/phar/stream.c 		if (phar_open_from_filename(resource->host, arch_len, NULL, 0, options, NULL, &error TSRMLS_CC) == FAILURE)
error             141 ext/phar/stream.c 			if (error) {
error             143 ext/phar/stream.c 					php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             145 ext/phar/stream.c 				efree(error);
error             163 ext/phar/stream.c 	char *error;
error             193 ext/phar/stream.c 		if (NULL == (idata = phar_get_or_create_entry_data(resource->host, host_len, internal_file, strlen(internal_file), mode, 0, &error, 1 TSRMLS_CC))) {
error             194 ext/phar/stream.c 			if (error) {
error             195 ext/phar/stream.c 				php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             196 ext/phar/stream.c 				efree(error);
error             204 ext/phar/stream.c 		if (error) {
error             205 ext/phar/stream.c 			efree(error);
error             248 ext/phar/stream.c 				if ((FAILURE == phar_get_entry_data(&idata, resource->host, host_len, ".phar/stub.php", sizeof(".phar/stub.php")-1, "r", 0, &error, 0 TSRMLS_CC)) || !idata) {
error             286 ext/phar/stream.c 		if ((FAILURE == phar_get_entry_data(&idata, resource->host, host_len, internal_file, strlen(internal_file), "r", 0, &error, 0 TSRMLS_CC)) || !idata) {
error             288 ext/phar/stream.c 			if (error) {
error             289 ext/phar/stream.c 				php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             290 ext/phar/stream.c 				efree(error);
error             311 ext/phar/stream.c 	if (!idata->internal_file->is_crc_checked && phar_postprocess_file(idata, idata->internal_file->crc32, &error, 2 TSRMLS_CC) != SUCCESS) {
error             312 ext/phar/stream.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             313 ext/phar/stream.c 		efree(error);
error             459 ext/phar/stream.c 	char *error;
error             465 ext/phar/stream.c 		ret = phar_flush(data->phar, 0, 0, 0, &error TSRMLS_CC);
error             466 ext/phar/stream.c 		if (error) {
error             467 ext/phar/stream.c 			php_stream_wrapper_log_error(stream->wrapper, REPORT_ERRORS TSRMLS_CC, "%s", error);
error             468 ext/phar/stream.c 			efree(error);
error             570 ext/phar/stream.c 	char *internal_file, *error;
error             596 ext/phar/stream.c 	if (FAILURE == phar_get_archive(&phar, resource->host, host_len, NULL, 0, &error TSRMLS_CC)) {
error             598 ext/phar/stream.c 		if (error) {
error             599 ext/phar/stream.c 			efree(error);
error             603 ext/phar/stream.c 	if (error) {
error             604 ext/phar/stream.c 		efree(error);
error             692 ext/phar/stream.c 	char *internal_file, *error;
error             731 ext/phar/stream.c 	if (FAILURE == phar_get_entry_data(&idata, resource->host, host_len, internal_file, internal_file_len, "r", 0, &error, 1 TSRMLS_CC)) {
error             733 ext/phar/stream.c 		if (error) {
error             734 ext/phar/stream.c 			php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "unlink of \"%s\" failed: %s", url, error);
error             735 ext/phar/stream.c 			efree(error);
error             743 ext/phar/stream.c 	if (error) {
error             744 ext/phar/stream.c 		efree(error);
error             756 ext/phar/stream.c 	phar_entry_remove(idata, &error TSRMLS_CC);
error             757 ext/phar/stream.c 	if (error) {
error             758 ext/phar/stream.c 		php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error);
error             759 ext/phar/stream.c 		efree(error);
error             768 ext/phar/stream.c 	char *error;
error             775 ext/phar/stream.c 	error = NULL;
error             781 ext/phar/stream.c 	if (SUCCESS != phar_get_archive(&pfrom, resource_from->host, strlen(resource_from->host), NULL, 0, &error TSRMLS_CC)) {
error             783 ext/phar/stream.c 		if (error) {
error             784 ext/phar/stream.c 			efree(error);
error             798 ext/phar/stream.c 	if (SUCCESS != phar_get_archive(&pto, resource_to->host, strlen(resource_to->host), NULL, 0, &error TSRMLS_CC)) {
error             799 ext/phar/stream.c 		if (error) {
error             800 ext/phar/stream.c 			efree(error);
error             848 ext/phar/stream.c 	if (SUCCESS != phar_get_archive(&phar, resource_from->host, host_len, NULL, 0, &error TSRMLS_CC)) {
error             851 ext/phar/stream.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\": %s", url_from, url_to, error);
error             852 ext/phar/stream.c 		efree(error);
error             886 ext/phar/stream.c 		if (FAILURE == phar_copy_entry_fp(source, entry, &error TSRMLS_CC)) {
error             889 ext/phar/stream.c 			php_error_docref(NULL TSRMLS_CC, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\": %s", url_from, url_to, error);
error             890 ext/phar/stream.c 			efree(error);
error             999 ext/phar/stream.c 		phar_flush(phar, 0, 0, 0, &error TSRMLS_CC);
error            1000 ext/phar/stream.c 		if (error) {
error            1003 ext/phar/stream.c 			php_error_docref(NULL TSRMLS_CC, E_WARNING, "phar error: cannot rename \"%s\" to \"%s\": %s", url_from, url_to, error);
error            1004 ext/phar/stream.c 			efree(error);
error             127 ext/phar/tar.c 	int ret = phar_create_or_parse_filename(fname, fname_len, alias, alias_len, is_data, options, &phar, error TSRMLS_CC);
error             151 ext/phar/tar.c 	if (error) {
error             152 ext/phar/tar.c 		spprintf(error, 4096, "phar tar error: \"%s\" already exists as a regular phar and must be deleted from disk prior to creating as a tar-based phar", fname);
error             205 ext/phar/tar.c 	if (error) {
error             206 ext/phar/tar.c 		*error = NULL;
error             215 ext/phar/tar.c 		if (error) {
error             216 ext/phar/tar.c 			spprintf(error, 4096, "phar error: \"%s\" is not a tar file or is truncated", fname);
error             262 ext/phar/tar.c 				if (error) {
error             263 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" has signature that is larger than 511 bytes, cannot process", fname);
error             273 ext/phar/tar.c 				if (error) {
error             274 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" signature cannot be read", fname);
error             288 ext/phar/tar.c 			if (FAILURE == phar_verify_signature(fp, php_stream_tell(fp) - size - 512, myphar->sig_flags, buf + 8, size - 8, fname, &myphar->signature, &myphar->sig_len, error TSRMLS_CC)) {
error             289 ext/phar/tar.c 				if (error) {
error             290 ext/phar/tar.c 					char *save = *error;
error             291 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" signature cannot be verified: %s", fname, save);
error             302 ext/phar/tar.c 					if (error) {
error             303 ext/phar/tar.c 						spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             314 ext/phar/tar.c 				if (error) {
error             315 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             329 ext/phar/tar.c 			if (error) {
error             330 ext/phar/tar.c 				spprintf(error, 4096, "phar error: \"%s\" has entries after signature, invalid phar", fname);
error             343 ext/phar/tar.c 				if (error) {
error             344 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (invalid entry size)", fname);
error             355 ext/phar/tar.c 				if (error) {
error             356 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             371 ext/phar/tar.c 				if (error) {
error             372 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             383 ext/phar/tar.c 				if (error) {
error             384 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             439 ext/phar/tar.c 			if (error) {
error             440 ext/phar/tar.c 				spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (checksum mismatch of file \"%s\")", fname, entry.filename);
error             471 ext/phar/tar.c 				if (error) {
error             472 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file - hard link to non-existent file \"%s\"", fname, hdr->linkname);
error             492 ext/phar/tar.c 				if (error) {
error             493 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" has invalid metadata in magic file \"%s\"", fname, entry.filename);
error             504 ext/phar/tar.c 				if (error) {
error             505 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" has alias that is larger than 511 bytes, cannot process", fname);
error             524 ext/phar/tar.c 					if (error) {
error             525 ext/phar/tar.c 						spprintf(error, 4096, "phar error: invalid alias \"%s\" in tar-based phar \"%s\"", buf, fname);
error             538 ext/phar/tar.c 				if (error) {
error             539 ext/phar/tar.c 					spprintf(error, 4096, "phar error: Unable to read alias from tar-based phar \"%s\"", fname);
error             554 ext/phar/tar.c 				if (error) {
error             555 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             566 ext/phar/tar.c 			if (error) {
error             567 ext/phar/tar.c 				spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             585 ext/phar/tar.c 		if (error) {
error             586 ext/phar/tar.c 			spprintf(error, 0, "tar-based phar \"%s\" does not have a signature", fname);
error             612 ext/phar/tar.c 		if (error) {
error             613 ext/phar/tar.c 			spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\" to phar registry", fname);
error             629 ext/phar/tar.c 				if (error) {
error             630 ext/phar/tar.c 					spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\", alias is already in use", fname);
error             644 ext/phar/tar.c 					if (error) {
error             645 ext/phar/tar.c 						spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\", alias is already in use", fname);
error             675 ext/phar/tar.c 	char **error;
error             705 ext/phar/tar.c 			if (fp->error) {
error             706 ext/phar/tar.c 				spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, filename \"%s\" is too long for tar file format", entry->phar->fname, entry->filename);
error             715 ext/phar/tar.c 			if (fp->error) {
error             716 ext/phar/tar.c 				spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, filename \"%s\" is too long for tar file format", entry->phar->fname, entry->filename);
error             729 ext/phar/tar.c 		if (fp->error) {
error             730 ext/phar/tar.c 			spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, filename \"%s\" is too large for tar file format", entry->phar->fname, entry->filename);
error             736 ext/phar/tar.c 		if (fp->error) {
error             737 ext/phar/tar.c 			spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, file modification time of file \"%s\" is too large for tar file format", entry->phar->fname, entry->filename);
error             755 ext/phar/tar.c 		if (fp->error) {
error             756 ext/phar/tar.c 			spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, checksum of file \"%s\" is too large for tar file format", entry->phar->fname, entry->filename);
error             765 ext/phar/tar.c 		if (fp->error) {
error             766 ext/phar/tar.c 			spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, header for  file \"%s\" could not be written", entry->phar->fname, entry->filename);
error             775 ext/phar/tar.c 		if (FAILURE == phar_open_entry_fp(entry, fp->error, 0 TSRMLS_CC)) {
error             780 ext/phar/tar.c 			if (fp->error) {
error             781 ext/phar/tar.c 				spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, contents of file \"%s\" could not be written, seek failed", entry->phar->fname, entry->filename);
error             787 ext/phar/tar.c 			if (fp->error) {
error             788 ext/phar/tar.c 				spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, contents of file \"%s\" could not be written", entry->phar->fname, entry->filename);
error             851 ext/phar/tar.c 		spprintf(error, 0, "phar error: unable to create temporary file");
error             855 ext/phar/tar.c 		spprintf(error, 0, "phar tar error: unable to write metadata to magic metadata file \"%s\"", entry->filename);
error             868 ext/phar/tar.c 	char *lookfor, **error = i->error;
error             873 ext/phar/tar.c 			return phar_tar_setmetadata(entry->phar->metadata, entry, error TSRMLS_CC);
error             899 ext/phar/tar.c 		ret = phar_tar_setmetadata(entry->metadata, metadata, error TSRMLS_CC);
error             912 ext/phar/tar.c 		spprintf(error, 0, "phar tar error: unable to add magic metadata file to manifest for file \"%s\"", entry->filename);
error             916 ext/phar/tar.c 	return phar_tar_setmetadata(entry->metadata, metadata, error TSRMLS_CC);
error             940 ext/phar/tar.c 		if (error) {
error             941 ext/phar/tar.c 			spprintf(error, 0, "internal error: attempt to flush cached tar-based phar \"%s\"", phar->fname);
error             956 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error             960 ext/phar/tar.c 			if (error) {
error             961 ext/phar/tar.c 				spprintf(error, 0, "unable to set alias in tar-based phar \"%s\"", phar->fname);
error             969 ext/phar/tar.c 			if (error) {
error             970 ext/phar/tar.c 				spprintf(error, 0, "unable to set alias in tar-based phar \"%s\"", phar->fname);
error             984 ext/phar/tar.c 				if (error) {
error             985 ext/phar/tar.c 					spprintf(error, 0, "unable to access resource to copy stub to new tar-based phar \"%s\"", phar->fname);
error             997 ext/phar/tar.c 				if (error) {
error             998 ext/phar/tar.c 					spprintf(error, 0, "unable to read resource to copy stub to new tar-based phar \"%s\"", phar->fname);
error            1010 ext/phar/tar.c 			if (error) {
error            1011 ext/phar/tar.c 				spprintf(error, 0, "illegal stub for tar-based phar \"%s\"", phar->fname);
error            1024 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1031 ext/phar/tar.c 			if (error) {
error            1032 ext/phar/tar.c 				spprintf(error, 0, "unable to create stub from string in new tar-based phar \"%s\"", phar->fname);
error            1052 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1057 ext/phar/tar.c 			if (error) {
error            1058 ext/phar/tar.c 				spprintf(error, 0, "unable to %s stub in%star-based phar \"%s\", failed", user_stub ? "overwrite" : "create", user_stub ? " " : " new ", phar->fname);
error            1072 ext/phar/tar.c 					if (error) {
error            1073 ext/phar/tar.c 						spprintf(error, 0, "unable to create stub in tar-based phar \"%s\"", phar->fname);
error            1085 ext/phar/tar.c 				if (error) {
error            1086 ext/phar/tar.c 					spprintf(error, 0, "unable to overwrite stub in tar-based phar \"%s\"", phar->fname);
error            1104 ext/phar/tar.c 		if (error) {
error            1105 ext/phar/tar.c 			spprintf(error, 0, "unable to create temporary file");
error            1115 ext/phar/tar.c 	pass.error = error;
error            1122 ext/phar/tar.c 			if (ZEND_HASH_APPLY_KEEP != phar_tar_setmetadata(phar->metadata, mentry, error TSRMLS_CC)) {
error            1138 ext/phar/tar.c 				spprintf(error, 0, "phar tar error: unable to add magic metadata file to manifest for phar archive \"%s\"", phar->fname);
error            1145 ext/phar/tar.c 			if (ZEND_HASH_APPLY_KEEP != phar_tar_setmetadata(phar->metadata, mentry, error TSRMLS_CC)) {
error            1157 ext/phar/tar.c 	if (error && *error) {
error            1171 ext/phar/tar.c 		if (FAILURE == phar_create_signature(phar, newfile, &signature, &signature_length, error TSRMLS_CC)) {
error            1172 ext/phar/tar.c 			if (error) {
error            1173 ext/phar/tar.c 				char *save = *error;
error            1174 ext/phar/tar.c 				spprintf(error, 0, "phar error: unable to write signature to tar-based phar: %s", save);
error            1190 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1207 ext/phar/tar.c 			if (error) {
error            1208 ext/phar/tar.c 				spprintf(error, 0, "phar error: unable to write signature to tar-based phar %s", phar->fname);
error            1223 ext/phar/tar.c 		if (error && *error) {
error            1243 ext/phar/tar.c 	if (error && *error) {
error            1269 ext/phar/tar.c 			if (error) {
error            1270 ext/phar/tar.c 				spprintf(error, 0, "unable to open new phar \"%s\" for writing", phar->fname);
error            1293 ext/phar/tar.c 				if (error) {
error            1294 ext/phar/tar.c 					spprintf(error, 4096, "unable to compress all contents of phar \"%s\" using zlib, PHP versions older than 5.2.6 have a buggy zlib", phar->fname);
error             368 ext/phar/util.c 	if (error) {
error             369 ext/phar/util.c 		*error = NULL;
error             372 ext/phar/util.c 	if (FAILURE == phar_get_archive(&phar, fname, fname_len, NULL, 0, error TSRMLS_CC)) {
error             377 ext/phar/util.c 		if (error) {
error             378 ext/phar/util.c 			spprintf(error, 4096, "phar error: file \"%s\" in phar \"%s\" cannot be opened for writing, disabled by ini setting", path, fname);
error             384 ext/phar/util.c 		if (error) {
error             385 ext/phar/util.c 			spprintf(error, 4096, "phar error: file \"\" in phar \"%s\" cannot be empty", fname);
error             391 ext/phar/util.c 		if ((entry = phar_get_entry_info_dir(phar, path, path_len, allow_dir, for_create && !PHAR_G(readonly) && !phar->is_data ? NULL : error, security TSRMLS_CC)) == NULL) {
error             398 ext/phar/util.c 		if ((entry = phar_get_entry_info(phar, path, path_len, for_create && !PHAR_G(readonly) && !phar->is_data ? NULL : error, security TSRMLS_CC)) == NULL) {
error             408 ext/phar/util.c 			if (error) {
error             409 ext/phar/util.c 				spprintf(error, 4096, "phar error: file \"%s\" in phar \"%s\" cannot be opened for writing, could not make cached phar writeable", path, fname);
error             418 ext/phar/util.c 		if (error) {
error             419 ext/phar/util.c 			spprintf(error, 4096, "phar error: file \"%s\" in phar \"%s\" cannot be opened for reading, writable file pointers are open", path, fname);
error             425 ext/phar/util.c 		if (error) {
error             426 ext/phar/util.c 			spprintf(error, 4096, "phar error: file \"%s\" in phar \"%s\" cannot be opened for writing, readable file pointers are open", path, fname);
error             458 ext/phar/util.c 			if (FAILURE == phar_create_writeable_entry(phar, entry, error TSRMLS_CC)) {
error             473 ext/phar/util.c 				if (FAILURE == phar_create_writeable_entry(phar, entry, error TSRMLS_CC)) {
error             477 ext/phar/util.c 				if (FAILURE == phar_separate_entry_fp(entry, error TSRMLS_CC)) {
error             482 ext/phar/util.c 			if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) {
error             528 ext/phar/util.c 	if (FAILURE == phar_get_archive(&phar, fname, fname_len, NULL, 0, error TSRMLS_CC)) {
error             532 ext/phar/util.c 	if (FAILURE == phar_get_entry_data(&ret, fname, fname_len, path, path_len, mode, allow_dir, error, security TSRMLS_CC)) {
error             539 ext/phar/util.c 		if (error) {
error             540 ext/phar/util.c 			spprintf(error, 0, "phar error: invalid path \"%s\" contains %s", path, pcr_error);
error             546 ext/phar/util.c 		if (error) {
error             547 ext/phar/util.c 			spprintf(error, 4096, "phar error: file \"%s\" in phar \"%s\" cannot be created, could not make cached phar writeable", path, fname);
error             562 ext/phar/util.c 		if (error) {
error             563 ext/phar/util.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error             597 ext/phar/util.c 		if (error) {
error             598 ext/phar/util.c 			spprintf(error, 0, "phar error: unable to add new entry \"%s\" to phar \"%s\"", etemp.filename, phar->fname);
error             651 ext/phar/util.c 	if (FAILURE == phar_open_entry_fp(source, error, 1 TSRMLS_CC)) {
error             666 ext/phar/util.c 		spprintf(error, 0, "phar error: unable to create temporary file");
error             679 ext/phar/util.c 		if (error) {
error             680 ext/phar/util.c 			spprintf(error, 4096, "phar error: unable to copy contents of file \"%s\" to \"%s\" in phar archive \"%s\"", source->filename, dest->filename, source->phar->fname);
error             703 ext/phar/util.c 			return phar_open_entry_fp(link_entry, error, 1 TSRMLS_CC);
error             725 ext/phar/util.c 			spprintf(error, 4096, "phar error: Cannot open phar archive \"%s\" for reading", phar->fname);
error             735 ext/phar/util.c 		if (FAILURE == phar_postprocess_file(&dummy, entry->crc32, error, 1 TSRMLS_CC)) {
error             744 ext/phar/util.c 			spprintf(error, 4096, "phar error: Cannot open temporary file for decompressing phar archive \"%s\" file \"%s\"", phar->fname, entry->filename);
error             753 ext/phar/util.c 	if (FAILURE == phar_postprocess_file(&dummy, entry->crc32, error, 1 TSRMLS_CC)) {
error             766 ext/phar/util.c 		spprintf(error, 4096, "phar error: unable to read phar \"%s\" (cannot create %s filter while decompressing file \"%s\")", phar->fname, phar_decompress_filter(entry, 1), entry->filename);
error             779 ext/phar/util.c 			spprintf(error, 4096, "phar error: internal corruption of phar \"%s\" (actual filesize mismatch on file \"%s\")", phar->fname, entry->filename);
error             790 ext/phar/util.c 		spprintf(error, 4096, "phar error: internal corruption of phar \"%s\" (actual filesize mismatch on file \"%s\")", phar->fname, entry->filename);
error             800 ext/phar/util.c 	if (FAILURE == phar_postprocess_file(&dummy, entry->crc32, error, 0 TSRMLS_CC)) {
error             826 ext/phar/util.c 	if (error) {
error             827 ext/phar/util.c 		*error = NULL;
error             840 ext/phar/util.c 		if (error) {
error             841 ext/phar/util.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error             865 ext/phar/util.c 	if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) {
error             875 ext/phar/util.c 		spprintf(error, 0, "phar error: unable to create temporary file");
error             886 ext/phar/util.c 		if (error) {
error             887 ext/phar/util.c 			spprintf(error, 4096, "phar error: cannot separate entry file \"%s\" contents in phar archive \"%s\" for write access", entry->filename, entry->phar->fname);
error             911 ext/phar/util.c 	if (error) {
error             912 ext/phar/util.c 		*error = NULL;
error             915 ext/phar/util.c 	if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) {
error             919 ext/phar/util.c 		spprintf(error, 4096, "phar error: cannot seek to start of file \"%s\" in phar \"%s\"", entry->filename, phar->fname);
error             970 ext/phar/util.c 	if (error) {
error             971 ext/phar/util.c 		*error = NULL;
error             981 ext/phar/util.c 				if (error) {
error             982 ext/phar/util.c 					spprintf(error, 0, "alias \"%s\" is already used for archive \"%s\" cannot be overloaded with \"%s\"", alias, PHAR_G(last_phar)->fname, fname);
error            1011 ext/phar/util.c 				if (error) {
error            1012 ext/phar/util.c 					spprintf(error, 0, "alias \"%s\" is already used for archive \"%s\" cannot be overloaded with \"%s\"", alias, (*fd_ptr)->fname, fname);
error            1015 ext/phar/util.c 					if (error) {
error            1016 ext/phar/util.c 						efree(*error);
error            1017 ext/phar/util.c 						*error = NULL;
error            1051 ext/phar/util.c 					if (error) {
error            1052 ext/phar/util.c 						spprintf(error, 0, "alias \"%s\" is already used for archive \"%s\" cannot be overloaded with \"%s\"", alias, (*fd_ptr)->fname, fname);
error            1081 ext/phar/util.c 					if (error) {
error            1082 ext/phar/util.c 						spprintf(error, 0, "alias \"%s\" is already used for archive \"%s\" cannot be overloaded with \"%s\"", alias, (*fd_ptr)->fname, fname);
error            1211 ext/phar/util.c 	return phar_get_entry_info_dir(phar, path, path_len, 0, error, security TSRMLS_CC);
error            1231 ext/phar/util.c 	if (error) {
error            1232 ext/phar/util.c 		*error = NULL;
error            1236 ext/phar/util.c 		if (error) {
error            1237 ext/phar/util.c 			spprintf(error, 4096, "phar error: cannot directly access magic \".phar\" directory or files within it");
error            1243 ext/phar/util.c 		if (error) {
error            1244 ext/phar/util.c 			spprintf(error, 4096, "phar error: invalid path \"%s\" must not be empty", path);
error            1250 ext/phar/util.c 		if (error) {
error            1251 ext/phar/util.c 			spprintf(error, 4096, "phar error: invalid path \"%s\" contains %s", path, pcr_error);
error            1273 ext/phar/util.c 			if (error) {
error            1274 ext/phar/util.c 				spprintf(error, 4096, "phar error: path \"%s\" is a directory", path);
error            1280 ext/phar/util.c 			if (error) {
error            1281 ext/phar/util.c 				spprintf(error, 4096, "phar error: path \"%s\" exists and is a not a directory", path);
error            1324 ext/phar/util.c 					if (error) {
error            1325 ext/phar/util.c 						spprintf(error, 4096, "phar internal error: mounted path \"%s\" could not be retrieved from manifest", str_key);
error            1332 ext/phar/util.c 					if (error) {
error            1333 ext/phar/util.c 						spprintf(error, 4096, "phar internal error: mounted path \"%s\" is not properly initialized as a mounted path", str_key);
error            1349 ext/phar/util.c 					if (error) {
error            1350 ext/phar/util.c 						spprintf(error, 4096, "phar error: path \"%s\" is a directory", path);
error            1358 ext/phar/util.c 					if (error) {
error            1359 ext/phar/util.c 						spprintf(error, 4096, "phar error: path \"%s\" exists and is a not a directory", path);
error            1367 ext/phar/util.c 					if (error) {
error            1368 ext/phar/util.c 						spprintf(error, 4096, "phar error: path \"%s\" exists as file \"%s\" and could not be mounted", path, test);
error            1376 ext/phar/util.c 					if (error) {
error            1377 ext/phar/util.c 						spprintf(error, 4096, "phar error: path \"%s\" exists as file \"%s\" and could not be retrieved after being mounted", path, test);
error            1545 ext/phar/util.c 				if (error) {
error            1546 ext/phar/util.c 					spprintf(error, 0, "openssl not loaded");
error            1564 ext/phar/util.c 				if (error) {
error            1565 ext/phar/util.c 					spprintf(error, 0, "openssl public key could not be read");
error            1579 ext/phar/util.c 				if (error) {
error            1580 ext/phar/util.c 					spprintf(error, 0, "openssl signature could not be verified");
error            1596 ext/phar/util.c 				if (error) {
error            1597 ext/phar/util.c 					spprintf(error, 0, "openssl signature could not be processed");
error            1607 ext/phar/util.c 				if (error) {
error            1608 ext/phar/util.c 					spprintf(error, 0, "openssl signature could not be processed");
error            1637 ext/phar/util.c 				if (error) {
error            1638 ext/phar/util.c 					spprintf(error, 0, "broken openssl signature");
error            1675 ext/phar/util.c 				if (error) {
error            1676 ext/phar/util.c 					spprintf(error, 0, "broken signature");
error            1708 ext/phar/util.c 				if (error) {
error            1709 ext/phar/util.c 					spprintf(error, 0, "broken signature");
error            1720 ext/phar/util.c 			if (error) {
error            1721 ext/phar/util.c 				spprintf(error, 0, "unsupported signature");
error            1749 ext/phar/util.c 				if (error) {
error            1750 ext/phar/util.c 					spprintf(error, 0, "broken signature");
error            1782 ext/phar/util.c 				if (error) {
error            1783 ext/phar/util.c 					spprintf(error, 0, "broken signature");
error            1792 ext/phar/util.c 			if (error) {
error            1793 ext/phar/util.c 				spprintf(error, 0, "broken or unsupported signature");
error            1848 ext/phar/util.c 			if (error) {
error            1849 ext/phar/util.c 				spprintf(error, 0, "unable to write to phar \"%s\" with requested hash type", phar->fname);
error            1865 ext/phar/util.c 				if (error) {
error            1866 ext/phar/util.c 					spprintf(error, 0, "unable to write to phar \"%s\" with requested openssl signature", phar->fname);
error            1875 ext/phar/util.c 				if (error) {
error            1876 ext/phar/util.c 					spprintf(error, 0, "unable to process private key");
error            1888 ext/phar/util.c 				if (error) {
error            1889 ext/phar/util.c 					spprintf(error, 0, "unable to initialize openssl signature for phar \"%s\"", phar->fname);
error            1897 ext/phar/util.c 					if (error) {
error            1898 ext/phar/util.c 						spprintf(error, 0, "unable to update the openssl signature for phar \"%s\"", phar->fname);
error            1906 ext/phar/util.c 				if (error) {
error            1907 ext/phar/util.c 					spprintf(error, 0, "unable to write phar \"%s\" with requested openssl signature", phar->fname);
error            1920 ext/phar/util.c 				if (error) {
error            1921 ext/phar/util.c 					spprintf(error, 0, "unable to write phar \"%s\" with requested openssl signature", phar->fname);
error             184 ext/phar/zip.c 			if (error) {
error             185 ext/phar/zip.c 				spprintf(error, 4096, "phar error: unable to search for end of central directory in zip-based phar \"%s\"", fname);
error             195 ext/phar/zip.c 		if (error) {
error             196 ext/phar/zip.c 			spprintf(error, 4096, "phar error: unable to read in data to search for end of central directory in zip-based phar \"%s\"", fname);
error             207 ext/phar/zip.c 				if (error) {
error             208 ext/phar/zip.c 					spprintf(error, 4096, "phar error: split archives spanning multiple zips cannot be processed in zip-based phar \"%s\"", fname);
error             214 ext/phar/zip.c 				if (error) {
error             215 ext/phar/zip.c 					spprintf(error, 4096, "phar error: corrupt zip archive, conflicting file count in end of central directory record in zip-based phar \"%s\"", fname);
error             230 ext/phar/zip.c 					if (error) {
error             231 ext/phar/zip.c 						spprintf(error, 4096, "phar error: corrupt zip archive, zip file comment truncated in zip-based phar \"%s\"", fname);
error             264 ext/phar/zip.c 	if (error) {
error             265 ext/phar/zip.c 		spprintf(error, 4096, "phar error: end of central directory not found in zip-based phar \"%s\"", fname);
error             316 ext/phar/zip.c 			if (error) { \
error             317 ext/phar/zip.c 				spprintf(error, 4096, "phar error: %s in zip-based phar \"%s\"", errmsg, mydata->fname); \
error             340 ext/phar/zip.c 			if (error) { \
error             341 ext/phar/zip.c 				spprintf(error, 4096, "phar error: %s in zip-based phar \"%s\"", errmsg, mydata->fname); \
error             437 ext/phar/zip.c 			if (FAILURE == phar_verify_signature(sigfile, php_stream_tell(sigfile), mydata->sig_flags, sig + 8, entry.uncompressed_filesize - 8, fname, &mydata->signature, &mydata->sig_len, error TSRMLS_CC)) {
error             439 ext/phar/zip.c 				if (error) {
error             442 ext/phar/zip.c 					spprintf(&save, 4096, "signature cannot be verified: %s", *error);
error             443 ext/phar/zip.c 					efree(*error);
error             656 ext/phar/zip.c 			if (error) {
error             657 ext/phar/zip.c 				spprintf(error, 4096, "phar error: invalid alias \"%s\" in zip-based phar \"%s\"", actual_alias, fname);
error             668 ext/phar/zip.c 				if (error) {
error             669 ext/phar/zip.c 					spprintf(error, 4096, "phar error: Unable to add zip-based phar \"%s\" with implicit alias, alias is already in use", fname);
error             690 ext/phar/zip.c 					if (error) {
error             691 ext/phar/zip.c 						spprintf(error, 4096, "phar error: Unable to add zip-based phar \"%s\" with explicit alias, alias is already in use", fname);
error             723 ext/phar/zip.c 	int ret = phar_create_or_parse_filename(fname, fname_len, alias, alias_len, is_data, options, &phar, error TSRMLS_CC);
error             747 ext/phar/zip.c 	if (error) {
error             748 ext/phar/zip.c 		spprintf(error, 4096, "phar zip error: phar \"%s\" already exists as a regular phar and must be deleted from disk prior to creating as a zip-based phar", fname);
error             761 ext/phar/zip.c 	char **error;
error             843 ext/phar/zip.c 		if (FAILURE == phar_open_entry_fp(entry, p->error, 0 TSRMLS_CC)) {
error             844 ext/phar/zip.c 			spprintf(p->error, 0, "unable to open file contents of file \"%s\" in zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             855 ext/phar/zip.c 			spprintf(p->error, 0, "unable to seek to start of file \"%s\" to zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             882 ext/phar/zip.c 				spprintf(p->error, 0, "unable to gzip compress file \"%s\" to zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             884 ext/phar/zip.c 				spprintf(p->error, 0, "unable to bzip2 compress file \"%s\" to zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             895 ext/phar/zip.c 			spprintf(p->error, 0, "unable to create temporary file for file \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             902 ext/phar/zip.c 			spprintf(p->error, 0, "unable to seek to start of file \"%s\" to zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             909 ext/phar/zip.c 			spprintf(p->error, 0, "unable to copy compressed file contents of file \"%s\" while creating new phar \"%s\"", entry->filename, entry->phar->fname);
error             932 ext/phar/zip.c 				spprintf(p->error, 0, "unable to seek to start of file \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             960 ext/phar/zip.c 		spprintf(p->error, 0, "unable to write local file header of file \"%s\" to zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             965 ext/phar/zip.c 		spprintf(p->error, 0, "unable to write central directory entry for file \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             971 ext/phar/zip.c 			spprintf(p->error, 0, "unable to write filename to local directory entry for directory \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             976 ext/phar/zip.c 			spprintf(p->error, 0, "unable to write filename to local directory entry for directory \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             981 ext/phar/zip.c 			spprintf(p->error, 0, "unable to write filename to central directory entry for directory \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             986 ext/phar/zip.c 			spprintf(p->error, 0, "unable to write filename to central directory entry for directory \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             991 ext/phar/zip.c 			spprintf(p->error, 0, "unable to write filename to local directory entry for file \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error             996 ext/phar/zip.c 			spprintf(p->error, 0, "unable to write filename to central directory entry for file \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error            1002 ext/phar/zip.c 		spprintf(p->error, 0, "unable to write local extra permissions file header of file \"%s\" to zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error            1007 ext/phar/zip.c 		spprintf(p->error, 0, "unable to write central extra permissions file header of file \"%s\" to zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error            1014 ext/phar/zip.c 				spprintf(p->error, 0, "unable to write compressed contents of file \"%s\" in zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error            1021 ext/phar/zip.c 			if (FAILURE == phar_open_entry_fp(entry, p->error, 0 TSRMLS_CC)) {
error            1028 ext/phar/zip.c 				spprintf(p->error, 0, "unable to write contents of file \"%s\" in zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error            1054 ext/phar/zip.c 			spprintf(p->error, 0, "unable to copy contents of file \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error            1065 ext/phar/zip.c 			spprintf(p->error, 0, "unable to write metadata as file comment for file \"%s\" while creating zip-based phar \"%s\"", entry->filename, entry->phar->fname);
error            1090 ext/phar/zip.c 			spprintf(pass->error, 0, "phar error: unable to create temporary file for the signature file");
error            1104 ext/phar/zip.c 		if (FAILURE == phar_create_signature(phar, newfile, &signature, &signature_length, pass->error TSRMLS_CC)) {
error            1105 ext/phar/zip.c 			if (pass->error) {
error            1106 ext/phar/zip.c 				char *save = *(pass->error);
error            1107 ext/phar/zip.c 				spprintf(pass->error, 0, "phar error: unable to write signature to zip-based phar: %s", save);
error            1121 ext/phar/zip.c 			spprintf(pass->error, 0, "phar error: unable to create temporary file for signature");
error            1130 ext/phar/zip.c 			if (pass->error) {
error            1131 ext/phar/zip.c 				spprintf(pass->error, 0, "phar error: unable to write signature to zip-based phar %s", phar->fname);
error            1145 ext/phar/zip.c 		if (pass->error && *(pass->error)) {
error            1172 ext/phar/zip.c 	pass.error = &temperr;
error            1181 ext/phar/zip.c 		if (error) {
error            1182 ext/phar/zip.c 			spprintf(error, 0, "internal error: attempt to flush cached zip-based phar \"%s\"", phar->fname);
error            1195 ext/phar/zip.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1199 ext/phar/zip.c 			if (error) {
error            1200 ext/phar/zip.c 				spprintf(error, 0, "unable to set alias in zip-based phar \"%s\"", phar->fname);
error            1210 ext/phar/zip.c 			if (error) {
error            1211 ext/phar/zip.c 				spprintf(error, 0, "unable to set alias in zip-based phar \"%s\"", phar->fname);
error            1221 ext/phar/zip.c 		if (FAILURE == phar_get_archive(&phar, phar->fname, phar->fname_len, phar->alias, phar->alias_len, error TSRMLS_CC)) {
error            1231 ext/phar/zip.c 				if (error) {
error            1232 ext/phar/zip.c 					spprintf(error, 0, "unable to access resource to copy stub to new zip-based phar \"%s\"", phar->fname);
error            1246 ext/phar/zip.c 				if (error) {
error            1247 ext/phar/zip.c 					spprintf(error, 0, "unable to read resource to copy stub to new zip-based phar \"%s\"", phar->fname);
error            1259 ext/phar/zip.c 			if (error) {
error            1260 ext/phar/zip.c 				spprintf(error, 0, "illegal stub for zip-based phar \"%s\"", phar->fname);
error            1273 ext/phar/zip.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1280 ext/phar/zip.c 			if (error) {
error            1281 ext/phar/zip.c 				spprintf(error, 0, "unable to create stub from string in new zip-based phar \"%s\"", phar->fname);
error            1297 ext/phar/zip.c 			if (error) {
error            1298 ext/phar/zip.c 				spprintf(error, 0, "unable to set stub in zip-based phar \"%s\"", phar->fname);
error            1310 ext/phar/zip.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1315 ext/phar/zip.c 			if (error) {
error            1316 ext/phar/zip.c 				spprintf(error, 0, "unable to %s stub in%szip-based phar \"%s\", failed", user_stub ? "overwrite" : "create", user_stub ? " " : " new ", phar->fname);
error            1330 ext/phar/zip.c 					if (error) {
error            1331 ext/phar/zip.c 						spprintf(error, 0, "unable to create stub in zip-based phar \"%s\"", phar->fname);
error            1343 ext/phar/zip.c 				if (error) {
error            1344 ext/phar/zip.c 					spprintf(error, 0, "unable to overwrite stub in zip-based phar \"%s\"", phar->fname);
error            1369 ext/phar/zip.c 		if (error) {
error            1370 ext/phar/zip.c 			spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to open temporary file", phar->fname);
error            1404 ext/phar/zip.c 		if (error) {
error            1405 ext/phar/zip.c 			spprintf(error, 4096, "phar zip flush of \"%s\" failed: %s", phar->fname, temperr);
error            1436 ext/phar/zip.c 			if (error) {
error            1437 ext/phar/zip.c 				spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write central-directory", phar->fname);
error            1450 ext/phar/zip.c 			if (error) {
error            1451 ext/phar/zip.c 				spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write end of central-directory", phar->fname);
error            1457 ext/phar/zip.c 			if (error) {
error            1458 ext/phar/zip.c 				spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write metadata to zip comment", phar->fname);
error            1467 ext/phar/zip.c 			if (error) {
error            1468 ext/phar/zip.c 				spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write end of central-directory", phar->fname);
error            1498 ext/phar/zip.c 			if (error) {
error            1499 ext/phar/zip.c 				spprintf(error, 4096, "unable to open new phar \"%s\" for writing", phar->fname);
error            1339 ext/posix/posix.c 	long error;
error            1341 ext/posix/posix.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &error) == FAILURE) {
error            1345 ext/posix/posix.c 	RETURN_STRING(strerror(error), 1);
error            1800 ext/snmp/snmp.c 		char *error = strerror(errno);
error            1801 ext/snmp/snmp.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error while reading MIB file '%s': %s", filename, error);
error            1291 ext/soap/php_http.c 		int error = 0;
error            1294 ext/soap/php_http.c 			error = 1;
error            1303 ext/soap/php_http.c 					error = 1;
error            1308 ext/soap/php_http.c 		if (error) {
error             101 ext/soap/php_xml.c 		ctxt->sax->error = NULL;
error             148 ext/soap/php_xml.c 		ctxt->sax->error = NULL;
error            2733 ext/soap/soap.c 	 			smart_str error = {0};
error            2734 ext/soap/soap.c 	 			smart_str_appends(&error,"Function (\"");
error            2735 ext/soap/soap.c 	 			smart_str_appends(&error,function);
error            2736 ext/soap/soap.c 	 			smart_str_appends(&error,"\") is not a valid method for this service");
error            2737 ext/soap/soap.c 	 			smart_str_0(&error);
error            2738 ext/soap/soap.c 				add_soap_fault(this_ptr, "Client", error.c, NULL, NULL TSRMLS_CC);
error            2739 ext/soap/soap.c 				smart_str_free(&error);
error              60 ext/sockets/php_sockets.h 	int			error;
error              79 ext/sockets/php_sockets.h 			(socket)->error = _err; \
error             396 ext/sockets/sockets.c 	php_sock->error		 = 0;
error             483 ext/sockets/sockets.c 	out_sock->error = 0;
error             561 ext/sockets/sockets.c 	if (error < -10000) {
error             562 ext/sockets/sockets.c 		error = -error - 10000;
error             565 ext/sockets/sockets.c 		buf = hstrerror(error);
error             572 ext/sockets/sockets.c 			spprintf(&(SOCKETS_G(strerror_buf)), 0, "Host lookup error %d", error);
error             577 ext/sockets/sockets.c 		buf = strerror(error);
error             585 ext/sockets/sockets.c 			NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &tmp, 0, NULL)
error             932 ext/sockets/sockets.c 	php_sock->error = 0;
error            1158 ext/sockets/sockets.c 			php_sock->error = errno;
error            1370 ext/sockets/sockets.c 	php_sock->error = 0;
error            2133 ext/sockets/sockets.c 	php_sock[0]->error		= 0;
error            2134 ext/sockets/sockets.c 	php_sock[1]->error		= 0;
error            2187 ext/sockets/sockets.c 		RETVAL_LONG(php_sock->error);
error            2207 ext/sockets/sockets.c 		php_sock->error = 0;
error            2242 ext/sockets/sockets.c 		goto error;
error            2250 ext/sockets/sockets.c 		goto error;
error            2258 ext/sockets/sockets.c error:
error             468 ext/spl/php_spl.c 	char *func_name, *error = NULL;
error             495 ext/spl/php_spl.c 		if (!zend_is_callable_ex(zcallable, NULL, IS_CALLABLE_STRICT, &func_name, &func_name_len, &fcc, &error TSRMLS_CC)) {
error             502 ext/spl/php_spl.c 						zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Passed array specifies a non static method but no object (%s)", error);
error             504 ext/spl/php_spl.c 					if (error) {
error             505 ext/spl/php_spl.c 						efree(error);
error             511 ext/spl/php_spl.c 					zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Passed array does not specify %s %smethod (%s)", alfi.func_ptr ? "a callable" : "an existing", !obj_ptr ? "static " : "", error);
error             513 ext/spl/php_spl.c 				if (error) {
error             514 ext/spl/php_spl.c 					efree(error);
error             520 ext/spl/php_spl.c 					zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Function '%s' not %s (%s)", func_name, alfi.func_ptr ? "callable" : "found", error);
error             522 ext/spl/php_spl.c 				if (error) {
error             523 ext/spl/php_spl.c 					efree(error);
error             529 ext/spl/php_spl.c 					zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Illegal value passed (%s)", error);
error             531 ext/spl/php_spl.c 				if (error) {
error             532 ext/spl/php_spl.c 					efree(error);
error             542 ext/spl/php_spl.c 		if (error) {
error             543 ext/spl/php_spl.c 			efree(error);
error             629 ext/spl/php_spl.c 	char *func_name, *error = NULL;
error             642 ext/spl/php_spl.c 	if (!zend_is_callable_ex(zcallable, NULL, IS_CALLABLE_CHECK_SYNTAX_ONLY, &func_name, &func_name_len, &fcc, &error TSRMLS_CC)) {
error             643 ext/spl/php_spl.c 		zend_throw_exception_ex(spl_ce_LogicException, 0 TSRMLS_CC, "Unable to unregister invalid function (%s)", error);
error             644 ext/spl/php_spl.c 		if (error) {
error             645 ext/spl/php_spl.c 			efree(error);
error             653 ext/spl/php_spl.c 	if (error) {
error             654 ext/spl/php_spl.c 		efree(error);
error            1206 ext/spl/spl_dllist.c 		goto error;
error            1217 ext/spl/spl_dllist.c 			goto error;
error            1224 ext/spl/spl_dllist.c 		goto error;
error            1230 ext/spl/spl_dllist.c error:
error            31736 ext/sqlite3/libsqlite/sqlite3.c   DWORD error = GetLastError();
error            31744 ext/sqlite3/libsqlite/sqlite3.c                            error,
error            31764 ext/sqlite3/libsqlite/sqlite3.c                            error,
error            31778 ext/sqlite3/libsqlite/sqlite3.c     sqlite3_snprintf(nBuf, zBuf, "OsError 0x%x (%u)", error, error);
error            32411 ext/sqlite3/libsqlite/sqlite3.c   DWORD error;
error            32417 ext/sqlite3/libsqlite/sqlite3.c      && ((error = GetLastError()) != NO_ERROR) )
error            32419 ext/sqlite3/libsqlite/sqlite3.c     pFile->lastErrno = error;
error            32517 ext/sqlite3/libsqlite/sqlite3.c   DWORD error = NO_ERROR;
error            32556 ext/sqlite3/libsqlite/sqlite3.c       error = GetLastError();
error            32568 ext/sqlite3/libsqlite/sqlite3.c       error = GetLastError();
error            32580 ext/sqlite3/libsqlite/sqlite3.c       error = GetLastError();
error            32601 ext/sqlite3/libsqlite/sqlite3.c       error = GetLastError();
error            32602 ext/sqlite3/libsqlite/sqlite3.c       OSTRACE(("error-code = %d\n", error));
error            32622 ext/sqlite3/libsqlite/sqlite3.c     pFile->lastErrno = error;
error            33749 ext/sqlite3/libsqlite/sqlite3.c   DWORD error = 0;
error            33763 ext/sqlite3/libsqlite/sqlite3.c                || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
error            33775 ext/sqlite3/libsqlite/sqlite3.c                || ((error = GetLastError()) == ERROR_ACCESS_DENIED))
error            33782 ext/sqlite3/libsqlite/sqlite3.c        ( (rc==INVALID_FILE_ATTRIBUTES) && (error==ERROR_FILE_NOT_FOUND)) ?
error            33786 ext/sqlite3/libsqlite/sqlite3.c           && (error == ERROR_FILE_NOT_FOUND)) ? SQLITE_OK :
error             398 ext/standard/scanf.c 			goto error;
error             480 ext/standard/scanf.c 				goto error;
error             484 ext/standard/scanf.c 				goto error;
error             534 ext/standard/scanf.c 			goto error;
error             541 ext/standard/scanf.c 			goto error;
error             557 ext/standard/scanf.c error:
error             374 ext/standard/type.c 	char *error;
error             388 ext/standard/type.c 		retval = zend_is_callable_ex(var, NULL, check_flags, &name, NULL, NULL, &error TSRMLS_CC);
error             392 ext/standard/type.c 		retval = zend_is_callable_ex(var, NULL, check_flags, NULL, NULL, NULL, &error TSRMLS_CC);
error             394 ext/standard/type.c 	if (error) {
error             396 ext/standard/type.c 		efree(error);
error             579 ext/xml/compat.c 	int error;
error             605 ext/xml/compat.c 	error = xmlParseChunk(parser->parser, data, data_len, is_final);
error             606 ext/xml/compat.c 	if (!error) {
error             745 ext/xmlrpc/libxmlrpc/xml_element.c           if(error) {
error             746 ext/xmlrpc/libxmlrpc/xml_element.c               error->parser_code = (long)err_code;
error             747 ext/xmlrpc/libxmlrpc/xml_element.c               error->line = line_num;
error             748 ext/xmlrpc/libxmlrpc/xml_element.c               error->column = col_num;
error             749 ext/xmlrpc/libxmlrpc/xml_element.c               error->byte_index = byte_idx;
error             750 ext/xmlrpc/libxmlrpc/xml_element.c               error->parser_error = error_str;
error             164 ext/xmlrpc/libxmlrpc/xml_element.h xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR error);
error             335 ext/xmlrpc/libxmlrpc/xmlrpc.c       if(request->error) {
error             336 ext/xmlrpc/libxmlrpc/xmlrpc.c          XMLRPC_CleanupValue(request->error);
error             531 ext/xmlrpc/libxmlrpc/xmlrpc.c 	if (request && error) {
error             532 ext/xmlrpc/libxmlrpc/xmlrpc.c 		if (request->error) {
error             533 ext/xmlrpc/libxmlrpc/xmlrpc.c 			XMLRPC_CleanupValue (request->error);
error             535 ext/xmlrpc/libxmlrpc/xmlrpc.c 		request->error = XMLRPC_CopyValue (error);
error             536 ext/xmlrpc/libxmlrpc/xmlrpc.c 		return request->error;
error             562 ext/xmlrpc/libxmlrpc/xmlrpc.c 	return request ? request->error : NULL;
error             754 ext/xmlrpc/libxmlrpc/xmlrpc.c    if(error) {
error             759 ext/xmlrpc/libxmlrpc/xmlrpc.c 					 error->line, error->column, error->byte_index);
error             762 ext/xmlrpc/libxmlrpc/xmlrpc.c       switch(error->parser_code) {
error             800 ext/xmlrpc/libxmlrpc/xmlrpc.c    STRUCT_XML_ELEM_ERROR error = {0};
error             806 ext/xmlrpc/libxmlrpc/xmlrpc.c 								  &error);
error             824 ext/xmlrpc/libxmlrpc/xmlrpc.c          if(error.parser_error) {
error             825 ext/xmlrpc/libxmlrpc/xmlrpc.c 				XMLRPC_RequestSetError (request, map_expat_errors (&error));
error            2564 ext/xmlrpc/libxmlrpc/xmlrpc.c    if(request && request->error) {
error            2565 ext/xmlrpc/libxmlrpc/xmlrpc.c       xReturn = XMLRPC_CopyValue(request->error);
error             338 ext/xmlrpc/libxmlrpc/xmlrpc.h XMLRPC_VALUE XMLRPC_RequestSetError (XMLRPC_REQUEST request, XMLRPC_VALUE error);
error             118 ext/xmlrpc/libxmlrpc/xmlrpc_private.h    XMLRPC_VALUE                         error;        /* error codes                       */
error             188 ext/xsl/xsltprocessor.c 	int error = 0;
error             201 ext/xsl/xsltprocessor.c 		error = 1;
error             207 ext/xsl/xsltprocessor.c 			error = 1;
error             213 ext/xsl/xsltprocessor.c 				error = 1;
error             218 ext/xsl/xsltprocessor.c 				error = 1;
error             223 ext/xsl/xsltprocessor.c 	if (error == 1) {
error              51 ext/zip/lib/zip_add.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              54 ext/zip/lib/zip_add_dir.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              59 ext/zip/lib/zip_add_dir.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              68 ext/zip/lib/zip_add_dir.c 	    _zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              74 ext/zip/lib/zip_close.c     int i, j, error;
error             100 ext/zip/lib/zip_close.c 		_zip_error_set(&za->error, ZIP_ER_REMOVE, errno);
error             112 ext/zip/lib/zip_close.c     if ((cd=_zip_cdir_new(survivors, &za->error)) == NULL) {
error             124 ext/zip/lib/zip_close.c 				  &za->error);
error             163 ext/zip/lib/zip_close.c     error = 0;
error             197 ext/zip/lib/zip_close.c 		_zip_error_set(&za->error, ZIP_ER_SEEK, errno);
error             198 ext/zip/lib/zip_close.c 		error = 1;
error             202 ext/zip/lib/zip_close.c 				 &za->error) != 0) {
error             203 ext/zip/lib/zip_close.c 		error = 1;
error             219 ext/zip/lib/zip_close.c 		error = 1;
error             230 ext/zip/lib/zip_close.c 		error = 1;
error             259 ext/zip/lib/zip_close.c 		    error = 1;
error             265 ext/zip/lib/zip_close.c 		error = 1;
error             280 ext/zip/lib/zip_close.c 	    if (_zip_dirent_write(&de, out, 1, &za->error) < 0) {
error             281 ext/zip/lib/zip_close.c 		error = 1;
error             286 ext/zip/lib/zip_close.c 			  &za->error) < 0) {
error             287 ext/zip/lib/zip_close.c 		error = 1;
error             297 ext/zip/lib/zip_close.c     if (!error) {
error             299 ext/zip/lib/zip_close.c 	    error = 1;
error             306 ext/zip/lib/zip_close.c     if (error) {
error             315 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_CLOSE, errno);
error             327 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_RENAME, errno);
error             361 ext/zip/lib/zip_close.c 	_zip_error_set_from_source(&za->error, src);
error             367 ext/zip/lib/zip_close.c     if (_zip_dirent_write(de, ft, 1, &za->error) < 0)
error             382 ext/zip/lib/zip_close.c 	    _zip_error_set(&za->error, ZIP_ER_COMPNOTSUPP, 0);
error             417 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_SEEK, errno);
error             430 ext/zip/lib/zip_close.c     if (_zip_dirent_write(de, ft, 1, &za->error) < 0)
error             434 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_SEEK, errno);
error             455 ext/zip/lib/zip_close.c 	    _zip_error_set(error, ZIP_ER_READ, errno);
error             459 ext/zip/lib/zip_close.c 	    _zip_error_set(error, ZIP_ER_EOF, 0);
error             464 ext/zip/lib/zip_close.c 	    _zip_error_set(error, ZIP_ER_WRITE, errno);
error             484 ext/zip/lib/zip_close.c 	_zip_error_set_from_source(&za->error, src);
error             491 ext/zip/lib/zip_close.c 	    _zip_error_set(&za->error, ZIP_ER_WRITE, errno);
error             499 ext/zip/lib/zip_close.c 	    _zip_error_set_from_source(&za->error, src);
error             517 ext/zip/lib/zip_close.c     if (_zip_cdir_write(cd, out, &za->error) < 0)
error             528 ext/zip/lib/zip_close.c     if (_zip_filerange_crc(out, cd->offset, cd->size, &crc, &za->error) < 0)
error             534 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_SEEK, errno);
error             539 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_WRITE, errno);
error             553 ext/zip/lib/zip_close.c 				    src->ch_comment_len, &src->error);
error             560 ext/zip/lib/zip_close.c 					src->cdir->comment_len, &src->error);
error             609 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error             616 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_TMPOPEN, errno);
error             622 ext/zip/lib/zip_close.c 	_zip_error_set(&za->error, ZIP_ER_TMPOPEN, errno);
error              44 ext/zip/lib/zip_delete.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              49 ext/zip/lib/zip_delete.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              76 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_INTERNAL, 0);
error              82 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_MEMORY, 0);
error             100 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_MEMORY, 0);
error             106 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_MEMORY, 0);
error             131 ext/zip/lib/zip_dirent.c 	if (_zip_dirent_write(cd->entry+i, fp, 0, error) != 0)
error             148 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_WRITE, errno);
error             235 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_NOZIP, 0);
error             246 ext/zip/lib/zip_dirent.c 	    _zip_error_set(error, ZIP_ER_READ, errno);
error             253 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_NOZIP, 0);
error             302 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_NOZIP, 0);
error             308 ext/zip/lib/zip_dirent.c 	    zde->filename = _zip_readstr(&cur, zde->filename_len, 1, error);
error             315 ext/zip/lib/zip_dirent.c 					   error);
error             321 ext/zip/lib/zip_dirent.c 	    zde->comment = _zip_readstr(&cur, zde->comment_len, 0, error);
error             328 ext/zip/lib/zip_dirent.c 	    zde->filename = _zip_readfpstr(fp, zde->filename_len, 1, error);
error             335 ext/zip/lib/zip_dirent.c 					     error);
error             341 ext/zip/lib/zip_dirent.c 	    zde->comment = _zip_readfpstr(fp, zde->comment_len, 0, error);
error             469 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_WRITE, errno);
error             534 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_MEMORY, 0);
error             540 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_READ, errno);
error             564 ext/zip/lib/zip_dirent.c 	_zip_error_set(error, ZIP_ER_MEMORY, 0);
error              60 ext/zip/lib/zip_entry_new.c 		_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              43 ext/zip/lib/zip_error_clear.c     _zip_error_clear(&za->error);
error              43 ext/zip/lib/zip_error_get.c     _zip_error_get(&za->error, zep, sep);
error              59 ext/zip/lib/zip_fclose.c     if (zf->error.zip_err)
error              60 ext/zip/lib/zip_fclose.c 	ret = zf->error.zip_err;
error              43 ext/zip/lib/zip_file_error_clear.c     _zip_error_clear(&zf->error);
error              43 ext/zip/lib/zip_file_error_get.c     _zip_error_get(&zf->error, zep, sep);
error              62 ext/zip/lib/zip_file_get_offset.c 	_zip_error_set(&za->error, ZIP_ER_SEEK, errno);
error              66 ext/zip/lib/zip_file_get_offset.c     if (_zip_dirent_read(&de, za->zp, NULL, NULL, 1, &za->error) != 0)
error              43 ext/zip/lib/zip_file_strerror.c     return _zip_error_strerror(&zf->error);
error              58 ext/zip/lib/zip_fopen_index_encrypted.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              64 ext/zip/lib/zip_fopen_index_encrypted.c 	_zip_error_set(&za->error, ZIP_ER_CHANGED, 0);
error              69 ext/zip/lib/zip_fopen_index_encrypted.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              82 ext/zip/lib/zip_fopen_index_encrypted.c 		_zip_error_set(&za->error, ZIP_ER_NOPASSWD, 0);
error              87 ext/zip/lib/zip_fopen_index_encrypted.c 		_zip_error_set(&za->error, ZIP_ER_ENCRNOTSUPP, 0);
error              98 ext/zip/lib/zip_fopen_index_encrypted.c 		_zip_error_set(&za->error, ZIP_ER_COMPNOTSUPP, 0);
error             145 ext/zip/lib/zip_fopen_index_encrypted.c 	_zip_error_set_from_source(&za->error, src);
error             166 ext/zip/lib/zip_fopen_index_encrypted.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error             175 ext/zip/lib/zip_fopen_index_encrypted.c 	    _zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error             186 ext/zip/lib/zip_fopen_index_encrypted.c     _zip_error_init(&zf->error);
error              48 ext/zip/lib/zip_fread.c     if (zf->error.zip_err != 0)
error              52 ext/zip/lib/zip_fread.c 	_zip_error_set(&zf->error, ZIP_ER_INVAL, 0);
error              60 ext/zip/lib/zip_fread.c 	_zip_error_set_from_source(&zf->error, zf->src);
error              72 ext/zip/lib/zip_free.c 	if (za->file[i]->error.zip_err == ZIP_ER_OK) {
error              73 ext/zip/lib/zip_free.c 	    _zip_error_set(&za->file[i]->error, ZIP_ER_ZIPCLOSED, 0);
error              44 ext/zip/lib/zip_get_file_comment.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              44 ext/zip/lib/zip_get_file_extra.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              43 ext/zip/lib/zip_get_name.c     return _zip_get_name(za, idx, flags, &za->error);
error              53 ext/zip/lib/zip_get_name.c 	_zip_error_set(error, ZIP_ER_INVAL, 0);
error              59 ext/zip/lib/zip_get_name.c 	    _zip_error_set(error, ZIP_ER_DELETED, 0);
error              67 ext/zip/lib/zip_get_name.c 	_zip_error_set(error, ZIP_ER_INVAL, 0);
error              48 ext/zip/lib/zip_memdup.c 	_zip_error_set(error, ZIP_ER_MEMORY, 0);
error              45 ext/zip/lib/zip_name_locate.c     return _zip_name_locate(za, fname, flags, &za->error);
error              62 ext/zip/lib/zip_name_locate.c 	_zip_error_set(error, ZIP_ER_INVAL, 0);
error              67 ext/zip/lib/zip_name_locate.c         _zip_error_set(error, ZIP_ER_NOENT, 0);
error              78 ext/zip/lib/zip_name_locate.c 	    fn = _zip_get_name(za, i, flags, error);
error              53 ext/zip/lib/zip_new.c 	_zip_error_set(error, ZIP_ER_MEMORY, 0);
error              59 ext/zip/lib/zip_new.c     _zip_error_init(&za->error);
error             180 ext/zip/lib/zip_open.c 	_zip_error_set(error, ZIP_ER_NOZIP, 0);
error             186 ext/zip/lib/zip_open.c 	_zip_error_set(error, ZIP_ER_NOZIP, 0);
error             191 ext/zip/lib/zip_open.c 	_zip_error_set(error, ZIP_ER_MULTIDISK, 0);
error             201 ext/zip/lib/zip_open.c     if ((cd=_zip_cdir_new(nentry, error)) == NULL)
error             211 ext/zip/lib/zip_open.c 	_zip_error_set(error, ZIP_ER_INCONS, 0);
error             218 ext/zip/lib/zip_open.c 	_zip_error_set(error, ZIP_ER_NOZIP, 0);
error             224 ext/zip/lib/zip_open.c 	_zip_error_set(error, ZIP_ER_INCONS, 0);
error             232 ext/zip/lib/zip_open.c 					     cd->comment_len, error))
error             255 ext/zip/lib/zip_open.c 		_zip_error_set(error, ZIP_ER_SEEK, errno);
error             257 ext/zip/lib/zip_open.c 		_zip_error_set(error, ZIP_ER_NOZIP, 0);
error             267 ext/zip/lib/zip_open.c 	if ((_zip_dirent_read(cd->entry+i, fp, bufp, &left, 0, error)) < 0) {
error             277 ext/zip/lib/zip_open.c 	    if (_zip_cdir_grow(cd, cd->nentry+ZIP_UINT16_MAX, error) < 0) {
error             316 ext/zip/lib/zip_open.c 	    _zip_error_set(error, ZIP_ER_NOZIP, 0);
error             325 ext/zip/lib/zip_open.c 	    _zip_error_set(error, ZIP_ER_NOZIP, 0);
error             330 ext/zip/lib/zip_open.c 	    _zip_error_set(error, ZIP_ER_SEEK, 0);
error             334 ext/zip/lib/zip_open.c 	if (_zip_dirent_read(&temp, fp, NULL, NULL, 1, error) == -1)
error             338 ext/zip/lib/zip_open.c 	    _zip_error_set(error, ZIP_ER_INCONS, 0);
error             458 ext/zip/lib/zip_open.c     struct zip_error error;
error             460 ext/zip/lib/zip_open.c     if ((za=_zip_new(&error)) == NULL) {
error             461 ext/zip/lib/zip_open.c 	set_error(zep, &error, 0);
error              49 ext/zip/lib/zip_rename.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              54 ext/zip/lib/zip_rename.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              65 ext/zip/lib/zip_rename.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              44 ext/zip/lib/zip_replace.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              64 ext/zip/lib/zip_replace.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              49 ext/zip/lib/zip_set_archive_comment.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              54 ext/zip/lib/zip_set_archive_comment.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              59 ext/zip/lib/zip_set_archive_comment.c 	if ((tmpcom=(char *)_zip_memdup(comment, len, &za->error)) == NULL)
error              54 ext/zip/lib/zip_set_archive_flag.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              61 ext/zip/lib/zip_set_archive_flag.c 	    _zip_error_set(&za->error, ZIP_ER_CHANGED, 0);
error              54 ext/zip/lib/zip_set_default_password.c 	    _zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              51 ext/zip/lib/zip_set_file_comment.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              56 ext/zip/lib/zip_set_file_comment.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              61 ext/zip/lib/zip_set_file_comment.c 	if ((tmpcom=(char *)_zip_memdup(comment, len, &za->error)) == NULL)
error              51 ext/zip/lib/zip_set_file_extra.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              56 ext/zip/lib/zip_set_file_extra.c 	_zip_error_set(&za->error, ZIP_ER_RDONLY, 0);
error              61 ext/zip/lib/zip_set_file_extra.c 	if ((tmpext=(char *)_zip_memdup(extra, len, &za->error)) == NULL)
error              50 ext/zip/lib/zip_set_name.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              55 ext/zip/lib/zip_set_name.c 	_zip_error_set(&za->error, ZIP_ER_EXISTS, 0);
error              64 ext/zip/lib/zip_set_name.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              61 ext/zip/lib/zip_source_buffer.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              66 ext/zip/lib/zip_source_buffer.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              60 ext/zip/lib/zip_source_crc.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              65 ext/zip/lib/zip_source_crc.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              71 ext/zip/lib/zip_source_deflate.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              76 ext/zip/lib/zip_source_deflate.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              51 ext/zip/lib/zip_source_file.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              69 ext/zip/lib/zip_source_filep.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              87 ext/zip/lib/zip_source_filep.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              92 ext/zip/lib/zip_source_filep.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              99 ext/zip/lib/zip_source_filep.c 	    _zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              67 ext/zip/lib/zip_source_function.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              75 ext/zip/lib/zip_source_pkware.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              79 ext/zip/lib/zip_source_pkware.c 	_zip_error_set(&za->error, ZIP_ER_ENCRNOTSUPP, 0);
error              87 ext/zip/lib/zip_source_pkware.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              57 ext/zip/lib/zip_source_zip.c     struct zip_error error;
error              67 ext/zip/lib/zip_source_zip.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              73 ext/zip/lib/zip_source_zip.c 	_zip_error_set(&za->error, ZIP_ER_CHANGED, 0);
error              86 ext/zip/lib/zip_source_zip.c 	_zip_error_set(&za->error, ZIP_ER_MEMORY, 0);
error              90 ext/zip/lib/zip_source_zip.c     _zip_error_copy(&error, &srcza->error);
error              95 ext/zip/lib/zip_source_zip.c 	_zip_error_copy(&za->error, &srcza->error);
error              96 ext/zip/lib/zip_source_zip.c 	_zip_error_copy(&srcza->error, &error);
error              47 ext/zip/lib/zip_stat_index.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              58 ext/zip/lib/zip_stat_index.c 	    _zip_error_set(&za->error, ZIP_ER_CHANGED, 0);
error              64 ext/zip/lib/zip_stat_index.c 	    _zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              42 ext/zip/lib/zip_strerror.c     return _zip_error_strerror(&za->error);
error              56 ext/zip/lib/zip_unchange.c 	_zip_error_set(&za->error, ZIP_ER_INVAL, 0);
error              66 ext/zip/lib/zip_unchange.c 		_zip_error_set(&za->error, ZIP_ER_EXISTS, 0);
error             186 ext/zip/lib/zipint.h     struct zip_error error;	/* error information */
error             209 ext/zip/lib/zipint.h     struct zip_error error;	/* error information */
error             329 ext/zip/php_zip.c 		if (za->error.str) {
error             330 ext/zip/php_zip.c 			_zip_error_fini(&za->error);
error             332 ext/zip/php_zip.c 		_zip_error_init(&za->error);
error             157 main/SAPI.c    	int   error;
error             171 main/SAPI.c    	error = zend_call_function(&fci, &SG(fci_cache) TSRMLS_CC);
error             172 main/SAPI.c    	if (error == FAILURE) {
error             919 main/main.c    	if (error == 0) {
error             925 main/main.c    		FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, error, 0, buf, PHP_WIN32_ERROR_MSG_BUFFER_SIZE, NULL);
error             931 main/main.c    		php_error_docref2(NULL TSRMLS_CC, param1, param2, E_WARNING, "%s (code: %lu)", (char *)buf, error);
error             314 main/network.c 	int error = 0;
error             321 main/network.c 		error = php_socket_errno();
error             324 main/network.c 			*error_code = error;
error             327 main/network.c 		if (error != EINPROGRESS) {
error             329 main/network.c 				*error_string = php_socket_strerror(error, NULL, 0);
error             334 main/network.c 		if (asynchronous && error == EINPROGRESS) {
error             355 main/network.c 		error = PHP_TIMEOUT_ERROR_VALUE;
error             359 main/network.c 		len = sizeof(error);
error             364 main/network.c 		if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, (char*)&error, &len) != 0) {
error             379 main/network.c 		*error_code = error;
error             382 main/network.c 	if (error) {
error             385 main/network.c 			*error_string = php_socket_strerror(error, NULL, 0);
error             718 main/network.c 	int error = 0, n;
error             725 main/network.c 		error = PHP_TIMEOUT_ERROR_VALUE;
error             727 main/network.c 		error = php_socket_errno();
error             739 main/network.c 			error = php_socket_errno();
error             744 main/network.c 		*error_code = error;
error             747 main/network.c 		*error_string = php_socket_strerror(error, NULL, 0);
error             473 main/output.c  	char *handler_name = NULL, *error = NULL;
error             489 main/output.c  			if (SUCCESS == zend_fcall_info_init(output_handler, 0, &user->fci, &user->fcc, &handler_name, &error TSRMLS_CC)) {
error             497 main/output.c  			if (error) {
error             498 main/output.c  				php_error_docref("ref.outcontrol" TSRMLS_CC, E_WARNING, "%s", error);
error             499 main/output.c  				efree(error);
error             246 main/streams/streams.c 	efree(*(char**)error);
error             182 run-tests.php  		error('environment variable TEST_PHP_EXECUTABLE must be set to specify PHP executable!');
error             186 run-tests.php  		error("invalid PHP executable specified by TEST_PHP_EXECUTABLE  = $php");
error             582 run-tests.php  						error("Valgrind returned no version info, cannot proceed.\nPlease check if Valgrind is installed.");
error             586 run-tests.php  							error("Valgrind returned invalid version info (\"$valgrind_header\"), cannot proceed.");
error             878 run-tests.php  	$o = opendir($dir) or error("cannot open directory: $dir");
error            1033 run-tests.php  			error("Cannot open file '" . $filename_copy . "' (save_text)");
error            1038 run-tests.php  		error("Cannot open file '" . $filename . "' (save_text)");
error            1211 run-tests.php  	$fp = fopen($file, "rb") or error("Cannot open test file: $file");
error            1397 run-tests.php  			mkdir(dirname($copy_file), 0777, true) or error("Cannot create output directory - " . dirname($copy_file));
error            2071 run-tests.php  			error("Cannot create expected test output - $exp_filename");
error            2076 run-tests.php  			error("Cannot create test output - $output_filename");
error            2086 run-tests.php  			error("Cannot create test diff - $diff_filename");
error            2094 run-tests.php  			error("Cannot create test shell script - $sh_filename");
error            2106 run-tests.php  			error("Cannot create test log - $log_filename");
error            2623 run-tests.php  		error("Failed to open $JUNIT for writing.");
error            2804 run-tests.php  		error("Timer for $file_name was not started!");
error              67 sapi/caudium/caudium.c #  define Pike_error error
error             315 sapi/cli/php_http_parser.c # define STRICT_CHECK(cond) if (cond) goto error
error             377 sapi/cli/php_http_parser.c       if (nread > PHP_HTTP_MAX_HEADER_SIZE) goto error;
error             386 sapi/cli/php_http_parser.c         goto error;
error             411 sapi/cli/php_http_parser.c           if (ch != 'E') goto error;
error             436 sapi/cli/php_http_parser.c             goto error;
error             462 sapi/cli/php_http_parser.c         if (ch < '1' || ch > '9') goto error;
error             475 sapi/cli/php_http_parser.c         if (ch < '0' || ch > '9') goto error;
error             480 sapi/cli/php_http_parser.c         if (parser->http_major > 999) goto error;
error             486 sapi/cli/php_http_parser.c         if (ch < '0' || ch > '9') goto error;
error             499 sapi/cli/php_http_parser.c         if (ch < '0' || ch > '9') goto error;
error             504 sapi/cli/php_http_parser.c         if (parser->http_minor > 999) goto error;
error             514 sapi/cli/php_http_parser.c           goto error;
error             535 sapi/cli/php_http_parser.c               goto error;
error             543 sapi/cli/php_http_parser.c         if (parser->status_code > 999) goto error;
error             575 sapi/cli/php_http_parser.c         if (ch < 'A' || 'Z' < ch) goto error;
error             604 sapi/cli/php_http_parser.c           goto error;
error             663 sapi/cli/php_http_parser.c         goto error;
error             683 sapi/cli/php_http_parser.c         goto error;
error             718 sapi/cli/php_http_parser.c             goto error;
error             740 sapi/cli/php_http_parser.c             goto error;
error             778 sapi/cli/php_http_parser.c             goto error;
error             814 sapi/cli/php_http_parser.c             goto error;
error             851 sapi/cli/php_http_parser.c             goto error;
error             888 sapi/cli/php_http_parser.c             goto error;
error             921 sapi/cli/php_http_parser.c             goto error;
error             934 sapi/cli/php_http_parser.c             goto error;
error             960 sapi/cli/php_http_parser.c         if (ch < '1' || ch > '9') goto error;
error             973 sapi/cli/php_http_parser.c         if (ch < '0' || ch > '9') goto error;
error             978 sapi/cli/php_http_parser.c         if (parser->http_major > 999) goto error;
error             984 sapi/cli/php_http_parser.c         if (ch < '0' || ch > '9') goto error;
error            1004 sapi/cli/php_http_parser.c         if (ch < '0' || ch > '9') goto error;
error            1009 sapi/cli/php_http_parser.c         if (parser->http_minor > 999) goto error;
error            1016 sapi/cli/php_http_parser.c         if (ch != LF) goto error;
error            1037 sapi/cli/php_http_parser.c         if (!c) goto error;
error            1194 sapi/cli/php_http_parser.c         goto error;
error            1237 sapi/cli/php_http_parser.c             if (ch < '0' || ch > '9') goto error;
error            1286 sapi/cli/php_http_parser.c             if (ch < '0' || ch > '9') goto error;
error            1460 sapi/cli/php_http_parser.c         if (c == -1) goto error;
error            1482 sapi/cli/php_http_parser.c           goto error;
error            1548 sapi/cli/php_http_parser.c         goto error;
error            1566 sapi/cli/php_http_parser.c error:
error             501 sapi/fpm/fpm/fpm_conf.c 		char *error;
error             503 sapi/fpm/fpm/fpm_conf.c 		error = fpm_conf_set_integer(value, &subconf, 0);
error             505 sapi/fpm/fpm/fpm_conf.c 		if (error) { 
error             506 sapi/fpm/fpm/fpm_conf.c 			return error;
error            1235 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;;
error            1242 sapi/fpm/fpm/fpm_conf.c 	if (*error) return; /* We got already an error. Switch to the end. */
error            1257 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1268 sapi/fpm/fpm/fpm_conf.c 				*error = 1;
error            1278 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1292 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;
error            1314 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1320 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1331 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;
error            1334 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1341 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1361 sapi/fpm/fpm/fpm_conf.c 				*error = 1;
error            1368 sapi/fpm/fpm/fpm_conf.c 				*error = 1;
error            1379 sapi/fpm/fpm/fpm_conf.c 	*error = 1;
error            1385 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;
error            1391 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1396 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1403 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1427 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1433 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1441 sapi/fpm/fpm/fpm_conf.c 	int *error;
error            1444 sapi/fpm/fpm/fpm_conf.c 	error = (int *)arg;
error            1445 sapi/fpm/fpm/fpm_conf.c 	if (*error) return; /* We got already an error. Switch to the end. */
error            1449 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_entry(arg1, arg2, error TSRMLS_CC);
error            1452 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_section(arg1, error TSRMLS_CC);
error            1455 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_array(arg1, arg3, arg2, error TSRMLS_CC);
error            1459 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1467 sapi/fpm/fpm/fpm_conf.c 	int error = 0;
error            1502 sapi/fpm/fpm/fpm_conf.c 		tmp = zend_parse_ini_string(buf, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t)fpm_conf_ini_parser, &error TSRMLS_CC);
error            1504 sapi/fpm/fpm/fpm_conf.c 		if (error || tmp == FAILURE) {
error            1514 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_include(tmp, &error TSRMLS_CC);
error            1515 sapi/fpm/fpm/fpm_conf.c 			if (error) {
error             144 scripts/dev/check_parameters.php 			error("too few variables passed to function");
error             153 scripts/dev/check_parameters.php 		error("{$db[$idx][0]}: expected '$exp' but got '{$db[$idx][1]}' [".($idx+1).']');
error             157 scripts/dev/check_parameters.php 		error("optional var not initialized: {$db[$idx][0]} [".($idx+1).']', 1);
error             160 scripts/dev/check_parameters.php 		error("not optional var is initialized: {$db[$idx][0]} [".($idx+1).']', 2);
error             180 scripts/dev/check_parameters.php 			error("variable not found: '$name'", 3);
error             223 scripts/dev/check_parameters.php 							error("more than one optional separator at char #$i");
error             227 scripts/dev/check_parameters.php 								error("unnecessary optional separator");
error             235 scripts/dev/check_parameters.php 							error("the '/' specifier cannot be applied to '$last_char'");
error             242 scripts/dev/check_parameters.php 							error("the '!' specifier cannot be applied to '$last_char'");
error             252 scripts/dev/check_parameters.php 								error("the '&' specifier cannot be applied to '$last_char'");
error             255 scripts/dev/check_parameters.php 							error("unknown char ('&') at column $i");
error             263 scripts/dev/check_parameters.php 								error("A varargs specifier can only be used once. repeated char at column $i");
error             270 scripts/dev/check_parameters.php 							error("unknown char ('$char') at column $i");
error             280 scripts/dev/check_parameters.php 							error("unknown char ('$char') at column $i");
error             505 server-tests.php 			$this->error("invalid PHP executable specified by TEST_PHP_EXECUTABLE  = " .
error             670 server-tests.php 					$this->error("Invalid argument setting for argument $opt, should be [{$this->xargs[$opt][1]}]\n");
error             839 server-tests.php 		$o = opendir($dir) or $this->error("cannot open directory: $dir");
error            1149 server-tests.php 				or $this->error("Cannot open test file: $file");
error             227 win32/sendmail.c 		*error = BAD_MAIL_HOST;
error             230 win32/sendmail.c 		*error = BAD_MAIL_HOST;
error             242 win32/sendmail.c 			*error = W32_SM_PCRE_ERROR;
error             250 win32/sendmail.c 			*error = OUT_OF_MEMORY;
error             281 win32/sendmail.c 		*error = W32_SM_SENDMAIL_FROM_NOT_SET;
error             286 win32/sendmail.c 	*error = MailConnect();
error             287 win32/sendmail.c 	if (*error != 0) {
error             315 win32/sendmail.c 			*error = ret;
error              47 win32/sockets.c 		goto error;
error              55 win32/sockets.c 		goto error;
error              59 win32/sockets.c 		goto error;
error              63 win32/sockets.c 		goto error;
error              68 win32/sockets.c 		goto error;
error              73 win32/sockets.c 		goto error;
error              78 win32/sockets.c 		goto error;
error              86 win32/sockets.c error:
error              31 win32/winutil.c 		NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),	(LPTSTR)&buf, 0, NULL