error             868 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            4988 Zend/zend_compile.c 	int error = 0;
error            5006 Zend/zend_compile.c 		error = 1;
error            5022 Zend/zend_compile.c 	if (error) {
error             775 Zend/zend_execute_API.c 		char *error = NULL;
error             781 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             782 Zend/zend_execute_API.c 			if (error) {
error             783 Zend/zend_execute_API.c 				zend_error(E_WARNING, "Invalid callback %s, %s", callable_name, error);
error             784 Zend/zend_execute_API.c 				efree(error);
error             790 Zend/zend_execute_API.c 		} else if (error) {
error             792 Zend/zend_execute_API.c 			if (error[0] >= 'a' && error[0] <= 'z') {
error             793 Zend/zend_execute_API.c 				error[0] += ('A' - 'a');
error             795 Zend/zend_execute_API.c 			zend_error(E_STRICT, "%s", error);
error             796 Zend/zend_execute_API.c 			efree(error);
error             491 ext/bz2/bz2.c  	int               error,           /* Error Container */
error             522 ext/bz2/bz2.c  	error = BZ2_bzBuffToBuffCompress(dest, &dest_len, source, source_len, block_size, 0, work_factor);
error             523 ext/bz2/bz2.c  	if (error != BZ_OK) {
error             525 ext/bz2/bz2.c  		RETURN_LONG(error);
error             541 ext/bz2/bz2.c  	int source_len, error;
error             568 ext/bz2/bz2.c  	while ((error = BZ2_bzDecompress(&bzs)) == BZ_OK && bzs.avail_in > 0) {
error             576 ext/bz2/bz2.c  	if (error == BZ_STREAM_END || error == BZ_OK) {
error             583 ext/bz2/bz2.c  		RETVAL_LONG(error);
error             170 ext/curl/interface.c 	CURLcode error = CURLE_OK;
error             184 ext/curl/interface.c 		error = curl_easy_setopt(ch->cp, option, copystr);
error             188 ext/curl/interface.c 		error = curl_easy_setopt(ch->cp, option, str);
error             192 ext/curl/interface.c 	SAVE_CURL_ERROR(ch, error)
error             194 ext/curl/interface.c 	return error == CURLE_OK ? SUCCESS : FAILURE;
error            1328 ext/curl/interface.c 			int   error;
error            1351 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1353 ext/curl/interface.c 			if (error == FAILURE) {
error            1390 ext/curl/interface.c 			int   error;
error            1418 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1420 ext/curl/interface.c 			if (error == FAILURE) {
error            1463 ext/curl/interface.c 			int   error;
error            1497 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1499 ext/curl/interface.c 			if (error == FAILURE) {
error            1543 ext/curl/interface.c 			int   error;
error            1572 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1574 ext/curl/interface.c 			if (error == FAILURE) {
error            1625 ext/curl/interface.c 			int   error;
error            1649 ext/curl/interface.c 			error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC);
error            1651 ext/curl/interface.c 			if (error == FAILURE) {
error            1705 ext/curl/interface.c 	int          error;
error            1718 ext/curl/interface.c 	error = call_user_function(EG(function_table), NULL, func, retval, 2, argv TSRMLS_CC);
error            1719 ext/curl/interface.c 	if (error == FAILURE) {
error            2102 ext/curl/interface.c 	CURLcode     error=CURLE_OK;
error            2112 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, option, 2);
error            2270 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue));
error            2356 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, option, NULL);
error            2398 ext/curl/interface.c 			error = CURLE_OK;
error            2478 ext/curl/interface.c 					error = curl_easy_setopt(ch->cp, option, fp);
error            2554 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, slist);
error            2571 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue));
error            2641 ext/curl/interface.c 							error = curl_formadd(&first, &last,
error            2680 ext/curl/interface.c 						error = curl_formadd(&first, &last,
error            2694 ext/curl/interface.c 						error = curl_formadd(&first, &last,
error            2707 ext/curl/interface.c 				SAVE_CURL_ERROR(ch, error);
error            2708 ext/curl/interface.c 				if (error != CURLE_OK) {
error            2716 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_HTTPPOST, first);
error            2722 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDSIZE, Z_STRLEN_PP(zvalue));
error            2723 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_COPYPOSTFIELDS, Z_STRVAL_PP(zvalue));
error            2732 ext/curl/interface.c 				error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDSIZE, Z_STRLEN_PP(zvalue));
error            2784 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, option, (curl_off_t)Z_LVAL_PP(zvalue));
error            2791 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, CURLOPT_POSTREDIR, Z_LVAL_PP(zvalue) & CURL_REDIR_POST_ALL);
error            2802 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, CURLOPT_PASSWDFUNCTION, curl_passwd);
error            2803 ext/curl/interface.c 			error = curl_easy_setopt(ch->cp, CURLOPT_PASSWDDATA,     (void *) ch);
error            2879 ext/curl/interface.c 	SAVE_CURL_ERROR(ch, error);
error            2880 ext/curl/interface.c 	if (error != CURLE_OK) {
error            2968 ext/curl/interface.c 	CURLcode	error;
error            2982 ext/curl/interface.c 	error = curl_easy_perform(ch->cp);
error            2983 ext/curl/interface.c 	SAVE_CURL_ERROR(ch, error);
error            2985 ext/curl/interface.c 	if (error != CURLE_OK && error != CURLE_PARTIAL_FILE) {
error             387 ext/curl/multi.c 	CURLMcode error = CURLM_OK;
error             397 ext/curl/multi.c 			error = curl_multi_setopt(mh->multi, option, Z_LVAL_PP(zvalue));
error             402 ext/curl/multi.c 			error = CURLM_UNKNOWN_OPTION;
error             406 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            1421 ext/date/php_date.c 	timelib_error_container *error = NULL;
error            1425 ext/date/php_date.c 	parsed_time = timelib_strtotime(string, strlen(string), &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            1426 ext/date/php_date.c 	if (error->error_count) {
error            1428 ext/date/php_date.c 		timelib_error_container_dtor(error);
error            1431 ext/date/php_date.c 	timelib_error_container_dtor(error);
error            1448 ext/date/php_date.c 	struct timelib_error_container *error;
error            1484 ext/date/php_date.c 	t = timelib_strtotime(times, time_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            1485 ext/date/php_date.c 	error1 = error->error_count;
error            1486 ext/date/php_date.c 	timelib_error_container_dtor(error);
error            1509 ext/date/php_date.c 	int error;
error            1582 ext/date/php_date.c 	ts = timelib_date_to_int(now, &error);
error            1586 ext/date/php_date.c 	if (error) {
error            2897 ext/date/php_date.c 	add_assoc_long(z, "warning_count", error->warning_count);
error            2900 ext/date/php_date.c 	for (i = 0; i < error->warning_count; i++) {
error            2901 ext/date/php_date.c 		add_index_string(element, error->warning_messages[i].position, error->warning_messages[i].message, 1);
error            2905 ext/date/php_date.c 	add_assoc_long(z, "error_count", error->error_count);
error            2908 ext/date/php_date.c 	for (i = 0; i < error->error_count; i++) {
error            2909 ext/date/php_date.c 		add_index_string(element, error->error_messages[i].position, error->error_messages[i].message, 1);
error            2952 ext/date/php_date.c 	zval_from_error_container(return_value, error);
error            2954 ext/date/php_date.c 	timelib_error_container_dtor(error);
error            3010 ext/date/php_date.c 	struct timelib_error_container *error;
error            3017 ext/date/php_date.c 	parsed_time = timelib_strtotime(date, date_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            3018 ext/date/php_date.c 	php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error);
error            3029 ext/date/php_date.c 	struct timelib_error_container *error;
error            3036 ext/date/php_date.c 	parsed_time = timelib_parse_from_format(format, date, date_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper);
error            3037 ext/date/php_date.c 	php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error);
error            3609 ext/date/php_date.c 	int           error;
error            3618 ext/date/php_date.c 	timestamp = timelib_date_to_int(dateobj->time, &error);
error            3619 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            1620 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
error            1624 ext/dom/document.c 		ctxt->sax->error = php_libxml_ctx_error;
error            1965 ext/dom/document.c 	cvp->error    = (xmlValidityErrorFunc) php_libxml_error_handler;
error            2219 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
error            2222 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             140 ext/ereg/regex/regcomp.c 	p->error = 0;
error             190 ext/ereg/regex/regcomp.c 	if (p->error != 0)	/* lose */
error             192 ext/ereg/regex/regcomp.c 	return(p->error);
error             620 ext/ereg/regex/regcomp.c 	if (p->error != 0)	/* don't mess things up further */
error             933 ext/ereg/regex/regcomp.c 	if (p->error != 0)	/* head off possible runaway recursion */
error             996 ext/ereg/regex/regcomp.c 	if (p->error == 0)	/* keep earliest error condition */
error             997 ext/ereg/regex/regcomp.c 		p->error = e;
error            1334 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1386 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1417 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1452 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1523 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error            1605 ext/ereg/regex/regcomp.c 	if (p->error != 0)
error             479 ext/fileinfo/libmagic/apprentice.c 	ms->error = -1;
error            2626 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2635 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2640 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2645 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2651 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2655 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2668 ext/fileinfo/libmagic/apprentice.c 			goto error;
error            2681 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2699 ext/fileinfo/libmagic/apprentice.c 			goto error;
error            2716 ext/fileinfo/libmagic/apprentice.c 		goto error;
error            2728 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            3810 ext/gd/gd.c    	char *error = NULL;
error            3873 ext/gd/gd.c    		error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex);
error            3876 ext/gd/gd.c    		error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str);
error            3880 ext/gd/gd.c    	if (error) {
error            3881 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             225 ext/gd/libgd/gd_jpeg.c 		goto error;
error             381 ext/gd/libgd/gd_jpeg.c 		goto error;
error             413 ext/gd/libgd/gd_jpeg.c 			goto error;
error             420 ext/gd/libgd/gd_jpeg.c 			goto error;
error             433 ext/gd/libgd/gd_jpeg.c 		goto error;
error             438 ext/gd/libgd/gd_jpeg.c 	goto error;
error             452 ext/gd/libgd/gd_jpeg.c 				goto error;
error             465 ext/gd/libgd/gd_jpeg.c 				goto error;
error             478 ext/gd/libgd/gd_jpeg.c 			goto error;
error             487 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             435 ext/gd/libgd/gdft.c 		*error = "Could not find/open font";
error             443 ext/gd/libgd/gdft.c 		*error = "Could not read font";
error             504 ext/gd/libgd/gdft.c 		*error = "Unable to find a CharMap that I can handle";
error             838 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              60 ext/intl/converter/converter.c 	zval_dtor(error);
error              61 ext/intl/converter/converter.c 	ZVAL_LONG(error, U_ZERO_ERROR);
error              77 ext/intl/converter/converter.c                 ZVAL_LONG(error, U_INVALID_STATE_ERROR);
error              95 ext/intl/converter/converter.c             	ZVAL_LONG(error, uerror);
error             114 ext/intl/converter/converter.c 	zval *source, *codeUnits, *error;
error             117 ext/intl/converter/converter.c 		&reason, &source, &codeUnits, &error) == FAILURE) {
error             121 ext/intl/converter/converter.c 	php_converter_default_callback(return_value, getThis(), reason, error TSRMLS_CC);
error             136 ext/intl/converter/converter.c 	zval *source, *codePoint, *error;
error             139 ext/intl/converter/converter.c 		&reason, &source, &codePoint, &error) == FAILURE) {
error             143 ext/intl/converter/converter.c 	php_converter_default_callback(return_value, getThis(), reason, error TSRMLS_CC);
error             371 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             381 ext/intl/converter/converter.c                                  NULL, NULL, &error);
error             382 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             383 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_setToUCallBack", error);
error             387 ext/intl/converter/converter.c 	error = U_ZERO_ERROR;
error             389 ext/intl/converter/converter.c                                     NULL, NULL, &error);
error             390 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             391 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_setFromUCallBack", error);
error             403 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             404 ext/intl/converter/converter.c 	UConverter *cnv = ucnv_open(enc, &error);
error             406 ext/intl/converter/converter.c 	if (error == U_AMBIGUOUS_ALIAS_WARNING) {
error             414 ext/intl/converter/converter.c 	} else if (U_FAILURE(error)) {
error             416 ext/intl/converter/converter.c 			THROW_UFAILURE(objval, "ucnv_open", error);
error             418 ext/intl/converter/converter.c 			php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error setting encoding: %d - %s", (int)error, u_errorName(error));
error             449 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             480 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             486 ext/intl/converter/converter.c 	name = ucnv_getName(cnv, &objval->error.code);
error             487 ext/intl/converter/converter.c 	if (U_FAILURE(objval->error.code)) {
error             488 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_getName()", objval->error.code);
error             520 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             527 ext/intl/converter/converter.c 	if (U_FAILURE(objval->error.code)) {
error             528 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_getType", objval->error.code);
error             617 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             620 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             621 ext/intl/converter/converter.c 		ucnv_setSubstChars(objval->src, chars, chars_len, &error);
error             622 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             623 ext/intl/converter/converter.c 			THROW_UFAILURE(objval, "ucnv_setSubstChars", error);
error             632 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             633 ext/intl/converter/converter.c 		ucnv_setSubstChars(objval->dest, chars, chars_len, &error);
error             634 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             635 ext/intl/converter/converter.c 			THROW_UFAILURE(objval, "ucnv_setSubstChars", error);
error             655 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             662 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             671 ext/intl/converter/converter.c 	ucnv_getSubstChars(objval->src, chars, &chars_len, &error);
error             672 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             673 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_getSubstChars", error);
error             686 ext/intl/converter/converter.c 	UErrorCode	error = U_ZERO_ERROR;
error             699 ext/intl/converter/converter.c 	temp_len = 1 + ucnv_toUChars(src_cnv, NULL, 0, src, src_len, &error);
error             700 ext/intl/converter/converter.c 	if (U_FAILURE(error) && error != U_BUFFER_OVERFLOW_ERROR) {
error             701 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_toUChars", error);
error             707 ext/intl/converter/converter.c 	error = U_ZERO_ERROR;
error             708 ext/intl/converter/converter.c 	temp_len = ucnv_toUChars(src_cnv, temp, temp_len, src, src_len, &error);
error             709 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             710 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_toUChars", error);
error             717 ext/intl/converter/converter.c 	dest_len = 1 + ucnv_fromUChars(dest_cnv, NULL, 0, temp, temp_len, &error);
error             718 ext/intl/converter/converter.c 	if (U_FAILURE(error) && error != U_BUFFER_OVERFLOW_ERROR) {
error             719 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_fromUChars", error);
error             726 ext/intl/converter/converter.c 	error = U_ZERO_ERROR;
error             727 ext/intl/converter/converter.c 	dest_len = ucnv_fromUChars(dest_cnv, dest, dest_len, temp, temp_len, &error);
error             729 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             730 ext/intl/converter/converter.c 		THROW_UFAILURE(objval, "ucnv_fromUChars", error);
error             791 ext/intl/converter/converter.c 	intl_errors_reset(&objval->error TSRMLS_CC);
error             831 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             836 ext/intl/converter/converter.c 			if (U_SUCCESS(error) &&
error             839 ext/intl/converter/converter.c 				error = U_ZERO_ERROR;
error             840 ext/intl/converter/converter.c 				ucnv_setSubstChars(src_cnv, Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval) & 0x7F, &error);
error             842 ext/intl/converter/converter.c 			if (U_SUCCESS(error) &&
error             845 ext/intl/converter/converter.c 				error = U_ZERO_ERROR;
error             846 ext/intl/converter/converter.c 				ucnv_setSubstChars(dest_cnv, Z_STRVAL_PP(tmpzval), Z_STRLEN_PP(tmpzval) & 0x7F, &error);
error             850 ext/intl/converter/converter.c 		if (U_SUCCESS(error) &&
error             855 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             856 ext/intl/converter/converter.c 			THROW_UFAILURE(NULL, "transcode", error);
error             884 ext/intl/converter/converter.c 	RETURN_LONG(intl_error_get_code(&(objval->error) TSRMLS_CC));	
error             893 ext/intl/converter/converter.c 	char *message = intl_error_get_message(&(objval->error) TSRMLS_CC);
error             938 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error             948 ext/intl/converter/converter.c 	count = ucnv_countAliases(name, &error);
error             949 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error             950 ext/intl/converter/converter.c 		THROW_UFAILURE(NULL, "ucnv_countAliases", error);
error             958 ext/intl/converter/converter.c 		error = U_ZERO_ERROR;
error             959 ext/intl/converter/converter.c 		alias = ucnv_getAlias(name, i, &error);
error             960 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             961 ext/intl/converter/converter.c 			THROW_UFAILURE(NULL, "ucnv_getAlias", error);
error             986 ext/intl/converter/converter.c 		UErrorCode error = U_ZERO_ERROR;
error             987 ext/intl/converter/converter.c 		const char *name = ucnv_getStandard(i, &error);
error             988 ext/intl/converter/converter.c 		if (U_FAILURE(error)) {
error             989 ext/intl/converter/converter.c 			THROW_UFAILURE(NULL, "ucnv_getStandard", error);
error            1045 ext/intl/converter/converter.c 	intl_error_reset(&(objval->error) TSRMLS_CC);
error            1061 ext/intl/converter/converter.c 	intl_error_init(&(objval->error) TSRMLS_CC);
error            1082 ext/intl/converter/converter.c 	UErrorCode error = U_ZERO_ERROR;
error            1084 ext/intl/converter/converter.c 	intl_errors_reset(&oldobj->error TSRMLS_CC);
error            1086 ext/intl/converter/converter.c 	objval->src = ucnv_safeClone(oldobj->src, NULL, NULL, &error);
error            1087 ext/intl/converter/converter.c 	if (U_SUCCESS(error)) {
error            1088 ext/intl/converter/converter.c 		error = U_ZERO_ERROR;
error            1089 ext/intl/converter/converter.c 		objval->dest = ucnv_safeClone(oldobj->dest, NULL, NULL, &error);
error            1091 ext/intl/converter/converter.c 	if (U_FAILURE(error)) {
error            1093 ext/intl/converter/converter.c 		THROW_UFAILURE(oldobj, "ucnv_safeClone", error);
error            1095 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            2147 ext/ldap/ldap.c 			char error=0;
error            2160 ext/ldap/ldap.c 					error = 1;
error            2165 ext/ldap/ldap.c 					error = 1;
error            2190 ext/ldap/ldap.c 			if (!error) {
error            2191 ext/ldap/ldap.c 				error = ldap_set_option(ldap, option, ctrls);
error            2199 ext/ldap/ldap.c 			if (error) {
error             468 ext/libxml/libxml.c 	xmlResetError(error);
error             481 ext/libxml/libxml.c 	if (error) {
error             482 ext/libxml/libxml.c 		ret = xmlCopyError(error, &error_copy);
error             732 ext/libxml/libxml.c 	_php_list_set_error_structure(error, NULL);
error            1003 ext/libxml/libxml.c 	xmlErrorPtr error;
error            1005 ext/libxml/libxml.c 	error = xmlGetLastError();
error            1007 ext/libxml/libxml.c 	if (error) {
error            1009 ext/libxml/libxml.c 		add_property_long(return_value, "level", error->level);
error            1010 ext/libxml/libxml.c 		add_property_long(return_value, "code", error->code);
error            1011 ext/libxml/libxml.c 		add_property_long(return_value, "column", error->int2);
error            1012 ext/libxml/libxml.c 		if (error->message) {
error            1013 ext/libxml/libxml.c 			add_property_string(return_value, "message", error->message, 1);
error            1017 ext/libxml/libxml.c 		if (error->file) {
error            1018 ext/libxml/libxml.c 			add_property_string(return_value, "file", error->file, 1);
error            1022 ext/libxml/libxml.c 		add_property_long(return_value, "line", error->line);
error            1034 ext/libxml/libxml.c 	xmlErrorPtr error;
error            1042 ext/libxml/libxml.c 		error = zend_llist_get_first(LIBXML(error_list));
error            1044 ext/libxml/libxml.c 		while (error != NULL) {
error            1049 ext/libxml/libxml.c 			add_property_long(z_error, "level", error->level);
error            1050 ext/libxml/libxml.c 			add_property_long(z_error, "code", error->code);
error            1051 ext/libxml/libxml.c 			add_property_long(z_error, "column", error->int2);
error            1052 ext/libxml/libxml.c 			if (error->message) {
error            1053 ext/libxml/libxml.c 				add_property_string(z_error, "message", error->message, 1);
error            1057 ext/libxml/libxml.c 			if (error->file) {
error            1058 ext/libxml/libxml.c 				add_property_string(z_error, "file", error->file, 1);
error            1062 ext/libxml/libxml.c 			add_property_long(z_error, "line", error->line);
error            1065 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            1119 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             793 ext/mysqlnd/mysqlnd.c 		DBG_ERR_FMT("errorno=%u error=%s", greet_packet->error_no, greet_packet->error);
error             794 ext/mysqlnd/mysqlnd.c 		SET_CLIENT_ERROR(*conn->error_info, greet_packet->error_no, greet_packet->sqlstate, greet_packet->error);
error            1075 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            1077 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            1079 ext/mysqlnd/mysqlnd.c 						 conn->error_info->error_no, conn->error_info->error, conn->scheme);
error            1565 ext/mysqlnd/mysqlnd.c 	return conn->error_info->error;
error            2169 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            1718 ext/mysqlnd/mysqlnd_ps.c 	return stmt? stmt->error_info->error : 0;
error             396 ext/mysqlnd/mysqlnd_result.c 			DBG_ERR_FMT("error=%s", rset_header->error_info.error);
error             699 ext/mysqlnd/mysqlnd_result.c 			DBG_ERR_FMT("errorno=%u error=%s", row_packet->error_info.error_no, row_packet->error_info.error);
error             826 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             266 ext/mysqlnd/mysqlnd_wireprotocol.c 			memcpy(error, p, error_msg_len);
error             271 ext/mysqlnd/mysqlnd_wireprotocol.c 	error[error_msg_len]= '\0';
error             353 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error             673 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error             828 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error             918 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error, sizeof(packet->error),
error            1071 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error, sizeof(packet->error_info.error),
error            1213 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error, sizeof(packet->error_info.error),
error            1216 ext/mysqlnd/mysqlnd_wireprotocol.c 		DBG_ERR_FMT("Server error : (%u) %s", packet->error_info.error_no, packet->error_info.error);
error            1805 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error,
error            1806 ext/mysqlnd/mysqlnd_wireprotocol.c 										 sizeof(packet->error_info.error),
error            1951 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error,
error            1952 ext/mysqlnd/mysqlnd_wireprotocol.c 										 sizeof(packet->error_info.error),
error            2048 ext/mysqlnd/mysqlnd_wireprotocol.c 										 packet->error_info.error,
error            2049 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             871 ext/odbc/php_odbc.c 	SQLINTEGER	error;        /* Not used */
error             892 ext/odbc/php_odbc.c 	rc = SQLError(henv, conn, stmt, state, &error, errormsg, sizeof(errormsg)-1, &errormsgsize);
error            1511 ext/odbc/php_odbc.c 	 		SQLINTEGER  error;        /* Not used */
error            1516 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            1194 ext/pcntl/pcntl.c         long error;
error            1196 ext/pcntl/pcntl.c         if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &error) == FAILURE) {
error            1200 ext/pcntl/pcntl.c         RETURN_STRING(strerror(error), 1);
error            5897 ext/pcre/pcrelib/pcre_jit_compile.c       return error; \
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              31 ext/pcre/pcrelib/sljit/sljitLir.c 		if (SLJIT_UNLIKELY(compiler->error)) \
error              32 ext/pcre/pcrelib/sljit/sljitLir.c 			return compiler->error; \
error              37 ext/pcre/pcrelib/sljit/sljitLir.c 		if (SLJIT_UNLIKELY(compiler->error)) \
error              44 ext/pcre/pcrelib/sljit/sljitLir.c 			return compiler->error; \
error              56 ext/pcre/pcrelib/sljit/sljitLir.c 			compiler->error = SLJIT_ERR_ALLOC_FAILED; \
error              64 ext/pcre/pcrelib/sljit/sljitLir.c 			compiler->error = SLJIT_ERR_ALLOC_FAILED; \
error              72 ext/pcre/pcrelib/sljit/sljitLir.c 			compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \
error             266 ext/pcre/pcrelib/sljit/sljitLir.c 			compiler->error = SLJIT_ERR_BAD_ARGUMENT; \
error             274 ext/pcre/pcrelib/sljit/sljitLir.c 			compiler->error = SLJIT_ERR_BAD_ARGUMENT; \
error             350 ext/pcre/pcrelib/sljit/sljitLir.c 	compiler->error = SLJIT_SUCCESS;
error             440 ext/pcre/pcrelib/sljit/sljitLir.c 	if (compiler->error == SLJIT_SUCCESS)
error             441 ext/pcre/pcrelib/sljit/sljitLir.c 		compiler->error = SLJIT_ERR_ALLOC_FAILED;
error             300 ext/pcre/pcrelib/sljit/sljitLir.h 	sljit_si error;
error             430 ext/pcre/pcrelib/sljit/sljitLir.h static SLJIT_INLINE sljit_si sljit_get_compiler_error(struct sljit_compiler *compiler) { return compiler->error; }
error             630 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 						compiler->error = SLJIT_ERR_ALLOC_FAILED;
error             720 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 				compiler->error = SLJIT_ERR_ALLOC_FAILED;
error             794 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 	compiler->error = SLJIT_ERR_COMPILED;
error            1589 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 		return compiler->error;
error            1598 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 		return compiler->error;
error            1688 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 			FAIL_IF(compiler->error);
error            1733 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 				FAIL_IF(compiler->error);
error            2056 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 			FAIL_IF(compiler->error);
error            2064 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 			FAIL_IF(compiler->error);
error            2279 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 		return compiler->error;
error            2297 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c 			FAIL_IF(compiler->error);
error             310 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 	compiler->error = SLJIT_ERR_COMPILED;
error             951 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 					FAIL_IF(compiler->error);
error             996 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			FAIL_IF(compiler->error);
error            1015 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			FAIL_IF(compiler->error);
error            1023 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 		FAIL_IF(compiler->error);
error            1046 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 		return compiler->error;
error            1055 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 		return compiler->error;
error            1354 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 				FAIL_IF(compiler->error);
error            1365 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 				return compiler->error;
error            1384 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			FAIL_IF(compiler->error);
error            1401 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			return compiler->error;
error            1440 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			FAIL_IF(compiler->error);
error            1446 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			FAIL_IF(compiler->error);
error            1485 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			return compiler->error;
error            1565 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c 			FAIL_IF(compiler->error);
error             416 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 	compiler->error = SLJIT_ERR_COMPILED;
error            1035 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 					FAIL_IF(compiler->error);
error            1070 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error            1081 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error            1089 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 		FAIL_IF(compiler->error);
error            1113 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 		return compiler->error;
error            1122 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 		return compiler->error;
error            1364 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 				FAIL_IF(compiler->error);
error            1375 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 				return compiler->error;
error            1393 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error            1408 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			return compiler->error;
error            1439 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error            1445 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error            1487 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			return compiler->error;
error            1564 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error            1572 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error            1776 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 		return compiler->error;
error            1794 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c 			FAIL_IF(compiler->error);
error             478 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 	compiler->error = SLJIT_ERR_COMPILED;
error             884 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		return compiler->error;
error             893 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 		return compiler->error;
error             969 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 			FAIL_IF(compiler->error);
error             997 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 			FAIL_IF(compiler->error);
error            1024 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 			return compiler->error;
error            1470 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 			FAIL_IF(compiler->error);
error            1480 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c 			FAIL_IF(compiler->error);
error             490 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c 	compiler->error = SLJIT_ERR_COMPILED;
error            1113 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c 		return compiler->error;
error            1171 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c 		FAIL_IF(compiler->error);
error            1189 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c 		FAIL_IF(compiler->error);
error            1946 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c 			FAIL_IF(compiler->error);
error            1954 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c 			FAIL_IF(compiler->error);
error             376 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 	compiler->error = SLJIT_ERR_COMPILED;
error             619 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 		return compiler->error;
error             628 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 		return compiler->error;
error             698 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 			FAIL_IF(compiler->error);
error             726 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 			FAIL_IF(compiler->error);
error             753 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 			return compiler->error;
error            1105 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 			FAIL_IF(compiler->error);
error            1115 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c 			FAIL_IF(compiler->error);
error            1115 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 	compiler->error = SLJIT_ERR_COMPILED;
error            1571 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		return compiler->error;
error            1581 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 		return compiler->error;
error            2045 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 			FAIL_IF(compiler->error);
error            2070 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 			FAIL_IF(compiler->error);
error            2095 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c 			return compiler->error;
error             557 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 	compiler->error = SLJIT_ERR_COMPILED;
error            2145 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 				return compiler->error;
error            2165 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 				return compiler->error;
error            2854 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c 		return compiler->error;
error             255 ext/pcre/php_pcre.c 	const char			*error;
error             421 ext/pcre/php_pcre.c 					  &error,
error             426 ext/pcre/php_pcre.c 		php_error_docref(NULL TSRMLS_CC,E_WARNING, "Compilation failed: %s at offset %d", error, erroffset);
error             437 ext/pcre/php_pcre.c 		extra = pcre_study(re, soptions, &error);
error             441 ext/pcre/php_pcre.c 		if (error != NULL) {
error            1331 ext/pdo/pdo_stmt.c 	int error = 0, old_arg_count;
error            1360 ext/pdo/pdo_stmt.c 	if (class_name && !error) {
error            1365 ext/pdo/pdo_stmt.c 			error = 1;
error            1367 ext/pdo/pdo_stmt.c 	} else if (!error) {
error            1371 ext/pdo/pdo_stmt.c 	if (!error && !do_fetch(stmt, TRUE, return_value, how, ori, off, 0 TSRMLS_CC)) {
error            1372 ext/pdo/pdo_stmt.c 		error = 1;
error            1374 ext/pdo/pdo_stmt.c 	if (error) {
error            1382 ext/pdo/pdo_stmt.c 	if (error) {
error            1419 ext/pdo/pdo_stmt.c 	int error = 0, flags, old_arg_count;
error            1446 ext/pdo/pdo_stmt.c 				error = 1;
error            1457 ext/pdo/pdo_stmt.c 				error = 1;
error            1463 ext/pdo/pdo_stmt.c 					error = 1;
error            1468 ext/pdo/pdo_stmt.c 		if (!error) {
error            1478 ext/pdo/pdo_stmt.c 			error = 1;
error            1484 ext/pdo/pdo_stmt.c 				error = 1;
error            1502 ext/pdo/pdo_stmt.c 			error = 1;
error            1509 ext/pdo/pdo_stmt.c 			error = 1;
error            1520 ext/pdo/pdo_stmt.c 	if (!error)	{
error            1533 ext/pdo/pdo_stmt.c 			error = 2;
error            1536 ext/pdo/pdo_stmt.c 	if (!error) {
error            1559 ext/pdo/pdo_stmt.c 	if (error) {
error            1561 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             666 ext/phar/phar.c 	if (error) {
error             667 ext/phar/phar.c 		*error = NULL;
error             743 ext/phar/phar.c 		if (error) {
error             744 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             769 ext/phar/phar.c 			if (error) {
error             770 ext/phar/phar.c 				spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             788 ext/phar/phar.c 					if (error) {
error             789 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" openssl signature length could not be read", fname);
error             806 ext/phar/phar.c 					if (error) {
error             807 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" openssl signature could not be read", fname);
error             812 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             816 ext/phar/phar.c 					if (error) {
error             817 ext/phar/phar.c 						char *save = *error;
error             818 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" openssl signature could not be verified: %s", fname, *error);
error             836 ext/phar/phar.c 					if (error) {
error             837 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             842 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             845 ext/phar/phar.c 					if (error) {
error             846 ext/phar/phar.c 						char *save = *error;
error             847 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" SHA512 signature could not be verified: %s", fname, *error);
error             863 ext/phar/phar.c 					if (error) {
error             864 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             869 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             872 ext/phar/phar.c 					if (error) {
error             873 ext/phar/phar.c 						char *save = *error;
error             874 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" SHA256 signature could not be verified: %s", fname, *error);
error             887 ext/phar/phar.c 				if (error) {
error             888 ext/phar/phar.c 					spprintf(error, 0, "phar \"%s\" has a unsupported signature", fname);
error             901 ext/phar/phar.c 					if (error) {
error             902 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             907 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             910 ext/phar/phar.c 					if (error) {
error             911 ext/phar/phar.c 						char *save = *error;
error             912 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" SHA1 signature could not be verified: %s", fname, *error);
error             928 ext/phar/phar.c 					if (error) {
error             929 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" has a broken signature", fname);
error             934 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             937 ext/phar/phar.c 					if (error) {
error             938 ext/phar/phar.c 						char *save = *error;
error             939 ext/phar/phar.c 						spprintf(error, 0, "phar \"%s\" MD5 signature could not be verified: %s", fname, *error);
error             950 ext/phar/phar.c 				if (error) {
error             951 ext/phar/phar.c 					spprintf(error, 0, "phar \"%s\" has a broken or unsupported signature", fname);
error             959 ext/phar/phar.c 		if (error) {
error             960 ext/phar/phar.c 			spprintf(error, 0, "phar \"%s\" does not have a signature", fname);
error             991 ext/phar/phar.c 			if (error) {
error             992 ext/phar/phar.c 				spprintf(error, 0, "cannot load phar \"%s\" with implicit alias \"%s\" under different alias \"%s\"", fname, buffer, alias);
error            1249 ext/phar/phar.c 	if (error) {
error            1250 ext/phar/phar.c 		*error = NULL;
error            1260 ext/phar/phar.c 		if (error) {
error            1262 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            1264 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            1276 ext/phar/phar.c 			if (error) {
error            1277 ext/phar/phar.c 				spprintf(error, 0, "Cannot open '%s' as a PharData object. Use Phar::__construct() for executable archives", fname);
error            1285 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            1295 ext/phar/phar.c 		if (error) {
error            1296 ext/phar/phar.c 			*error = my_error;
error            1305 ext/phar/phar.c 		return phar_open_or_create_zip(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC);
error            1310 ext/phar/phar.c 		return phar_open_or_create_tar(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC);
error            1313 ext/phar/phar.c 	return phar_create_or_parse_filename(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC);
error            1344 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            1367 ext/phar/phar.c 			if (error) {
error            1368 ext/phar/phar.c 				spprintf(error, 0, "creating archive \"%s\" disabled by the php.ini setting phar.readonly", fname);
error            1424 ext/phar/phar.c 				if (error) {
error            1425 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            1445 ext/phar/phar.c 				if (error) {
error            1446 ext/phar/phar.c 					spprintf(error, 0, "archive \"%s\" cannot be associated with alias \"%s\", already in use", fname, alias);
error            1477 ext/phar/phar.c 	if (error) {
error            1478 ext/phar/phar.c 		*error = NULL;
error            1485 ext/phar/phar.c 	if (phar_open_parsed_phar(fname, fname_len, alias, alias_len, is_data, options, pphar, error TSRMLS_CC) == SUCCESS) {
error            1487 ext/phar/phar.c 	} else if (error && *error) {
error            1503 ext/phar/phar.c 			if (error) {
error            1504 ext/phar/phar.c 				spprintf(error, 0, "unable to open phar for reading \"%s\"", fname);
error            1518 ext/phar/phar.c 	ret =  phar_open_from_fp(fp, fname, fname_len, alias, alias_len, options, pphar, is_data, error TSRMLS_CC);
error            1577 ext/phar/phar.c 	if (error) {
error            1578 ext/phar/phar.c 		*error = NULL;
error            1701 ext/phar/phar.c 				return phar_parse_zipfile(fp, fname, fname_len, alias, alias_len, pphar, error TSRMLS_CC);
error            1707 ext/phar/phar.c 					return phar_parse_tarfile(fp, fname, fname_len, alias, alias_len, pphar, is_data, compression, error TSRMLS_CC);
error            1714 ext/phar/phar.c 			return phar_parse_pharfile(fp, fname, fname_len, alias, alias_len, halt_offset, pphar, compression, error TSRMLS_CC);
error            2334 ext/phar/phar.c 	if (error) {
error            2335 ext/phar/phar.c 		*error = NULL;
error            2346 ext/phar/phar.c 		if (error) {
error            2347 ext/phar/phar.c 			spprintf(error, 0, "cannot initialize a phar outside of PHP execution");
error            2356 ext/phar/phar.c 		if (error) {
error            2357 ext/phar/phar.c 			spprintf(error, 0, "__HALT_COMPILER(); must be declared in a phar");
error            2377 ext/phar/phar.c 		if (error) {
error            2378 ext/phar/phar.c 			spprintf(error, 0, "unable to open phar for reading \"%s\"", fname);
error            2391 ext/phar/phar.c 	ret = phar_open_from_fp(fp, fname, fname_len, alias, alias_len, REPORT_ERRORS, NULL, 0, error TSRMLS_CC);
error            2411 ext/phar/phar.c 	if (error) {
error            2412 ext/phar/phar.c 		*error = NULL;
error            2421 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            2428 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            2441 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            2453 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            2482 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            2524 ext/phar/phar.c 	if (error) {
error            2525 ext/phar/phar.c 		*error = NULL;
error            2541 ext/phar/phar.c 		if (error) {
error            2542 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            2549 ext/phar/phar.c 		if (error) {
error            2550 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            2587 ext/phar/phar.c 		if (error) {
error            2588 ext/phar/phar.c 			spprintf(error, 0, "internal error: attempt to flush cached zip-based phar \"%s\"", phar->fname);
error            2593 ext/phar/phar.c 	if (error) {
error            2594 ext/phar/phar.c 		*error = NULL;
error            2604 ext/phar/phar.c 		return phar_zip_flush(phar, user_stub, len, convert, error TSRMLS_CC);
error            2608 ext/phar/phar.c 		return phar_tar_flush(phar, user_stub, len, convert, error TSRMLS_CC);
error            2625 ext/phar/phar.c 		if (error) {
error            2626 ext/phar/phar.c 			spprintf(error, 0, "unable to create temporary file");
error            2642 ext/phar/phar.c 				if (error) {
error            2643 ext/phar/phar.c 					spprintf(error, 0, "unable to access resource to copy stub to new phar \"%s\"", phar->fname);
error            2659 ext/phar/phar.c 				if (error) {
error            2660 ext/phar/phar.c 					spprintf(error, 0, "unable to read resource to copy stub to new phar \"%s\"", phar->fname);
error            2675 ext/phar/phar.c 			if (error) {
error            2676 ext/phar/phar.c 				spprintf(error, 0, "illegal stub for phar \"%s\"", phar->fname);
error            2692 ext/phar/phar.c 			if (error) {
error            2693 ext/phar/phar.c 				spprintf(error, 0, "unable to create stub from string in new phar \"%s\"", phar->fname);
error            2720 ext/phar/phar.c 			if (error) {
error            2722 ext/phar/phar.c 					spprintf(error, 0, "unable to create stub in new phar \"%s\"", phar->fname);
error            2724 ext/phar/phar.c 					spprintf(error, 0, "unable to copy stub of old phar to new phar \"%s\"", phar->fname);
error            2820 ext/phar/phar.c 			newentry = phar_open_jit(phar, entry, error TSRMLS_CC);
error            2823 ext/phar/phar.c 				efree(*error);
error            2824 ext/phar/phar.c 				*error = NULL;
error            2835 ext/phar/phar.c 			if (error) {
error            2836 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            2859 ext/phar/phar.c 				if (error) {
error            2860 ext/phar/phar.c 					spprintf(error, 0, "unable to gzip compress file \"%s\" to new phar \"%s\"", entry->filename, phar->fname);
error            2863 ext/phar/phar.c 				if (error) {
error            2864 ext/phar/phar.c 					spprintf(error, 0, "unable to bzip2 compress file \"%s\" to new phar \"%s\"", entry->filename, phar->fname);
error            2875 ext/phar/phar.c 			if (error) {
error            2876 ext/phar/phar.c 				spprintf(error, 0, "unable to create temporary file");
error            2890 ext/phar/phar.c 			if (error) {
error            2891 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            2901 ext/phar/phar.c 			if (error) {
error            2902 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            2964 ext/phar/phar.c 		if (error) {
error            2965 ext/phar/phar.c 			spprintf(error, 0, "unable to write manifest header of new phar \"%s\"", phar->fname);
error            2985 ext/phar/phar.c 		if (error) {
error            2986 ext/phar/phar.c 			spprintf(error, 0, "unable to write manifest meta-data of new phar \"%s\"", phar->fname);
error            3024 ext/phar/phar.c 			if (error) {
error            3026 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            3028 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            3059 ext/phar/phar.c 			if (error) {
error            3060 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            3075 ext/phar/phar.c 			if (error) {
error            3076 ext/phar/phar.c 				spprintf(error, 0, "unable to write manifest padding byte");
error            3107 ext/phar/phar.c 				if (error) {
error            3108 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            3119 ext/phar/phar.c 			if (error) {
error            3120 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            3135 ext/phar/phar.c 			if (error) {
error            3136 ext/phar/phar.c 				spprintf(error, 0, "unable to write contents of file \"%s\" to new phar \"%s\"", entry->filename, phar->fname);
error            3181 ext/phar/phar.c 				if (error) {
error            3182 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            3190 ext/phar/phar.c 				if (FAILURE == phar_create_signature(phar, newfile, &digest, &digest_len, error TSRMLS_CC)) {
error            3191 ext/phar/phar.c 					if (error) {
error            3192 ext/phar/phar.c 						char *save = *error;
error            3193 ext/phar/phar.c 						spprintf(error, 0, "phar error: unable to write signature: %s", save);
error            3251 ext/phar/phar.c 			if (error) {
error            3252 ext/phar/phar.c 				spprintf(error, 4096, "unable to open new phar \"%s\" for writing", phar->fname);
error            3267 ext/phar/phar.c 				if (error) {
error            3268 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            3297 ext/phar/phar.c 		if (error) {
error            3298 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             959 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *stub, *error;
error             967 ext/phar/phar_object.c 	stub = phar_create_default_stub(index, webindex, &stub_len, &error TSRMLS_CC);
error             969 ext/phar/phar_object.c 	if (error) {
error             970 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error             971 ext/phar/phar_object.c 		efree(error);
error             982 ext/phar/phar_object.c 	char *alias = NULL, *error;
error             992 ext/phar/phar_object.c 	RETVAL_BOOL(phar_open_executed_filename(alias, alias_len, &error TSRMLS_CC) == SUCCESS);
error             994 ext/phar/phar_object.c 	if (error) {
error             995 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error             996 ext/phar/phar_object.c 		efree(error);
error            1004 ext/phar/phar_object.c 	char *fname, *alias = NULL, *error;
error            1013 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            1015 ext/phar/phar_object.c 	if (error) {
error            1016 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            1017 ext/phar/phar_object.c 		efree(error);
error            1144 ext/phar/phar_object.c 	char *fname, *alias = NULL, *error, *arch = NULL, *entry = NULL, *save_fname;
error            1189 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            1200 ext/phar/phar_object.c 		if (error) {
error            1202 ext/phar/phar_object.c 				"%s", error);
error            1203 ext/phar/phar_object.c 			efree(error);
error            1325 ext/phar/phar_object.c 	char *fname, *error, *zname, *arch, *entry;
error            1338 ext/phar/phar_object.c 	if (FAILURE == phar_open_from_filename(fname, fname_len, NULL, 0, REPORT_ERRORS, &phar, &error TSRMLS_CC)) {
error            1339 ext/phar/phar_object.c 		if (error) {
error            1340 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "Unknown phar archive \"%s\": %s", fname, error);
error            1341 ext/phar/phar_object.c 			efree(error);
error            1427 ext/phar/phar_object.c 	char *fname, *error = NULL, *base = p_obj->b, *opened, *save = NULL, *temp = NULL;
error            1676 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            1677 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            1678 ext/phar/phar_object.c 		efree(error);
error            1699 ext/phar/phar_object.c 		if (error) {
error            1700 ext/phar/phar_object.c 			efree(error);
error            1745 ext/phar/phar_object.c 	char *dir, *error, *regex = NULL;
error            1854 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            1856 ext/phar/phar_object.c 		if (error) {
error            1857 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            1858 ext/phar/phar_object.c 			efree(error);
error            1884 ext/phar/phar_object.c 	char *error;
error            1922 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            1923 ext/phar/phar_object.c 		if (error) {
error            1924 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            1925 ext/phar/phar_object.c 			efree(error);
error            1976 ext/phar/phar_object.c 	char *error;
error            1980 ext/phar/phar_object.c 	if (FAILURE == phar_open_entry_fp(entry, &error, 1 TSRMLS_CC)) {
error            1981 ext/phar/phar_object.c 		if (error) {
error            1983 ext/phar/phar_object.c 				"Cannot convert phar archive \"%s\", unable to open entry \"%s\" contents: %s", entry->phar->fname, entry->filename, error);
error            1984 ext/phar/phar_object.c 			efree(error);
error            2029 ext/phar/phar_object.c 	char *error;
error            2186 ext/phar/phar_object.c 	phar_flush(phar, 0, 0, 1, &error TSRMLS_CC);
error            2188 ext/phar/phar_object.c 	if (error) {
error            2189 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error);
error            2190 ext/phar/phar_object.c 		efree(error);
error            2621 ext/phar/phar_object.c 	char *error;
error            2655 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, NULL, 0, 0, &error TSRMLS_CC);
error            2656 ext/phar/phar_object.c 	if (error) {
error            2657 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2658 ext/phar/phar_object.c 		efree(error);
error            2703 ext/phar/phar_object.c 	char *alias, *error, *oldalias;
error            2735 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            2737 ext/phar/phar_object.c 				efree(error);
error            2740 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2741 ext/phar/phar_object.c 			efree(error);
error            2771 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, NULL, 0, 0, &error TSRMLS_CC);
error            2773 ext/phar/phar_object.c 		if (error) {
error            2777 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2781 ext/phar/phar_object.c 			efree(error);
error            2848 ext/phar/phar_object.c 	char *error;
error            2863 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            2865 ext/phar/phar_object.c 	if (error) {
error            2866 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2867 ext/phar/phar_object.c 		efree(error);
error            2879 ext/phar/phar_object.c 	char *stub, *error;
error            2913 ext/phar/phar_object.c 			phar_flush(phar_obj->arc.archive, (char *) &zstub, len, 0, &error TSRMLS_CC);
error            2914 ext/phar/phar_object.c 			if (error) {
error            2915 ext/phar/phar_object.c 				zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2916 ext/phar/phar_object.c 				efree(error);
error            2928 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, stub, stub_len, 0, &error TSRMLS_CC);
error            2930 ext/phar/phar_object.c 		if (error) {
error            2931 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            2932 ext/phar/phar_object.c 			efree(error);
error            2957 ext/phar/phar_object.c 	char *index = NULL, *webindex = NULL, *error = NULL, *stub = NULL;
error            2989 ext/phar/phar_object.c 		stub = phar_create_default_stub(index, webindex, &stub_len, &error TSRMLS_CC);
error            2991 ext/phar/phar_object.c 		if (error) {
error            2992 ext/phar/phar_object.c 			zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0 TSRMLS_CC, "%s", error);
error            2993 ext/phar/phar_object.c 			efree(error);
error            3007 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, stub, stub_len, 1, &error TSRMLS_CC);
error            3013 ext/phar/phar_object.c 	if (error) {
error            3014 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3015 ext/phar/phar_object.c 		efree(error);
error            3032 ext/phar/phar_object.c 	char *error, *key = NULL;
error            3067 ext/phar/phar_object.c 			phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3068 ext/phar/phar_object.c 			if (error) {
error            3069 ext/phar/phar_object.c 				zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3070 ext/phar/phar_object.c 				efree(error);
error            3314 ext/phar/phar_object.c 	char *error;
error            3376 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3378 ext/phar/phar_object.c 	if (error) {
error            3379 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error);
error            3380 ext/phar/phar_object.c 		efree(error);
error            3390 ext/phar/phar_object.c 	char *error;
error            3420 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3422 ext/phar/phar_object.c 	if (error) {
error            3423 ext/phar/phar_object.c 		zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error);
error            3424 ext/phar/phar_object.c 		efree(error);
error            3436 ext/phar/phar_object.c 	char *oldfile, *newfile, *error;
error            3516 ext/phar/phar_object.c 		if (FAILURE == phar_copy_entry_fp(oldentry, &newentry, &error TSRMLS_CC)) {
error            3519 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3520 ext/phar/phar_object.c 			efree(error);
error            3527 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3529 ext/phar/phar_object.c 	if (error) {
error            3530 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3531 ext/phar/phar_object.c 		efree(error);
error            3580 ext/phar/phar_object.c 	char *fname, *error;
error            3591 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            3592 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            3627 ext/phar/phar_object.c 	char *error;
error            3637 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            3638 ext/phar/phar_object.c 		if (error) {
error            3639 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            3640 ext/phar/phar_object.c 			efree(error);
error            3646 ext/phar/phar_object.c 		if (error) {
error            3647 ext/phar/phar_object.c 			efree(error);
error            3673 ext/phar/phar_object.c 		phar_flush(*pphar, 0, 0, 0, &error TSRMLS_CC);
error            3675 ext/phar/phar_object.c 		if (error) {
error            3676 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3677 ext/phar/phar_object.c 			efree(error);
error            3687 ext/phar/phar_object.c 	char *error;
error            3690 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            3691 ext/phar/phar_object.c 		if (error) {
error            3692 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            3693 ext/phar/phar_object.c 			efree(error);
error            3700 ext/phar/phar_object.c 		if (error) {
error            3701 ext/phar/phar_object.c 			efree(error);
error            3709 ext/phar/phar_object.c 		phar_flush(*pphar, 0, 0, 0, &error TSRMLS_CC);
error            3711 ext/phar/phar_object.c 		if (error) {
error            3712 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3713 ext/phar/phar_object.c 			efree(error);
error            3763 ext/phar/phar_object.c 	char *fname, *error;
error            3795 ext/phar/phar_object.c 			phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            3797 ext/phar/phar_object.c 			if (error) {
error            3798 ext/phar/phar_object.c 				zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            3799 ext/phar/phar_object.c 				efree(error);
error            4036 ext/phar/phar_object.c 	char *error;
error            4062 ext/phar/phar_object.c 	phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            4064 ext/phar/phar_object.c 	if (error) {
error            4065 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4066 ext/phar/phar_object.c 		efree(error);
error            4076 ext/phar/phar_object.c 	char *error;
error            4089 ext/phar/phar_object.c 		phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC);
error            4091 ext/phar/phar_object.c 		if (error) {
error            4092 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4093 ext/phar/phar_object.c 			efree(error);
error            4141 ext/phar/phar_object.c 			spprintf(error, 4096, "Cannot extract \"%s...\" to \"%s...\", extracted filename is too long for filesystem", tmp, dest);
error            4144 ext/phar/phar_object.c 			spprintf(error, 4096, "Cannot extract \"%s\", internal error", entry->filename);
error            4172 ext/phar/phar_object.c 			spprintf(error, 4096, "Cannot extract \"%s...\" to \"%s...\", extracted filename is too long for filesystem", tmp, fullpath);
error            4175 ext/phar/phar_object.c 			spprintf(error, 4096, "Cannot extract \"%s\" to \"%s...\", extracted filename is too long for filesystem", entry->filename, fullpath);
error            4183 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\", internal error", entry->filename);
error            4190 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", openbasedir/safe mode restrictions in effect", entry->filename, fullpath);
error            4198 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", path already exists", entry->filename, fullpath);
error            4216 ext/phar/phar_object.c 				spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath);
error            4223 ext/phar/phar_object.c 				spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath);
error            4252 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\", could not open for writing \"%s\"", entry->filename, fullpath);
error            4258 ext/phar/phar_object.c 		if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) {
error            4259 ext/phar/phar_object.c 			if (error) {
error            4260 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            4262 ext/phar/phar_object.c 				spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to open internal file pointer", entry->filename, fullpath);
error            4271 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to seek internal file pointer", entry->filename, fullpath);
error            4278 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", copying contents failed", entry->filename, fullpath);
error            4288 ext/phar/phar_object.c 		spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", setting file permissions failed", entry->filename, fullpath);
error            4303 ext/phar/phar_object.c 	char *error = NULL;
error            4386 ext/phar/phar_object.c 						if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) {
error            4388 ext/phar/phar_object.c 								"Extraction from phar \"%s\" failed: %s", phar_obj->arc.archive->fname, error);
error            4389 ext/phar/phar_object.c 							efree(error);
error            4407 ext/phar/phar_object.c 		if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) {
error            4409 ext/phar/phar_object.c 				"Extraction from phar \"%s\" failed: %s", phar_obj->arc.archive->fname, error);
error            4410 ext/phar/phar_object.c 			efree(error);
error            4430 ext/phar/phar_object.c 			if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) {
error            4432 ext/phar/phar_object.c 					"Extraction from phar \"%s\" failed: %s", phar->fname, error);
error            4433 ext/phar/phar_object.c 				efree(error);
error            4448 ext/phar/phar_object.c 	char *fname, *arch, *entry, *error;
error            4472 ext/phar/phar_object.c 	if (phar_open_from_filename(arch, arch_len, NULL, 0, REPORT_ERRORS, &phar_data, &error TSRMLS_CC) == FAILURE) {
error            4475 ext/phar/phar_object.c 		if (error) {
error            4477 ext/phar/phar_object.c 				"Cannot open phar file '%s': %s", fname, error);
error            4478 ext/phar/phar_object.c 			efree(error);
error            4486 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            4488 ext/phar/phar_object.c 			"Cannot access phar file entry '%s' in archive '%s'%s%s", entry, arch, error ? ", " : "", error ? error : "");
error            4637 ext/phar/phar_object.c 	char *error;
error            4686 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            4688 ext/phar/phar_object.c 	if (error) {
error            4689 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4690 ext/phar/phar_object.c 		efree(error);
error            4740 ext/phar/phar_object.c 	char *error;
error            4780 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            4782 ext/phar/phar_object.c 	if (error) {
error            4783 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4784 ext/phar/phar_object.c 		efree(error);
error            4794 ext/phar/phar_object.c 	char *error;
error            4829 ext/phar/phar_object.c 		phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            4831 ext/phar/phar_object.c 		if (error) {
error            4832 ext/phar/phar_object.c 			zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            4833 ext/phar/phar_object.c 			efree(error);
error            4850 ext/phar/phar_object.c 	char *error;
error            4872 ext/phar/phar_object.c 	if (SUCCESS != phar_open_entry_fp(link, &error, 0 TSRMLS_CC)) {
error            4874 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            4875 ext/phar/phar_object.c 		efree(error);
error            4901 ext/phar/phar_object.c 	char *error;
error            4956 ext/phar/phar_object.c 				if (SUCCESS != phar_open_entry_fp(entry_obj->ent.entry, &error, 1 TSRMLS_CC)) {
error            4958 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            4959 ext/phar/phar_object.c 					efree(error);
error            4987 ext/phar/phar_object.c 				if (SUCCESS != phar_open_entry_fp(entry_obj->ent.entry, &error, 1 TSRMLS_CC)) {
error            4989 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            4990 ext/phar/phar_object.c 					efree(error);
error            5011 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            5013 ext/phar/phar_object.c 	if (error) {
error            5014 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            5015 ext/phar/phar_object.c 		efree(error);
error            5027 ext/phar/phar_object.c 	char *error;
error            5090 ext/phar/phar_object.c 	phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC);
error            5092 ext/phar/phar_object.c 	if (error) {
error            5093 ext/phar/phar_object.c 		zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error);
error            5094 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             119 ext/phar/phar_path_check.c 			*error = "back-slash";
error             127 ext/phar/phar_path_check.c 			*error = "star";
error             139 ext/phar/phar_path_check.c 			*error = NULL;
error             153 ext/phar/phar_path_check.c 			*error ="illegal character";
error             209 ext/phar/phar_path_check.c 				*error ="illegal character";
error             212 ext/phar/phar_path_check.c 			*error = NULL;
error             276 ext/phar/phar_path_check.c 			*error = "double slash";
error             289 ext/phar/phar_path_check.c 			*error = "current directory reference";
error             297 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             130 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             154 ext/phar/tar.c 	if (error) {
error             155 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             208 ext/phar/tar.c 	if (error) {
error             209 ext/phar/tar.c 		*error = NULL;
error             218 ext/phar/tar.c 		if (error) {
error             219 ext/phar/tar.c 			spprintf(error, 4096, "phar error: \"%s\" is not a tar file or is truncated", fname);
error             271 ext/phar/tar.c 				if (error) {
error             272 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             282 ext/phar/tar.c 				if (error) {
error             283 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" signature cannot be read", fname);
error             297 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             298 ext/phar/tar.c 				if (error) {
error             299 ext/phar/tar.c 					char *save = *error;
error             300 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" signature cannot be verified: %s", fname, save);
error             311 ext/phar/tar.c 					if (error) {
error             312 ext/phar/tar.c 						spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             323 ext/phar/tar.c 				if (error) {
error             324 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             338 ext/phar/tar.c 			if (error) {
error             339 ext/phar/tar.c 				spprintf(error, 4096, "phar error: \"%s\" has entries after signature, invalid phar", fname);
error             352 ext/phar/tar.c 				if (error) {
error             353 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (invalid entry size)", fname);
error             364 ext/phar/tar.c 				if (error) {
error             365 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             380 ext/phar/tar.c 				if (error) {
error             381 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             392 ext/phar/tar.c 				if (error) {
error             393 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             448 ext/phar/tar.c 			if (error) {
error             449 ext/phar/tar.c 				spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (checksum mismatch of file \"%s\")", fname, entry.filename);
error             480 ext/phar/tar.c 				if (error) {
error             481 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             501 ext/phar/tar.c 				if (error) {
error             502 ext/phar/tar.c 					spprintf(error, 4096, "phar error: tar-based phar \"%s\" has invalid metadata in magic file \"%s\"", fname, entry.filename);
error             513 ext/phar/tar.c 				if (error) {
error             514 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             533 ext/phar/tar.c 					if (error) {
error             534 ext/phar/tar.c 						spprintf(error, 4096, "phar error: invalid alias \"%s\" in tar-based phar \"%s\"", buf, fname);
error             547 ext/phar/tar.c 				if (error) {
error             548 ext/phar/tar.c 					spprintf(error, 4096, "phar error: Unable to read alias from tar-based phar \"%s\"", fname);
error             564 ext/phar/tar.c 				if (error) {
error             565 ext/phar/tar.c 					spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             576 ext/phar/tar.c 			if (error) {
error             577 ext/phar/tar.c 				spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname);
error             595 ext/phar/tar.c 		if (error) {
error             596 ext/phar/tar.c 			spprintf(error, 0, "tar-based phar \"%s\" does not have a signature", fname);
error             622 ext/phar/tar.c 		if (error) {
error             623 ext/phar/tar.c 			spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\" to phar registry", fname);
error             639 ext/phar/tar.c 				if (error) {
error             640 ext/phar/tar.c 					spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\", alias is already in use", fname);
error             654 ext/phar/tar.c 					if (error) {
error             655 ext/phar/tar.c 						spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\", alias is already in use", fname);
error             685 ext/phar/tar.c 	char **error;
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             725 ext/phar/tar.c 			if (fp->error) {
error             726 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             739 ext/phar/tar.c 		if (fp->error) {
error             740 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             746 ext/phar/tar.c 		if (fp->error) {
error             747 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             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, checksum of file \"%s\" is too large for tar file format", entry->phar->fname, entry->filename);
error             775 ext/phar/tar.c 		if (fp->error) {
error             776 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             785 ext/phar/tar.c 		if (FAILURE == phar_open_entry_fp(entry, fp->error, 0 TSRMLS_CC)) {
error             790 ext/phar/tar.c 			if (fp->error) {
error             791 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             797 ext/phar/tar.c 			if (fp->error) {
error             798 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             861 ext/phar/tar.c 		spprintf(error, 0, "phar error: unable to create temporary file");
error             865 ext/phar/tar.c 		spprintf(error, 0, "phar tar error: unable to write metadata to magic metadata file \"%s\"", entry->filename);
error             878 ext/phar/tar.c 	char *lookfor, **error = i->error;
error             883 ext/phar/tar.c 			return phar_tar_setmetadata(entry->phar->metadata, entry, error TSRMLS_CC);
error             909 ext/phar/tar.c 		ret = phar_tar_setmetadata(entry->metadata, metadata, error TSRMLS_CC);
error             922 ext/phar/tar.c 		spprintf(error, 0, "phar tar error: unable to add magic metadata file to manifest for file \"%s\"", entry->filename);
error             926 ext/phar/tar.c 	return phar_tar_setmetadata(entry->metadata, metadata, error TSRMLS_CC);
error             950 ext/phar/tar.c 		if (error) {
error             951 ext/phar/tar.c 			spprintf(error, 0, "internal error: attempt to flush cached tar-based phar \"%s\"", phar->fname);
error             966 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error             970 ext/phar/tar.c 			if (error) {
error             971 ext/phar/tar.c 				spprintf(error, 0, "unable to set alias in tar-based phar \"%s\"", phar->fname);
error             979 ext/phar/tar.c 			if (error) {
error             980 ext/phar/tar.c 				spprintf(error, 0, "unable to set alias in tar-based phar \"%s\"", phar->fname);
error             994 ext/phar/tar.c 				if (error) {
error             995 ext/phar/tar.c 					spprintf(error, 0, "unable to access resource to copy stub to new tar-based phar \"%s\"", phar->fname);
error            1007 ext/phar/tar.c 				if (error) {
error            1008 ext/phar/tar.c 					spprintf(error, 0, "unable to read resource to copy stub to new tar-based phar \"%s\"", phar->fname);
error            1020 ext/phar/tar.c 			if (error) {
error            1021 ext/phar/tar.c 				spprintf(error, 0, "illegal stub for tar-based phar \"%s\"", phar->fname);
error            1034 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1041 ext/phar/tar.c 			if (error) {
error            1042 ext/phar/tar.c 				spprintf(error, 0, "unable to create stub from string in new tar-based phar \"%s\"", phar->fname);
error            1062 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1067 ext/phar/tar.c 			if (error) {
error            1068 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            1082 ext/phar/tar.c 					if (error) {
error            1083 ext/phar/tar.c 						spprintf(error, 0, "unable to create stub in tar-based phar \"%s\"", phar->fname);
error            1095 ext/phar/tar.c 				if (error) {
error            1096 ext/phar/tar.c 					spprintf(error, 0, "unable to overwrite stub in tar-based phar \"%s\"", phar->fname);
error            1114 ext/phar/tar.c 		if (error) {
error            1115 ext/phar/tar.c 			spprintf(error, 0, "unable to create temporary file");
error            1125 ext/phar/tar.c 	pass.error = error;
error            1132 ext/phar/tar.c 			if (ZEND_HASH_APPLY_KEEP != phar_tar_setmetadata(phar->metadata, mentry, error TSRMLS_CC)) {
error            1148 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            1155 ext/phar/tar.c 			if (ZEND_HASH_APPLY_KEEP != phar_tar_setmetadata(phar->metadata, mentry, error TSRMLS_CC)) {
error            1167 ext/phar/tar.c 	if (error && *error) {
error            1181 ext/phar/tar.c 		if (FAILURE == phar_create_signature(phar, newfile, &signature, &signature_length, error TSRMLS_CC)) {
error            1182 ext/phar/tar.c 			if (error) {
error            1183 ext/phar/tar.c 				char *save = *error;
error            1184 ext/phar/tar.c 				spprintf(error, 0, "phar error: unable to write signature to tar-based phar: %s", save);
error            1200 ext/phar/tar.c 			spprintf(error, 0, "phar error: unable to create temporary file");
error            1217 ext/phar/tar.c 			if (error) {
error            1218 ext/phar/tar.c 				spprintf(error, 0, "phar error: unable to write signature to tar-based phar %s", phar->fname);
error            1233 ext/phar/tar.c 		if (error && *error) {
error            1253 ext/phar/tar.c 	if (error && *error) {
error            1279 ext/phar/tar.c 			if (error) {
error            1280 ext/phar/tar.c 				spprintf(error, 0, "unable to open new phar \"%s\" for writing", phar->fname);
error            1303 ext/phar/tar.c 				if (error) {
error            1304 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            1301 ext/soap/php_http.c 		int error = 0;
error            1304 ext/soap/php_http.c 			error = 1;
error            1313 ext/soap/php_http.c 					error = 1;
error            1318 ext/soap/php_http.c 		if (error) {
error             101 ext/soap/php_xml.c 		ctxt->sax->error = NULL;
error             151 ext/soap/php_xml.c 		ctxt->sax->error = NULL;
error            2743 ext/soap/soap.c 	 			smart_str error = {0};
error            2744 ext/soap/soap.c 	 			smart_str_appends(&error,"Function (\"");
error            2745 ext/soap/soap.c 	 			smart_str_appends(&error,function);
error            2746 ext/soap/soap.c 	 			smart_str_appends(&error,"\") is not a valid method for this service");
error            2747 ext/soap/soap.c 	 			smart_str_0(&error);
error            2748 ext/soap/soap.c 				add_soap_fault(this_ptr, "Client", error.c, NULL, NULL TSRMLS_CC);
error            2749 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             393 ext/sockets/sockets.c 	php_sock->error		 = 0;
error             480 ext/sockets/sockets.c 	out_sock->error = 0;
error             558 ext/sockets/sockets.c 	if (error < -10000) {
error             559 ext/sockets/sockets.c 		error = -error - 10000;
error             562 ext/sockets/sockets.c 		buf = hstrerror(error);
error             569 ext/sockets/sockets.c 			spprintf(&(SOCKETS_G(strerror_buf)), 0, "Host lookup error %d", error);
error             574 ext/sockets/sockets.c 		buf = strerror(error);
error             582 ext/sockets/sockets.c 			NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &tmp, 0, NULL)
error             929 ext/sockets/sockets.c 	php_sock->error = 0;
error            1155 ext/sockets/sockets.c 			php_sock->error = errno;
error            1367 ext/sockets/sockets.c 	php_sock->error = 0;
error            2130 ext/sockets/sockets.c 	php_sock[0]->error		= 0;
error            2131 ext/sockets/sockets.c 	php_sock[1]->error		= 0;
error            2184 ext/sockets/sockets.c 		RETVAL_LONG(php_sock->error);
error            2204 ext/sockets/sockets.c 		php_sock->error = 0;
error            2239 ext/sockets/sockets.c 		goto error;
error            2247 ext/sockets/sockets.c 		goto error;
error            2255 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            1209 ext/spl/spl_dllist.c 		goto error;
error            1221 ext/spl/spl_dllist.c 			goto error;
error            1228 ext/spl/spl_dllist.c 		goto error;
error            1234 ext/spl/spl_dllist.c error:
error            26635 ext/sqlite3/libsqlite/sqlite3.c   pFile->lastErrno = error;
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             342 ext/xmlrpc/libxmlrpc/xmlrpc.c       if(request->error) {
error             343 ext/xmlrpc/libxmlrpc/xmlrpc.c          XMLRPC_CleanupValue(request->error);
error             538 ext/xmlrpc/libxmlrpc/xmlrpc.c 	if (request && error) {
error             539 ext/xmlrpc/libxmlrpc/xmlrpc.c 		if (request->error) {
error             540 ext/xmlrpc/libxmlrpc/xmlrpc.c 			XMLRPC_CleanupValue (request->error);
error             542 ext/xmlrpc/libxmlrpc/xmlrpc.c 		request->error = XMLRPC_CopyValue (error);
error             543 ext/xmlrpc/libxmlrpc/xmlrpc.c 		return request->error;
error             569 ext/xmlrpc/libxmlrpc/xmlrpc.c 	return request ? request->error : NULL;
error             761 ext/xmlrpc/libxmlrpc/xmlrpc.c    if(error) {
error             766 ext/xmlrpc/libxmlrpc/xmlrpc.c 					 error->line, error->column, error->byte_index);
error             769 ext/xmlrpc/libxmlrpc/xmlrpc.c       switch(error->parser_code) {
error             807 ext/xmlrpc/libxmlrpc/xmlrpc.c    STRUCT_XML_ELEM_ERROR error = {0};
error             813 ext/xmlrpc/libxmlrpc/xmlrpc.c 								  &error);
error             831 ext/xmlrpc/libxmlrpc/xmlrpc.c          if(error.parser_error) {
error             832 ext/xmlrpc/libxmlrpc/xmlrpc.c 				XMLRPC_RequestSetError (request, map_expat_errors (&error));
error            2571 ext/xmlrpc/libxmlrpc/xmlrpc.c    if(request && request->error) {
error            2572 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             158 main/SAPI.c    	int   error;
error             167 main/SAPI.c    		error = zend_call_function(&fci, &SG(fci_cache) TSRMLS_CC);
error             168 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             319 main/network.c 	int error = 0;
error             326 main/network.c 		error = php_socket_errno();
error             329 main/network.c 			*error_code = error;
error             332 main/network.c 		if (error != EINPROGRESS) {
error             334 main/network.c 				*error_string = php_socket_strerror(error, NULL, 0);
error             339 main/network.c 		if (asynchronous && error == EINPROGRESS) {
error             360 main/network.c 		error = PHP_TIMEOUT_ERROR_VALUE;
error             364 main/network.c 		len = sizeof(error);
error             369 main/network.c 		if (getsockopt(sockfd, SOL_SOCKET, SO_ERROR, (char*)&error, &len) != 0) {
error             384 main/network.c 		*error_code = error;
error             387 main/network.c 	if (error) {
error             390 main/network.c 			*error_string = php_socket_strerror(error, NULL, 0);
error             723 main/network.c 	int error = 0, n;
error             730 main/network.c 		error = PHP_TIMEOUT_ERROR_VALUE;
error             732 main/network.c 		error = php_socket_errno();
error             744 main/network.c 			error = php_socket_errno();
error             749 main/network.c 		*error_code = error;
error             752 main/network.c 		*error_string = php_socket_strerror(error, NULL, 0);
error             488 main/output.c  	char *handler_name = NULL, *error = NULL;
error             504 main/output.c  			if (SUCCESS == zend_fcall_info_init(output_handler, 0, &user->fci, &user->fcc, &handler_name, &error TSRMLS_CC)) {
error             512 main/output.c  			if (error) {
error             513 main/output.c  				php_error_docref("ref.outcontrol" TSRMLS_CC, E_WARNING, "%s", error);
error             514 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             583 run-tests.php  						error("Valgrind returned no version info, cannot proceed.\nPlease check if Valgrind is installed.");
error             587 run-tests.php  							error("Valgrind returned invalid version info (\"$valgrind_header\"), cannot proceed.");
error             879 run-tests.php  	$o = opendir($dir) or error("cannot open directory: $dir");
error            1034 run-tests.php  			error("Cannot open file '" . $filename_copy . "' (save_text)");
error            1039 run-tests.php  		error("Cannot open file '" . $filename . "' (save_text)");
error            1212 run-tests.php  	$fp = fopen($file, "rb") or error("Cannot open test file: $file");
error            1399 run-tests.php  			mkdir(dirname($copy_file), 0777, true) or error("Cannot create output directory - " . dirname($copy_file));
error            2073 run-tests.php  			error("Cannot create expected test output - $exp_filename");
error            2078 run-tests.php  			error("Cannot create test output - $output_filename");
error            2088 run-tests.php  			error("Cannot create test diff - $diff_filename");
error            2096 run-tests.php  			error("Cannot create test shell script - $sh_filename");
error            2108 run-tests.php  			error("Cannot create test log - $log_filename");
error            2625 run-tests.php  		error("Failed to open $JUNIT for writing.");
error            2813 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             502 sapi/fpm/fpm/fpm_conf.c 		char *error;
error             504 sapi/fpm/fpm/fpm_conf.c 		error = fpm_conf_set_integer(value, &subconf, 0);
error             506 sapi/fpm/fpm/fpm_conf.c 		if (error) { 
error             507 sapi/fpm/fpm/fpm_conf.c 			return error;
error            1241 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;;
error            1248 sapi/fpm/fpm/fpm_conf.c 	if (*error) return; /* We got already an error. Switch to the end. */
error            1263 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1274 sapi/fpm/fpm/fpm_conf.c 				*error = 1;
error            1284 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1298 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;
error            1320 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1326 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1337 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;
error            1340 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1347 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1367 sapi/fpm/fpm/fpm_conf.c 				*error = 1;
error            1374 sapi/fpm/fpm/fpm_conf.c 				*error = 1;
error            1385 sapi/fpm/fpm/fpm_conf.c 	*error = 1;
error            1391 sapi/fpm/fpm/fpm_conf.c 	int *error = (int *)arg;
error            1397 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1402 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1409 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1433 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1439 sapi/fpm/fpm/fpm_conf.c 		*error = 1;
error            1447 sapi/fpm/fpm/fpm_conf.c 	int *error;
error            1450 sapi/fpm/fpm/fpm_conf.c 	error = (int *)arg;
error            1451 sapi/fpm/fpm/fpm_conf.c 	if (*error) return; /* We got already an error. Switch to the end. */
error            1455 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_entry(arg1, arg2, error TSRMLS_CC);
error            1458 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_section(arg1, error TSRMLS_CC);
error            1461 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_array(arg1, arg3, arg2, error TSRMLS_CC);
error            1465 sapi/fpm/fpm/fpm_conf.c 			*error = 1;
error            1473 sapi/fpm/fpm/fpm_conf.c 	int error = 0;
error            1508 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            1510 sapi/fpm/fpm/fpm_conf.c 		if (error || tmp == FAILURE) {
error            1520 sapi/fpm/fpm/fpm_conf.c 			fpm_conf_ini_parser_include(tmp, &error TSRMLS_CC);
error            1521 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