error 877 Zend/zend.c void zenderror(const char *error) /* {{{ */ error 879 Zend/zend.c zend_error(E_PARSE, "%s", error); error 713 Zend/zend.h void zenderror(const char *error); error 305 Zend/zend_API.c static const char *zend_parse_arg_impl(int arg_num, zval **arg, va_list *va, const char **spec, char **error, int *severity TSRMLS_DC) /* {{{ */ 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 2685 Zend/zend_API.c static int zend_is_callable_check_class(const char *name, int name_len, zend_fcall_info_cache *fcc, int *strict_class, char **error TSRMLS_DC) /* {{{ */ error 2695 Zend/zend_API.c if (error) *error = estrdup("cannot access self:: when no class scope is active"); error 2707 Zend/zend_API.c if (error) *error = estrdup("cannot access parent:: when no class scope is active"); error 2709 Zend/zend_API.c if (error) *error = estrdup("cannot access parent:: when current class scope has no parent"); error 2722 Zend/zend_API.c if (error) *error = estrdup("cannot access static:: when no class scope is active"); error 2747 Zend/zend_API.c if (error) zend_spprintf(error, 0, "class '%.*s' not found", name_len, name); error 2754 Zend/zend_API.c static int zend_is_callable_check_func(int check_flags, zval *callable, zend_fcall_info_cache *fcc, int strict_class, char **error TSRMLS_DC) /* {{{ */ error 2765 Zend/zend_API.c if (error) { error 2766 Zend/zend_API.c *error = NULL; error 2800 Zend/zend_API.c if (error) zend_spprintf(error, 0, "invalid function name"); error 2811 Zend/zend_API.c if (!zend_is_callable_check_class(Z_STRVAL_P(callable), clen, fcc, &strict_class, error TSRMLS_CC)) { error 2819 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 2831 Zend/zend_API.c if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { error 2832 Zend/zend_API.c zend_spprintf(error, 0, "function '%s' not found or invalid function name", Z_STRVAL_P(callable)); error 2931 Zend/zend_API.c if (error) { error 2932 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 2953 Zend/zend_API.c if (error) { error 2954 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 2962 Zend/zend_API.c if (error) { error 2963 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 2975 Zend/zend_API.c if (error) { error 2976 Zend/zend_API.c if (*error) { error 2977 Zend/zend_API.c efree(*error); error 2979 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 2985 Zend/zend_API.c if (error) { error 2986 Zend/zend_API.c if (*error) { error 2987 Zend/zend_API.c efree(*error); error 2989 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 2996 Zend/zend_API.c } else if (error && !(check_flags & IS_CALLABLE_CHECK_SILENT)) { error 2998 Zend/zend_API.c if (error) zend_spprintf(error, 0, "class '%s' does not have a method '%s'", fcc->calling_scope->name, mname); error 3000 Zend/zend_API.c if (error) zend_spprintf(error, 0, "function '%s' does not exist", mname); error 3015 Zend/zend_API.c ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **callable_name, int *callable_name_len, zend_fcall_info_cache *fcc, char **error TSRMLS_DC) /* {{{ */ error 3030 Zend/zend_API.c if (error) { error 3031 Zend/zend_API.c *error = NULL; error 3075 Zend/zend_API.c ret = zend_is_callable_check_func(check_flags, callable, fcc, 0, error TSRMLS_CC); error 3121 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 3153 Zend/zend_API.c ret = zend_is_callable_check_func(check_flags, *method, fcc, strict_class, error TSRMLS_CC); error 3170 Zend/zend_API.c if (error) zend_spprintf(error, 0, "first array member is not a valid class name or object"); error 3172 Zend/zend_API.c if (error) zend_spprintf(error, 0, "second array member is not a valid method"); error 3175 Zend/zend_API.c if (error) zend_spprintf(error, 0, "array must have exactly two members"); error 3210 Zend/zend_API.c if (error) zend_spprintf(error, 0, "no array or string given"); error 3249 Zend/zend_API.c ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC) /* {{{ */ error 3251 Zend/zend_API.c if (!zend_is_callable_ex(callable, NULL, check_flags, callable_name, NULL, fcc, error TSRMLS_CC)) { error 303 Zend/zend_API.h ZEND_API zend_bool zend_is_callable_ex(zval *callable, zval *object_ptr, uint check_flags, char **callable_name, int *callable_name_len, zend_fcall_info_cache *fcc, char **error TSRMLS_DC); error 469 Zend/zend_API.h ZEND_API int zend_fcall_info_init(zval *callable, uint check_flags, zend_fcall_info *fci, zend_fcall_info_cache *fcc, char **callable_name, char **error TSRMLS_DC); error 5129 Zend/zend_compile.c int error = 0; error 5147 Zend/zend_compile.c error = 1; error 5163 Zend/zend_compile.c if (error) { error 670 Zend/zend_execute_API.c char *error = NULL; error 676 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 677 Zend/zend_execute_API.c if (error) { error 678 Zend/zend_execute_API.c zend_error(E_WARNING, "Invalid callback %s, %s", callable_name, error); error 679 Zend/zend_execute_API.c efree(error); error 685 Zend/zend_execute_API.c } else if (error) { error 687 Zend/zend_execute_API.c if (error[0] >= 'a' && error[0] <= 'z') { error 688 Zend/zend_execute_API.c error[0] += ('A' - 'a'); error 690 Zend/zend_execute_API.c zend_error(E_STRICT, "%s", error); error 691 Zend/zend_execute_API.c efree(error); error 492 ext/bz2/bz2.c int error, /* Error Container */ error 523 ext/bz2/bz2.c error = BZ2_bzBuffToBuffCompress(dest, &dest_len, source, source_len, block_size, 0, work_factor); error 524 ext/bz2/bz2.c if (error != BZ_OK) { error 526 ext/bz2/bz2.c RETURN_LONG(error); error 542 ext/bz2/bz2.c int source_len, error; error 569 ext/bz2/bz2.c while ((error = BZ2_bzDecompress(&bzs)) == BZ_OK && bzs.avail_in > 0) { error 577 ext/bz2/bz2.c if (error == BZ_STREAM_END || error == BZ_OK) { error 584 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 1323 ext/curl/interface.c int error; error 1346 ext/curl/interface.c error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); error 1348 ext/curl/interface.c if (error == FAILURE) { error 1385 ext/curl/interface.c int error; error 1413 ext/curl/interface.c error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); error 1415 ext/curl/interface.c if (error == FAILURE) { error 1458 ext/curl/interface.c int error; error 1492 ext/curl/interface.c error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); error 1494 ext/curl/interface.c if (error == FAILURE) { error 1538 ext/curl/interface.c int error; error 1567 ext/curl/interface.c error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); error 1569 ext/curl/interface.c if (error == FAILURE) { error 1620 ext/curl/interface.c int error; error 1644 ext/curl/interface.c error = zend_call_function(&fci, &t->fci_cache TSRMLS_CC); error 1646 ext/curl/interface.c if (error == FAILURE) { error 1700 ext/curl/interface.c int error; error 1713 ext/curl/interface.c error = call_user_function(EG(function_table), NULL, func, retval, 2, argv TSRMLS_CC); error 1714 ext/curl/interface.c if (error == FAILURE) { error 2100 ext/curl/interface.c CURLcode error=CURLE_OK; error 2110 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, 2); error 2267 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue)); error 2353 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, NULL); error 2395 ext/curl/interface.c error = CURLE_OK; error 2475 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, fp); error 2556 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, slist); error 2575 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, Z_LVAL_PP(zvalue)); error 2645 ext/curl/interface.c error = curl_formadd(&first, &last, error 2684 ext/curl/interface.c error = curl_formadd(&first, &last, error 2698 ext/curl/interface.c error = curl_formadd(&first, &last, error 2711 ext/curl/interface.c SAVE_CURL_ERROR(ch, error); error 2712 ext/curl/interface.c if (error != CURLE_OK) { error 2720 ext/curl/interface.c error = curl_easy_setopt(ch->cp, CURLOPT_HTTPPOST, first); error 2726 ext/curl/interface.c error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDSIZE, Z_STRLEN_PP(zvalue)); error 2727 ext/curl/interface.c error = curl_easy_setopt(ch->cp, CURLOPT_COPYPOSTFIELDS, Z_STRVAL_PP(zvalue)); error 2736 ext/curl/interface.c error = curl_easy_setopt(ch->cp, CURLOPT_POSTFIELDSIZE, Z_STRLEN_PP(zvalue)); error 2788 ext/curl/interface.c error = curl_easy_setopt(ch->cp, option, (curl_off_t)Z_LVAL_PP(zvalue)); error 2795 ext/curl/interface.c error = curl_easy_setopt(ch->cp, CURLOPT_POSTREDIR, Z_LVAL_PP(zvalue) & CURL_REDIR_POST_ALL); error 2806 ext/curl/interface.c error = curl_easy_setopt(ch->cp, CURLOPT_PASSWDFUNCTION, curl_passwd); error 2807 ext/curl/interface.c error = curl_easy_setopt(ch->cp, CURLOPT_PASSWDDATA, (void *) ch); error 2883 ext/curl/interface.c SAVE_CURL_ERROR(ch, error); error 2884 ext/curl/interface.c if (error != CURLE_OK) { error 2972 ext/curl/interface.c CURLcode error; error 2986 ext/curl/interface.c error = curl_easy_perform(ch->cp); error 2987 ext/curl/interface.c SAVE_CURL_ERROR(ch, error); error 2989 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 static void add_warning(Scanner *s, char *error) error 352 ext/date/lib/parse_date.c s->errors->warning_messages[s->errors->warning_count - 1].message = timelib_strdup(error); error 355 ext/date/lib/parse_date.c static void add_error(Scanner *s, char *error) error 361 ext/date/lib/parse_date.c s->errors->error_messages[s->errors->error_count - 1].message = timelib_strdup(error); error 364 ext/date/lib/parse_date.c static void add_pbf_warning(Scanner *s, char *error, char *sptr, char *cptr) error 370 ext/date/lib/parse_date.c s->errors->warning_messages[s->errors->warning_count - 1].message = timelib_strdup(error); error 373 ext/date/lib/parse_date.c static void add_pbf_error(Scanner *s, char *error, char *sptr, char *cptr) error 379 ext/date/lib/parse_date.c s->errors->error_messages[s->errors->error_count - 1].message = timelib_strdup(error); error 113 ext/date/lib/parse_iso_intervals.c static void add_warning(Scanner *s, char *error) error 119 ext/date/lib/parse_iso_intervals.c s->errors->warning_messages[s->errors->warning_count - 1].message = timelib_strdup(error); error 122 ext/date/lib/parse_iso_intervals.c static void add_error(Scanner *s, char *error) error 128 ext/date/lib/parse_iso_intervals.c s->errors->error_messages[s->errors->error_count - 1].message = timelib_strdup(error); error 201 ext/date/lib/timelib.c timelib_long timelib_date_to_int(timelib_time *d, int *error) error 208 ext/date/lib/timelib.c if (error) { error 209 ext/date/lib/timelib.c *error = 1; error 213 ext/date/lib/timelib.c if (error) { error 214 ext/date/lib/timelib.c *error = 0; error 148 ext/date/lib/timelib.h timelib_long timelib_date_to_int(timelib_time *d, int *error); error 1429 ext/date/php_date.c timelib_error_container *error = NULL; error 1433 ext/date/php_date.c parsed_time = timelib_strtotime(string, strlen(string), &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper); error 1434 ext/date/php_date.c if (error->error_count) { error 1436 ext/date/php_date.c timelib_error_container_dtor(error); error 1439 ext/date/php_date.c timelib_error_container_dtor(error); error 1456 ext/date/php_date.c struct timelib_error_container *error; error 1492 ext/date/php_date.c t = timelib_strtotime(times, time_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper); error 1493 ext/date/php_date.c error1 = error->error_count; error 1494 ext/date/php_date.c timelib_error_container_dtor(error); error 1517 ext/date/php_date.c int error; error 1590 ext/date/php_date.c ts = timelib_date_to_int(now, &error); error 1594 ext/date/php_date.c if (error) { error 2920 ext/date/php_date.c static void zval_from_error_container(zval *z, timelib_error_container *error) error 2925 ext/date/php_date.c add_assoc_long(z, "warning_count", error->warning_count); error 2928 ext/date/php_date.c for (i = 0; i < error->warning_count; i++) { error 2929 ext/date/php_date.c add_index_string(element, error->warning_messages[i].position, error->warning_messages[i].message, 1); error 2933 ext/date/php_date.c add_assoc_long(z, "error_count", error->error_count); error 2936 ext/date/php_date.c for (i = 0; i < error->error_count; i++) { error 2937 ext/date/php_date.c add_index_string(element, error->error_messages[i].position, error->error_messages[i].message, 1); error 2956 ext/date/php_date.c void php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAMETERS, timelib_time *parsed_time, struct timelib_error_container *error) error 2980 ext/date/php_date.c zval_from_error_container(return_value, error); error 2982 ext/date/php_date.c timelib_error_container_dtor(error); error 3038 ext/date/php_date.c struct timelib_error_container *error; error 3045 ext/date/php_date.c parsed_time = timelib_strtotime(date, date_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper); error 3046 ext/date/php_date.c php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error); error 3057 ext/date/php_date.c struct timelib_error_container *error; error 3064 ext/date/php_date.c parsed_time = timelib_parse_from_format(format, date, date_len, &error, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper); error 3065 ext/date/php_date.c php_date_do_return_parsed_time(INTERNAL_FUNCTION_PARAM_PASSTHRU, parsed_time, error); error 3638 ext/date/php_date.c int error; error 3647 ext/date/php_date.c timestamp = timelib_date_to_int(dateobj->time, &error); error 3648 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 1559 ext/dom/document.c ctxt->vctxt.error = php_libxml_ctx_error; error 1563 ext/dom/document.c ctxt->sax->error = php_libxml_ctx_error; error 1904 ext/dom/document.c cvp->error = (xmlValidityErrorFunc) php_libxml_error_handler; error 2158 ext/dom/document.c ctxt->vctxt.error = php_libxml_ctx_error; error 2161 ext/dom/document.c ctxt->sax->error = php_libxml_ctx_error; error 32 ext/dom/domerrorhandler.c ZEND_ARG_OBJ_INFO(0, error, DOMDomError, 0) 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 485 ext/fileinfo/libmagic/apprentice.c ms->error = -1; error 2634 ext/fileinfo/libmagic/apprentice.c goto error; error 2639 ext/fileinfo/libmagic/apprentice.c goto error; error 2644 ext/fileinfo/libmagic/apprentice.c goto error; error 2649 ext/fileinfo/libmagic/apprentice.c goto error; error 2655 ext/fileinfo/libmagic/apprentice.c goto error; error 2659 ext/fileinfo/libmagic/apprentice.c goto error; error 2672 ext/fileinfo/libmagic/apprentice.c goto error; error 2685 ext/fileinfo/libmagic/apprentice.c goto error; error 2703 ext/fileinfo/libmagic/apprentice.c goto error; error 2720 ext/fileinfo/libmagic/apprentice.c goto error; error 2732 ext/fileinfo/libmagic/apprentice.c error: error 126 ext/fileinfo/libmagic/compress.c goto error; error 131 ext/fileinfo/libmagic/compress.c goto error; error 133 ext/fileinfo/libmagic/compress.c goto error; error 135 ext/fileinfo/libmagic/compress.c goto error; error 142 ext/fileinfo/libmagic/compress.c error: error 387 ext/fileinfo/libmagic/file.h int error; error 90 ext/fileinfo/libmagic/funcs.c file_error_core(struct magic_set *ms, int error, const char *f, va_list va, error 107 ext/fileinfo/libmagic/funcs.c if (error > 0) { error 108 ext/fileinfo/libmagic/funcs.c file_printf(ms, "%s (%s)", (*buf ? buf : ""), strerror(error)); error 118 ext/fileinfo/libmagic/funcs.c ms->error = error; error 123 ext/fileinfo/libmagic/funcs.c file_error(struct magic_set *ms, int error, const char *f, ...) error 127 ext/fileinfo/libmagic/funcs.c file_error_core(ms, error, f, va, 0); error 323 ext/fileinfo/libmagic/funcs.c ms->error = -1; error 454 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 3830 ext/gd/gd.c char *error = NULL; error 3893 ext/gd/gd.c error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); error 3896 ext/gd/gd.c error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); error 3900 ext/gd/gd.c if (error) { error 3901 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 162 ext/gd/gdcache.c cacheFetch( char **error, void *key ) error 173 ext/gd/gdcache.c *error = NULL; error 54 ext/gd/gdcache.h typedef void *(*gdCacheFetchFn_t)(char **error, void *keydata); 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 165 ext/gd/libgd/gdcache.c cacheFetch (char **error, void *key) error 173 ext/gd/libgd/gdcache.c *error = NULL; error 53 ext/gd/libgd/gdcache.h typedef void *(*gdCacheFetchFn_t)(char **error, void *keydata); error 68 ext/gd/libgd/gdcache.h char *error; error 364 ext/gd/libgd/gdft.c static void *fontFetch (char **error, void *key) error 455 ext/gd/libgd/gdft.c *error = "Could not find/open font"; error 463 ext/gd/libgd/gdft.c *error = "Could not read font"; error 538 ext/gd/libgd/gdft.c *error = "Unable to find a CharMap that I can handle"; error 576 ext/gd/libgd/gdft.c static void * tweenColorFetch (char **error, void *key) error 881 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 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 45 ext/intl/converter/converter.c static inline void php_converter_throw_failure(php_converter_object *objval, UErrorCode error TSRMLS_DC, const char *format, ...) { 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 59 ext/intl/converter/converter.c static void php_converter_default_callback(zval *return_value, zval *zobj, long reason, zval *error TSRMLS_DC) { 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 110 ext/intl/converter/converter.c ZEND_ARG_INFO(1, error) 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 132 ext/intl/converter/converter.c ZEND_ARG_INFO(1, error) 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 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 110 ext/intl/grapheme/grapheme_util.c #define STRPOS_CHECK_STATUS(status, 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 96 ext/intl/spoofchecker/spoofchecker_class.c ZEND_ARG_INFO(1, error) error 102 ext/intl/spoofchecker/spoofchecker_class.c ZEND_ARG_INFO(1, error) error 63 ext/intl/timezone/timezone_class.h TimeZone *timezone_process_timezone_argument(zval **zv_timezone, intl_error *error, const char *func TSRMLS_DC); error 2259 ext/ldap/ldap.c char error=0; error 2272 ext/ldap/ldap.c error = 1; error 2277 ext/ldap/ldap.c error = 1; error 2302 ext/ldap/ldap.c if (!error) { error 2303 ext/ldap/ldap.c error = ldap_set_option(ldap, option, ctrls); error 2311 ext/ldap/ldap.c if (error) { error 466 ext/libxml/libxml.c static int _php_libxml_free_error(xmlErrorPtr error) error 469 ext/libxml/libxml.c xmlResetError(error); error 473 ext/libxml/libxml.c static void _php_list_set_error_structure(xmlErrorPtr error, const char *msg) error 482 ext/libxml/libxml.c if (error) { error 483 ext/libxml/libxml.c ret = xmlCopyError(error, &error_copy); error 731 ext/libxml/libxml.c PHP_LIBXML_API void php_libxml_structured_error_handler(void *userData, xmlErrorPtr error) error 733 ext/libxml/libxml.c _php_list_set_error_structure(error, NULL); error 1004 ext/libxml/libxml.c xmlErrorPtr error; error 1006 ext/libxml/libxml.c error = xmlGetLastError(); error 1008 ext/libxml/libxml.c if (error) { error 1010 ext/libxml/libxml.c add_property_long(return_value, "level", error->level); error 1011 ext/libxml/libxml.c add_property_long(return_value, "code", error->code); error 1012 ext/libxml/libxml.c add_property_long(return_value, "column", error->int2); error 1013 ext/libxml/libxml.c if (error->message) { error 1014 ext/libxml/libxml.c add_property_string(return_value, "message", error->message, 1); error 1018 ext/libxml/libxml.c if (error->file) { error 1019 ext/libxml/libxml.c add_property_string(return_value, "file", error->file, 1); error 1023 ext/libxml/libxml.c add_property_long(return_value, "line", error->line); error 1035 ext/libxml/libxml.c xmlErrorPtr error; error 1043 ext/libxml/libxml.c error = zend_llist_get_first(LIBXML(error_list)); error 1045 ext/libxml/libxml.c while (error != NULL) { error 1050 ext/libxml/libxml.c add_property_long(z_error, "level", error->level); error 1051 ext/libxml/libxml.c add_property_long(z_error, "code", error->code); error 1052 ext/libxml/libxml.c add_property_long(z_error, "column", error->int2); error 1053 ext/libxml/libxml.c if (error->message) { error 1054 ext/libxml/libxml.c add_property_string(z_error, "message", error->message, 1); error 1058 ext/libxml/libxml.c if (error->file) { error 1059 ext/libxml/libxml.c add_property_string(z_error, "file", error->file, 1); error 1063 ext/libxml/libxml.c add_property_long(z_error, "line", error->line); error 1066 ext/libxml/libxml.c error = zend_llist_get_next(LIBXML(error_list)); error 5435 ext/mbstring/oniguruma/regcomp.c if (IS_NOT_NULL(scan_env.error)) { error 5438 ext/mbstring/oniguruma/regcomp.c einfo->par = scan_env.error; error 932 ext/mbstring/oniguruma/regparse.c env->error = (UChar* )NULL; error 5552 ext/mbstring/oniguruma/regparse.c env->error = arg; error 289 ext/mbstring/oniguruma/regparse.h UChar* error; error 1127 ext/mysqli/mysqli_api.c if (ret == MYSQL_DATA_TRUNCATED && *(stmt->stmt->bind[i].error) != 0) { error 73 ext/mysqli/mysqli_fe.c ZEND_ARG_ARRAY_INFO(1, error, 1) error 446 ext/mysqli/mysqli_nonapi.c add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1); error 490 ext/mysqli/mysqli_nonapi.c add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1); error 77 ext/mysqli/mysqli_priv.h extern void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error TSRMLS_DC); error 220 ext/mysqli/mysqli_prop.c add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1); error 419 ext/mysqli/mysqli_prop.c add_assoc_string_ex(single_error, "error", sizeof("error"), message->error, 1); error 50 ext/mysqli/mysqli_report.c void php_mysqli_report_error(const char *sqlstate, int errorno, const char *error TSRMLS_DC) 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 820 ext/mysqlnd/mysqlnd.c DBG_ERR_FMT("errorno=%u error=%s", greet_packet->error_no, greet_packet->error); error 821 ext/mysqlnd/mysqlnd.c SET_CLIENT_ERROR(*conn->error_info, greet_packet->error_no, greet_packet->sqlstate, greet_packet->error); error 1102 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 1104 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 1106 ext/mysqlnd/mysqlnd.c conn->error_info->error_no, conn->error_info->error, conn->scheme); error 1590 ext/mysqlnd/mysqlnd.c MYSQLND_METHOD(mysqlnd_conn_data, error)(const MYSQLND_CONN_DATA * const conn TSRMLS_DC) error 1592 ext/mysqlnd/mysqlnd.c return conn->error_info->error; error 2199 ext/mysqlnd/mysqlnd.c DBG_INF_FMT("Error from the server : (%u) %s", conn->error_info->error_no, conn->error_info->error); error 3050 ext/mysqlnd/mysqlnd.c MYSQLND_METHOD(mysqlnd_conn_data, 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 422 ext/mysqlnd/mysqlnd_net.c int error = net->data->m.decode(decompressed_data, decompressed_size, error 424 ext/mysqlnd/mysqlnd_net.c if (error == Z_OK) { error 606 ext/mysqlnd/mysqlnd_net.c int error; error 609 ext/mysqlnd/mysqlnd_net.c error = uncompress(uncompressed_data, &tmp_complen, compressed_data, compressed_data_len); error 612 ext/mysqlnd/mysqlnd_net.c if (error != Z_OK) { error 613 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 615 ext/mysqlnd/mysqlnd_net.c DBG_RETURN(error == Z_OK? PASS:FAIL); error 630 ext/mysqlnd/mysqlnd_net.c int error; error 633 ext/mysqlnd/mysqlnd_net.c error = compress(compress_buffer, &tmp_complen, uncompressed_data, uncompressed_data_len); error 635 ext/mysqlnd/mysqlnd_net.c if (error != Z_OK) { error 636 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 642 ext/mysqlnd/mysqlnd_net.c DBG_RETURN(error == Z_OK? PASS:FAIL); 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 1742 ext/mysqlnd/mysqlnd_ps.c MYSQLND_METHOD(mysqlnd_stmt, error)(const MYSQLND_STMT * const s TSRMLS_DC) error 1745 ext/mysqlnd/mysqlnd_ps.c return stmt? stmt->error_info->error : 0; error 2359 ext/mysqlnd/mysqlnd_ps.c MYSQLND_METHOD(mysqlnd_stmt, error), error 515 ext/mysqlnd/mysqlnd_result.c DBG_ERR_FMT("error=%s", rset_header->error_info.error); error 846 ext/mysqlnd/mysqlnd_result.c DBG_ERR_FMT("errorno=%u error=%s", row_packet->error_info.error_no, row_packet->error_info.error); error 976 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 237 ext/mysqlnd/mysqlnd_wireprotocol.c char *error, int error_buf_len, 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 1836 ext/mysqlnd/mysqlnd_wireprotocol.c packet->error_info.error, error 1837 ext/mysqlnd/mysqlnd_wireprotocol.c sizeof(packet->error_info.error), error 1982 ext/mysqlnd/mysqlnd_wireprotocol.c packet->error_info.error, error 1983 ext/mysqlnd/mysqlnd_wireprotocol.c sizeof(packet->error_info.error), error 2079 ext/mysqlnd/mysqlnd_wireprotocol.c packet->error_info.error, error 2080 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 874 ext/odbc/php_odbc.c SQLINTEGER error; /* Not used */ error 895 ext/odbc/php_odbc.c rc = SQLError(henv, conn, stmt, state, &error, errormsg, sizeof(errormsg)-1, &errormsgsize); error 1522 ext/odbc/php_odbc.c SQLINTEGER error; /* Not used */ error 1527 ext/odbc/php_odbc.c result->stmt, state, &error, errormsg, error 102 ext/opcache/zend_shared_alloc.c static void no_memory_bailout(size_t allocate_size, char *error) 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 5929 ext/pcre/pcrelib/pcre_jit_compile.c #define PUSH_BACKTRACK(size, ccstart, error) \ error 5934 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 2071 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c FAIL_IF(compiler->error); error 2079 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c FAIL_IF(compiler->error); error 2294 ext/pcre/pcrelib/sljit/sljitNativeARM_32.c return compiler->error; error 2312 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 1376 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c FAIL_IF(compiler->error); error 1387 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c return compiler->error; error 1406 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c FAIL_IF(compiler->error); error 1423 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c return compiler->error; error 1462 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c FAIL_IF(compiler->error); error 1468 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c FAIL_IF(compiler->error); error 1507 ext/pcre/pcrelib/sljit/sljitNativeARM_64.c return compiler->error; error 1587 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 1396 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c FAIL_IF(compiler->error); error 1407 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c return compiler->error; error 1425 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c FAIL_IF(compiler->error); error 1440 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c return compiler->error; error 1471 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c FAIL_IF(compiler->error); error 1477 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c FAIL_IF(compiler->error); error 1519 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c return compiler->error; error 1596 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c FAIL_IF(compiler->error); error 1604 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c FAIL_IF(compiler->error); error 1808 ext/pcre/pcrelib/sljit/sljitNativeARM_T2_32.c return compiler->error; error 1826 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 1473 ext/pcre/pcrelib/sljit/sljitNativeMIPS_common.c FAIL_IF(compiler->error); error 1483 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 1947 ext/pcre/pcrelib/sljit/sljitNativePPC_common.c FAIL_IF(compiler->error); error 1955 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 1110 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c FAIL_IF(compiler->error); error 1120 ext/pcre/pcrelib/sljit/sljitNativeSPARC_common.c FAIL_IF(compiler->error); error 1114 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c compiler->error = SLJIT_ERR_COMPILED; error 1536 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c return compiler->error; error 1546 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c return compiler->error; error 2026 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c FAIL_IF(compiler->error); error 2051 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c FAIL_IF(compiler->error); error 2076 ext/pcre/pcrelib/sljit/sljitNativeTILEGX_64.c return compiler->error; error 559 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c compiler->error = SLJIT_ERR_COMPILED; error 2158 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c return compiler->error; error 2178 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c return compiler->error; error 2867 ext/pcre/pcrelib/sljit/sljitNativeX86_common.c return compiler->error; error 260 ext/pcre/php_pcre.c const char *error; error 426 ext/pcre/php_pcre.c &error, error 431 ext/pcre/php_pcre.c php_error_docref(NULL TSRMLS_CC,E_WARNING, "Compilation failed: %s at offset %d", error, erroffset); error 442 ext/pcre/php_pcre.c extra = pcre_study(re, soptions, &error); error 446 ext/pcre/php_pcre.c if (error != NULL) { error 1319 ext/pdo/pdo_stmt.c int error = 0, old_arg_count; error 1348 ext/pdo/pdo_stmt.c if (class_name && !error) { error 1353 ext/pdo/pdo_stmt.c error = 1; error 1355 ext/pdo/pdo_stmt.c } else if (!error) { error 1359 ext/pdo/pdo_stmt.c if (!error && !do_fetch(stmt, TRUE, return_value, how, ori, off, 0 TSRMLS_CC)) { error 1360 ext/pdo/pdo_stmt.c error = 1; error 1362 ext/pdo/pdo_stmt.c if (error) { error 1370 ext/pdo/pdo_stmt.c if (error) { error 1407 ext/pdo/pdo_stmt.c int error = 0, flags, old_arg_count; error 1434 ext/pdo/pdo_stmt.c error = 1; error 1445 ext/pdo/pdo_stmt.c error = 1; error 1451 ext/pdo/pdo_stmt.c error = 1; error 1456 ext/pdo/pdo_stmt.c if (!error) { error 1466 ext/pdo/pdo_stmt.c error = 1; error 1472 ext/pdo/pdo_stmt.c error = 1; error 1490 ext/pdo/pdo_stmt.c error = 1; error 1497 ext/pdo/pdo_stmt.c error = 1; error 1508 ext/pdo/pdo_stmt.c if (!error) { error 1521 ext/pdo/pdo_stmt.c error = 2; error 1524 ext/pdo/pdo_stmt.c if (!error) { error 1547 ext/pdo/pdo_stmt.c if (error) { error 1549 ext/pdo/pdo_stmt.c if (error != 2) { error 786 ext/pgsql/pgsql.c #define PQescapeStringConn(conn, to, from, len, error) PQescapeString(to, from, len) error 306 ext/phar/dirstream.c char *internal_file, *error, *str_key; error 340 ext/phar/dirstream.c if (FAILURE == phar_get_archive(&phar, resource->host, host_len, NULL, 0, &error TSRMLS_CC)) { error 341 ext/phar/dirstream.c if (error) { error 342 ext/phar/dirstream.c php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error); error 343 ext/phar/dirstream.c efree(error); error 351 ext/phar/dirstream.c if (error) { error 352 ext/phar/dirstream.c efree(error); error 415 ext/phar/dirstream.c char *error, *arch, *entry2; error 457 ext/phar/dirstream.c if (FAILURE == phar_get_archive(&phar, resource->host, host_len, NULL, 0, &error TSRMLS_CC)) { error 458 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 459 ext/phar/dirstream.c efree(error); error 464 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 475 ext/phar/dirstream.c if (error) { error 476 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 477 ext/phar/dirstream.c efree(error); error 482 ext/phar/dirstream.c if (phar_get_entry_info_dir(phar, resource->path + 1, strlen(resource->path + 1), 0, &error, 1 TSRMLS_CC)) { error 489 ext/phar/dirstream.c if (error) { error 490 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 491 ext/phar/dirstream.c efree(error); error 521 ext/phar/dirstream.c efree(error); error 526 ext/phar/dirstream.c phar_flush(phar, 0, 0, 0, &error TSRMLS_CC); error 528 ext/phar/dirstream.c if (error) { error 529 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 531 ext/phar/dirstream.c efree(error); error 547 ext/phar/dirstream.c char *error, *arch, *entry2; error 593 ext/phar/dirstream.c if (FAILURE == phar_get_archive(&phar, resource->host, host_len, NULL, 0, &error TSRMLS_CC)) { error 594 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 595 ext/phar/dirstream.c efree(error); error 602 ext/phar/dirstream.c if (!(entry = phar_get_entry_info_dir(phar, resource->path + 1, path_len, 2, &error, 1 TSRMLS_CC))) { error 603 ext/phar/dirstream.c if (error) { error 604 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 605 ext/phar/dirstream.c efree(error); error 656 ext/phar/dirstream.c phar_flush(phar, 0, 0, 0, &error TSRMLS_CC); error 658 ext/phar/dirstream.c if (error) { error 659 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 661 ext/phar/dirstream.c efree(error); error 457 ext/phar/phar.c void phar_entry_remove(phar_entry_data *idata, char **error TSRMLS_DC) /* {{{ */ 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 529 ext/phar/phar.c int phar_open_parsed_phar(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC) /* {{{ */ 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 650 ext/phar/phar.c static int phar_parse_pharfile(php_stream *fp, char *fname, int fname_len, char *alias, int alias_len, long halt_offset, phar_archive_data** pphar, php_uint32 compression, char **error TSRMLS_DC) /* {{{ */ 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 1240 ext/phar/phar.c int phar_open_or_create_filename(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC) /* {{{ */ 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 1317 ext/phar/phar.c int phar_create_or_parse_filename(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC) /* {{{ */ 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 1471 ext/phar/phar.c int phar_open_from_filename(char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, char **error TSRMLS_DC) /* {{{ */ 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 1562 ext/phar/phar.c static int phar_open_from_fp(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, int is_data, char **error TSRMLS_DC) /* {{{ */ 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 2308 ext/phar/phar.c int phar_open_executed_filename(char *alias, int alias_len, char **error TSRMLS_DC) /* {{{ */ error 2317 ext/phar/phar.c if (error) { error 2318 ext/phar/phar.c *error = NULL; error 2329 ext/phar/phar.c if (error) { error 2330 ext/phar/phar.c spprintf(error, 0, "cannot initialize a phar outside of PHP execution"); error 2339 ext/phar/phar.c if (error) { error 2340 ext/phar/phar.c spprintf(error, 0, "__HALT_COMPILER(); must be declared in a phar"); error 2360 ext/phar/phar.c if (error) { error 2361 ext/phar/phar.c spprintf(error, 0, "unable to open phar for reading \"%s\"", fname); error 2374 ext/phar/phar.c ret = phar_open_from_fp(fp, fname, fname_len, alias, alias_len, REPORT_ERRORS, NULL, 0, error TSRMLS_CC); error 2387 ext/phar/phar.c int phar_postprocess_file(phar_entry_data *idata, php_uint32 crc32, char **error, int process_zip TSRMLS_DC) /* {{{ */ error 2394 ext/phar/phar.c if (error) { error 2395 ext/phar/phar.c *error = NULL; error 2404 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 2411 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 2424 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 2436 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 2465 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 2497 ext/phar/phar.c char *phar_create_default_stub(const char *index_php, const char *web_index, size_t *len, char **error TSRMLS_DC) /* {{{ */ error 2507 ext/phar/phar.c if (error) { error 2508 ext/phar/phar.c *error = NULL; error 2524 ext/phar/phar.c if (error) { error 2525 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 2532 ext/phar/phar.c if (error) { error 2533 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 2549 ext/phar/phar.c int phar_flush(phar_archive_data *phar, char *user_stub, long len, int convert, char **error TSRMLS_DC) /* {{{ */ error 2570 ext/phar/phar.c if (error) { error 2571 ext/phar/phar.c spprintf(error, 0, "internal error: attempt to flush cached zip-based phar \"%s\"", phar->fname); error 2576 ext/phar/phar.c if (error) { error 2577 ext/phar/phar.c *error = NULL; error 2587 ext/phar/phar.c return phar_zip_flush(phar, user_stub, len, convert, error TSRMLS_CC); error 2591 ext/phar/phar.c return phar_tar_flush(phar, user_stub, len, convert, error TSRMLS_CC); error 2608 ext/phar/phar.c if (error) { error 2609 ext/phar/phar.c spprintf(error, 0, "unable to create temporary file"); error 2625 ext/phar/phar.c if (error) { error 2626 ext/phar/phar.c spprintf(error, 0, "unable to access resource to copy stub to new phar \"%s\"", phar->fname); error 2642 ext/phar/phar.c if (error) { error 2643 ext/phar/phar.c spprintf(error, 0, "unable to read resource to copy stub to new phar \"%s\"", phar->fname); error 2658 ext/phar/phar.c if (error) { error 2659 ext/phar/phar.c spprintf(error, 0, "illegal stub for phar \"%s\"", phar->fname); error 2675 ext/phar/phar.c if (error) { error 2676 ext/phar/phar.c spprintf(error, 0, "unable to create stub from string in new phar \"%s\"", phar->fname); error 2703 ext/phar/phar.c if (error) { error 2705 ext/phar/phar.c spprintf(error, 0, "unable to create stub in new phar \"%s\"", phar->fname); error 2707 ext/phar/phar.c spprintf(error, 0, "unable to copy stub of old phar to new phar \"%s\"", phar->fname); error 2803 ext/phar/phar.c newentry = phar_open_jit(phar, entry, error TSRMLS_CC); error 2806 ext/phar/phar.c efree(*error); error 2807 ext/phar/phar.c *error = NULL; error 2818 ext/phar/phar.c if (error) { error 2819 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 2842 ext/phar/phar.c if (error) { error 2843 ext/phar/phar.c spprintf(error, 0, "unable to gzip compress file \"%s\" to new phar \"%s\"", entry->filename, phar->fname); error 2846 ext/phar/phar.c if (error) { error 2847 ext/phar/phar.c spprintf(error, 0, "unable to bzip2 compress file \"%s\" to new phar \"%s\"", entry->filename, phar->fname); error 2858 ext/phar/phar.c if (error) { error 2859 ext/phar/phar.c spprintf(error, 0, "unable to create temporary file"); error 2873 ext/phar/phar.c if (error) { error 2874 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 2884 ext/phar/phar.c if (error) { error 2885 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 2947 ext/phar/phar.c if (error) { error 2948 ext/phar/phar.c spprintf(error, 0, "unable to write manifest header of new phar \"%s\"", phar->fname); error 2968 ext/phar/phar.c if (error) { error 2969 ext/phar/phar.c spprintf(error, 0, "unable to write manifest meta-data of new phar \"%s\"", phar->fname); error 3007 ext/phar/phar.c if (error) { error 3009 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 3011 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 3042 ext/phar/phar.c if (error) { error 3043 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 3058 ext/phar/phar.c if (error) { error 3059 ext/phar/phar.c spprintf(error, 0, "unable to write manifest padding byte"); error 3090 ext/phar/phar.c if (error) { error 3091 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 3102 ext/phar/phar.c if (error) { error 3103 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 3118 ext/phar/phar.c if (error) { error 3119 ext/phar/phar.c spprintf(error, 0, "unable to write contents of file \"%s\" to new phar \"%s\"", entry->filename, phar->fname); error 3164 ext/phar/phar.c if (error) { error 3165 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 3173 ext/phar/phar.c if (FAILURE == phar_create_signature(phar, newfile, &digest, &digest_len, error TSRMLS_CC)) { error 3174 ext/phar/phar.c if (error) { error 3175 ext/phar/phar.c char *save = *error; error 3176 ext/phar/phar.c spprintf(error, 0, "phar error: unable to write signature: %s", save); error 3234 ext/phar/phar.c if (error) { error 3235 ext/phar/phar.c spprintf(error, 4096, "unable to open new phar \"%s\" for writing", phar->fname); error 3250 ext/phar/phar.c if (error) { error 3251 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 3280 ext/phar/phar.c if (error) { error 3281 ext/phar/phar.c spprintf(error, 0, "unable to seek to __HALT_COMPILER(); in new phar \"%s\"", phar->fname); error 558 ext/phar/phar_internal.h int phar_open_entry_file(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC); error 559 ext/phar/phar_internal.h int phar_postprocess_file(phar_entry_data *idata, php_uint32 crc32, char **error, int process_zip TSRMLS_DC); error 560 ext/phar/phar_internal.h int phar_open_from_filename(char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, char **error TSRMLS_DC); error 561 ext/phar/phar_internal.h int phar_open_or_create_filename(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC); error 562 ext/phar/phar_internal.h int phar_create_or_parse_filename(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC); error 563 ext/phar/phar_internal.h int phar_open_executed_filename(char *alias, int alias_len, char **error TSRMLS_DC); error 565 ext/phar/phar_internal.h int phar_get_archive(phar_archive_data **archive, char *fname, int fname_len, char *alias, int alias_len, char **error TSRMLS_DC); error 566 ext/phar/phar_internal.h int phar_open_parsed_phar(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC); error 567 ext/phar/phar_internal.h int phar_verify_signature(php_stream *fp, size_t end_of_phar, php_uint32 sig_type, char *sig, int sig_len, char *fname, char **signature, int *signature_len, char **error TSRMLS_DC); error 568 ext/phar/phar_internal.h int phar_create_signature(phar_archive_data *phar, php_stream *fp, char **signature, int *signature_length, char **error TSRMLS_DC); error 571 ext/phar/phar_internal.h char *phar_create_default_stub(const char *index_php, const char *web_index, size_t *len, char **error TSRMLS_DC); error 580 ext/phar/phar_internal.h phar_entry_info * phar_open_jit(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC); error 585 ext/phar/phar_internal.h int phar_copy_entry_fp(phar_entry_info *source, phar_entry_info *dest, char **error TSRMLS_DC); error 586 ext/phar/phar_internal.h int phar_open_entry_fp(phar_entry_info *entry, char **error, int follow_links TSRMLS_DC); error 588 ext/phar/phar_internal.h int phar_create_writeable_entry(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC); error 589 ext/phar/phar_internal.h int phar_separate_entry_fp(phar_entry_info *entry, char **error TSRMLS_DC); error 595 ext/phar/phar_internal.h int phar_parse_tarfile(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, phar_archive_data** pphar, int is_data, php_uint32 compression, char **error TSRMLS_DC); error 596 ext/phar/phar_internal.h int phar_open_or_create_tar(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC); error 597 ext/phar/phar_internal.h int phar_tar_flush(phar_archive_data *phar, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC); error 600 ext/phar/phar_internal.h int phar_parse_zipfile(php_stream *fp, char *fname, int fname_len, char *alias, int alias_len, phar_archive_data** pphar, char **error TSRMLS_DC); error 601 ext/phar/phar_internal.h int phar_open_or_create_zip(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC); error 602 ext/phar/phar_internal.h int phar_zip_flush(phar_archive_data *archive, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC); error 605 ext/phar/phar_internal.h static int phar_open_from_fp(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, int options, phar_archive_data** pphar, int is_data, char **error TSRMLS_DC); error 615 ext/phar/phar_internal.h phar_entry_info *phar_get_entry_info(phar_archive_data *phar, char *path, int path_len, char **error, int security TSRMLS_DC); error 616 ext/phar/phar_internal.h phar_entry_info *phar_get_entry_info_dir(phar_archive_data *phar, char *path, int path_len, char dir, char **error, int security TSRMLS_DC); error 617 ext/phar/phar_internal.h phar_entry_data *phar_get_or_create_entry_data(char *fname, int fname_len, char *path, int path_len, const char *mode, char allow_dir, char **error, int security TSRMLS_DC); error 618 ext/phar/phar_internal.h int phar_get_entry_data(phar_entry_data **ret, char *fname, int fname_len, char *path, int path_len, const char *mode, char allow_dir, char **error, int security TSRMLS_DC); error 619 ext/phar/phar_internal.h int phar_flush(phar_archive_data *archive, char *user_stub, long len, int convert, char **error TSRMLS_DC); error 635 ext/phar/phar_internal.h phar_path_check_result phar_path_check(char **p, int *len, const char **error); 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 1978 ext/phar/phar_object.c char *error; error 1982 ext/phar/phar_object.c if (FAILURE == phar_open_entry_fp(entry, &error, 1 TSRMLS_CC)) { error 1983 ext/phar/phar_object.c if (error) { error 1985 ext/phar/phar_object.c "Cannot convert phar archive \"%s\", unable to open entry \"%s\" contents: %s", entry->phar->fname, entry->filename, error); error 1986 ext/phar/phar_object.c efree(error); error 2031 ext/phar/phar_object.c char *error; error 2188 ext/phar/phar_object.c phar_flush(phar, 0, 0, 1, &error TSRMLS_CC); error 2190 ext/phar/phar_object.c if (error) { error 2191 ext/phar/phar_object.c zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error); error 2192 ext/phar/phar_object.c efree(error); error 2623 ext/phar/phar_object.c char *error; error 2657 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, NULL, 0, 0, &error TSRMLS_CC); error 2658 ext/phar/phar_object.c if (error) { error 2659 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 2660 ext/phar/phar_object.c efree(error); error 2705 ext/phar/phar_object.c char *alias, *error, *oldalias; error 2737 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 2739 ext/phar/phar_object.c efree(error); error 2742 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 2743 ext/phar/phar_object.c efree(error); error 2773 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, NULL, 0, 0, &error TSRMLS_CC); error 2775 ext/phar/phar_object.c if (error) { error 2779 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 2783 ext/phar/phar_object.c efree(error); error 2850 ext/phar/phar_object.c char *error; error 2865 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 2867 ext/phar/phar_object.c if (error) { error 2868 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 2869 ext/phar/phar_object.c efree(error); error 2881 ext/phar/phar_object.c char *stub, *error; error 2915 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, (char *) &zstub, len, 0, &error TSRMLS_CC); error 2916 ext/phar/phar_object.c if (error) { error 2917 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 2918 ext/phar/phar_object.c efree(error); error 2930 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, stub, stub_len, 0, &error TSRMLS_CC); error 2932 ext/phar/phar_object.c if (error) { error 2933 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 2934 ext/phar/phar_object.c efree(error); error 2959 ext/phar/phar_object.c char *index = NULL, *webindex = NULL, *error = NULL, *stub = NULL; error 2991 ext/phar/phar_object.c stub = phar_create_default_stub(index, webindex, &stub_len, &error TSRMLS_CC); error 2993 ext/phar/phar_object.c if (error) { error 2994 ext/phar/phar_object.c zend_throw_exception_ex(spl_ce_UnexpectedValueException, 0 TSRMLS_CC, "%s", error); error 2995 ext/phar/phar_object.c efree(error); error 3009 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, stub, stub_len, 1, &error TSRMLS_CC); error 3015 ext/phar/phar_object.c if (error) { error 3016 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 3017 ext/phar/phar_object.c efree(error); error 3034 ext/phar/phar_object.c char *error, *key = NULL; error 3069 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 3070 ext/phar/phar_object.c if (error) { error 3071 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 3072 ext/phar/phar_object.c efree(error); error 3316 ext/phar/phar_object.c char *error; error 3378 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 3380 ext/phar/phar_object.c if (error) { error 3381 ext/phar/phar_object.c zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error); error 3382 ext/phar/phar_object.c efree(error); error 3392 ext/phar/phar_object.c char *error; error 3422 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 3424 ext/phar/phar_object.c if (error) { error 3425 ext/phar/phar_object.c zend_throw_exception_ex(spl_ce_BadMethodCallException, 0 TSRMLS_CC, "%s", error); error 3426 ext/phar/phar_object.c efree(error); error 3438 ext/phar/phar_object.c char *oldfile, *newfile, *error; error 3518 ext/phar/phar_object.c if (FAILURE == phar_copy_entry_fp(oldentry, &newentry, &error TSRMLS_CC)) { error 3521 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 3522 ext/phar/phar_object.c efree(error); error 3529 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 3531 ext/phar/phar_object.c if (error) { error 3532 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 3533 ext/phar/phar_object.c efree(error); error 3582 ext/phar/phar_object.c char *fname, *error; error 3593 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 3594 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 3629 ext/phar/phar_object.c char *error; error 3639 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 3640 ext/phar/phar_object.c if (error) { error 3641 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 3642 ext/phar/phar_object.c efree(error); error 3648 ext/phar/phar_object.c if (error) { error 3649 ext/phar/phar_object.c efree(error); error 3675 ext/phar/phar_object.c phar_flush(*pphar, 0, 0, 0, &error TSRMLS_CC); error 3677 ext/phar/phar_object.c if (error) { error 3678 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 3679 ext/phar/phar_object.c efree(error); error 3689 ext/phar/phar_object.c char *error; error 3692 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 3693 ext/phar/phar_object.c if (error) { error 3694 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 3695 ext/phar/phar_object.c efree(error); error 3702 ext/phar/phar_object.c if (error) { error 3703 ext/phar/phar_object.c efree(error); error 3711 ext/phar/phar_object.c phar_flush(*pphar, 0, 0, 0, &error TSRMLS_CC); error 3713 ext/phar/phar_object.c if (error) { error 3714 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 3715 ext/phar/phar_object.c efree(error); error 3765 ext/phar/phar_object.c char *fname, *error; error 3797 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 3799 ext/phar/phar_object.c if (error) { error 3800 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 3801 ext/phar/phar_object.c efree(error); error 4038 ext/phar/phar_object.c char *error; error 4064 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 4066 ext/phar/phar_object.c if (error) { error 4067 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 4068 ext/phar/phar_object.c efree(error); error 4078 ext/phar/phar_object.c char *error; error 4091 ext/phar/phar_object.c phar_flush(phar_obj->arc.archive, 0, 0, 0, &error TSRMLS_CC); error 4093 ext/phar/phar_object.c if (error) { error 4094 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 4095 ext/phar/phar_object.c efree(error); error 4114 ext/phar/phar_object.c static int phar_extract_file(zend_bool overwrite, phar_entry_info *entry, char *dest, int dest_len, char **error TSRMLS_DC) /* {{{ */ error 4143 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s...\" to \"%s...\", extracted filename is too long for filesystem", tmp, dest); error 4146 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\", internal error", entry->filename); error 4174 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s...\" to \"%s...\", extracted filename is too long for filesystem", tmp, fullpath); error 4177 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\" to \"%s...\", extracted filename is too long for filesystem", entry->filename, fullpath); error 4185 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\", internal error", entry->filename); error 4192 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", openbasedir/safe mode restrictions in effect", entry->filename, fullpath); error 4200 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", path already exists", entry->filename, fullpath); error 4218 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath); error 4225 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\", could not create directory \"%s\"", entry->filename, fullpath); error 4254 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\", could not open for writing \"%s\"", entry->filename, fullpath); error 4260 ext/phar/phar_object.c if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) { error 4261 ext/phar/phar_object.c if (error) { error 4262 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 4264 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to open internal file pointer", entry->filename, fullpath); error 4273 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", unable to seek internal file pointer", entry->filename, fullpath); error 4280 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", copying contents failed", entry->filename, fullpath); error 4290 ext/phar/phar_object.c spprintf(error, 4096, "Cannot extract \"%s\" to \"%s\", setting file permissions failed", entry->filename, fullpath); error 4305 ext/phar/phar_object.c char *error = NULL; error 4388 ext/phar/phar_object.c if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) { error 4390 ext/phar/phar_object.c "Extraction from phar \"%s\" failed: %s", phar_obj->arc.archive->fname, error); error 4391 ext/phar/phar_object.c efree(error); error 4409 ext/phar/phar_object.c if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) { error 4411 ext/phar/phar_object.c "Extraction from phar \"%s\" failed: %s", phar_obj->arc.archive->fname, error); error 4412 ext/phar/phar_object.c efree(error); error 4432 ext/phar/phar_object.c if (FAILURE == phar_extract_file(overwrite, entry, pathto, pathto_len, &error TSRMLS_CC)) { error 4434 ext/phar/phar_object.c "Extraction from phar \"%s\" failed: %s", phar->fname, error); error 4435 ext/phar/phar_object.c efree(error); error 4450 ext/phar/phar_object.c char *fname, *arch, *entry, *error; error 4474 ext/phar/phar_object.c if (phar_open_from_filename(arch, arch_len, NULL, 0, REPORT_ERRORS, &phar_data, &error TSRMLS_CC) == FAILURE) { error 4477 ext/phar/phar_object.c if (error) { error 4479 ext/phar/phar_object.c "Cannot open phar file '%s': %s", fname, error); error 4480 ext/phar/phar_object.c efree(error); error 4488 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 4490 ext/phar/phar_object.c "Cannot access phar file entry '%s' in archive '%s'%s%s", entry, arch, error ? ", " : "", error ? error : ""); error 4639 ext/phar/phar_object.c char *error; error 4688 ext/phar/phar_object.c phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC); error 4690 ext/phar/phar_object.c if (error) { error 4691 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 4692 ext/phar/phar_object.c efree(error); error 4742 ext/phar/phar_object.c char *error; error 4782 ext/phar/phar_object.c phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC); error 4784 ext/phar/phar_object.c if (error) { error 4785 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 4786 ext/phar/phar_object.c efree(error); error 4796 ext/phar/phar_object.c char *error; error 4831 ext/phar/phar_object.c phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC); error 4833 ext/phar/phar_object.c if (error) { error 4834 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 4835 ext/phar/phar_object.c efree(error); error 4852 ext/phar/phar_object.c char *error; error 4874 ext/phar/phar_object.c if (SUCCESS != phar_open_entry_fp(link, &error, 0 TSRMLS_CC)) { error 4876 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 4877 ext/phar/phar_object.c efree(error); error 4904 ext/phar/phar_object.c char *error; error 4959 ext/phar/phar_object.c if (SUCCESS != phar_open_entry_fp(entry_obj->ent.entry, &error, 1 TSRMLS_CC)) { error 4961 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 4962 ext/phar/phar_object.c efree(error); error 4990 ext/phar/phar_object.c if (SUCCESS != phar_open_entry_fp(entry_obj->ent.entry, &error, 1 TSRMLS_CC)) { error 4992 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 4993 ext/phar/phar_object.c efree(error); error 5014 ext/phar/phar_object.c phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC); error 5016 ext/phar/phar_object.c if (error) { error 5017 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 5018 ext/phar/phar_object.c efree(error); error 5030 ext/phar/phar_object.c char *error; error 5093 ext/phar/phar_object.c phar_flush(entry_obj->ent.entry->phar, 0, 0, 0, &error TSRMLS_CC); error 5095 ext/phar/phar_object.c if (error) { error 5096 ext/phar/phar_object.c zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "%s", error); error 5097 ext/phar/phar_object.c efree(error); error 25 ext/phar/phar_path_check.c phar_path_check_result phar_path_check(char **s, int *len, const char **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 684 ext/phar/stream.c char *internal_file, *error; error 723 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 725 ext/phar/stream.c if (error) { error 726 ext/phar/stream.c php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "unlink of \"%s\" failed: %s", url, error); error 727 ext/phar/stream.c efree(error); error 735 ext/phar/stream.c if (error) { error 736 ext/phar/stream.c efree(error); error 748 ext/phar/stream.c phar_entry_remove(idata, &error TSRMLS_CC); error 749 ext/phar/stream.c if (error) { error 750 ext/phar/stream.c php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "%s", error); error 751 ext/phar/stream.c efree(error); error 760 ext/phar/stream.c char *error; error 767 ext/phar/stream.c error = NULL; error 773 ext/phar/stream.c if (SUCCESS != phar_get_archive(&pfrom, resource_from->host, strlen(resource_from->host), NULL, 0, &error TSRMLS_CC)) { error 775 ext/phar/stream.c if (error) { error 776 ext/phar/stream.c efree(error); error 790 ext/phar/stream.c if (SUCCESS != phar_get_archive(&pto, resource_to->host, strlen(resource_to->host), NULL, 0, &error TSRMLS_CC)) { error 791 ext/phar/stream.c if (error) { error 792 ext/phar/stream.c efree(error); error 840 ext/phar/stream.c if (SUCCESS != phar_get_archive(&phar, resource_from->host, host_len, NULL, 0, &error TSRMLS_CC)) { error 843 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 844 ext/phar/stream.c efree(error); error 878 ext/phar/stream.c if (FAILURE == phar_copy_entry_fp(source, entry, &error TSRMLS_CC)) { error 881 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 882 ext/phar/stream.c efree(error); error 978 ext/phar/stream.c phar_flush(phar, 0, 0, 0, &error TSRMLS_CC); error 979 ext/phar/stream.c if (error) { error 982 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 983 ext/phar/stream.c efree(error); error 25 ext/phar/stream.h void phar_entry_remove(phar_entry_data *idata, char **error TSRMLS_DC); error 127 ext/phar/tar.c int phar_open_or_create_tar(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC) /* {{{ */ 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 205 ext/phar/tar.c int phar_parse_tarfile(php_stream* fp, char *fname, int fname_len, char *alias, int alias_len, phar_archive_data** pphar, int is_data, php_uint32 compression, char **error TSRMLS_DC) /* {{{ */ error 216 ext/phar/tar.c if (error) { error 217 ext/phar/tar.c *error = NULL; error 226 ext/phar/tar.c if (error) { error 227 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is not a tar file or is truncated", fname); error 279 ext/phar/tar.c if (error) { error 280 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 290 ext/phar/tar.c if (error) { error 291 ext/phar/tar.c spprintf(error, 4096, "phar error: tar-based phar \"%s\" signature cannot be read", fname); error 305 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 306 ext/phar/tar.c if (error) { error 307 ext/phar/tar.c char *save = *error; error 308 ext/phar/tar.c spprintf(error, 4096, "phar error: tar-based phar \"%s\" signature cannot be verified: %s", fname, save); error 319 ext/phar/tar.c if (error) { error 320 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname); error 331 ext/phar/tar.c if (error) { error 332 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname); error 346 ext/phar/tar.c if (error) { error 347 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" has entries after signature, invalid phar", fname); error 360 ext/phar/tar.c if (error) { error 361 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (invalid entry size)", fname); error 372 ext/phar/tar.c if (error) { error 373 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname); error 388 ext/phar/tar.c if (error) { error 389 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname); error 400 ext/phar/tar.c if (error) { error 401 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname); error 456 ext/phar/tar.c if (error) { error 457 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (checksum mismatch of file \"%s\")", fname, entry.filename); error 490 ext/phar/tar.c if (error) { error 491 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file - hard link to non-existent file \"%.*s\"", fname, linkname_len, hdr->linkname); error 513 ext/phar/tar.c if (error) { error 514 ext/phar/tar.c spprintf(error, 4096, "phar error: tar-based phar \"%s\" has invalid metadata in magic file \"%s\"", fname, entry.filename); error 525 ext/phar/tar.c if (error) { error 526 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 545 ext/phar/tar.c if (error) { error 546 ext/phar/tar.c spprintf(error, 4096, "phar error: invalid alias \"%s\" in tar-based phar \"%s\"", buf, fname); error 559 ext/phar/tar.c if (error) { error 560 ext/phar/tar.c spprintf(error, 4096, "phar error: Unable to read alias from tar-based phar \"%s\"", 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 588 ext/phar/tar.c if (error) { error 589 ext/phar/tar.c spprintf(error, 4096, "phar error: \"%s\" is a corrupted tar file (truncated)", fname); error 607 ext/phar/tar.c if (error) { error 608 ext/phar/tar.c spprintf(error, 0, "tar-based phar \"%s\" does not have a signature", fname); error 634 ext/phar/tar.c if (error) { error 635 ext/phar/tar.c spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\" to phar registry", fname); error 651 ext/phar/tar.c if (error) { error 652 ext/phar/tar.c spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\", alias is already in use", fname); error 666 ext/phar/tar.c if (error) { error 667 ext/phar/tar.c spprintf(error, 4096, "phar error: Unable to add tar-based phar \"%s\", alias is already in use", fname); error 697 ext/phar/tar.c char **error; error 727 ext/phar/tar.c if (fp->error) { error 728 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 737 ext/phar/tar.c if (fp->error) { error 738 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 751 ext/phar/tar.c if (fp->error) { error 752 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 758 ext/phar/tar.c if (fp->error) { error 759 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 777 ext/phar/tar.c if (fp->error) { error 778 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 787 ext/phar/tar.c if (fp->error) { error 788 ext/phar/tar.c spprintf(fp->error, 4096, "tar-based phar \"%s\" cannot be created, header for file \"%s\" could not be written", entry->phar->fname, entry->filename); error 797 ext/phar/tar.c if (FAILURE == phar_open_entry_fp(entry, fp->error, 0 TSRMLS_CC)) { error 802 ext/phar/tar.c if (fp->error) { error 803 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 809 ext/phar/tar.c if (fp->error) { error 810 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 849 ext/phar/tar.c int phar_tar_setmetadata(zval *metadata, phar_entry_info *entry, char **error TSRMLS_DC) /* {{{ */ error 873 ext/phar/tar.c spprintf(error, 0, "phar error: unable to create temporary file"); error 877 ext/phar/tar.c spprintf(error, 0, "phar tar error: unable to write metadata to magic metadata file \"%s\"", entry->filename); error 890 ext/phar/tar.c char *lookfor, **error = i->error; error 898 ext/phar/tar.c return phar_tar_setmetadata(entry->phar->metadata, entry, error TSRMLS_CC); error 924 ext/phar/tar.c ret = phar_tar_setmetadata(entry->metadata, metadata, error TSRMLS_CC); error 937 ext/phar/tar.c spprintf(error, 0, "phar tar error: unable to add magic metadata file to manifest for file \"%s\"", entry->filename); error 941 ext/phar/tar.c return phar_tar_setmetadata(entry->metadata, metadata, error TSRMLS_CC); error 945 ext/phar/tar.c int phar_tar_flush(phar_archive_data *phar, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC) /* {{{ */ error 965 ext/phar/tar.c if (error) { error 966 ext/phar/tar.c spprintf(error, 0, "internal error: attempt to flush cached tar-based phar \"%s\"", phar->fname); error 981 ext/phar/tar.c spprintf(error, 0, "phar error: unable to create temporary file"); error 985 ext/phar/tar.c if (error) { error 986 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 set alias in tar-based phar \"%s\"", phar->fname); error 1009 ext/phar/tar.c if (error) { error 1010 ext/phar/tar.c spprintf(error, 0, "unable to access resource to copy stub to new tar-based phar \"%s\"", phar->fname); error 1022 ext/phar/tar.c if (error) { error 1023 ext/phar/tar.c spprintf(error, 0, "unable to read resource to copy stub to new tar-based phar \"%s\"", phar->fname); error 1035 ext/phar/tar.c if (error) { error 1036 ext/phar/tar.c spprintf(error, 0, "illegal stub for tar-based phar \"%s\"", phar->fname); error 1049 ext/phar/tar.c spprintf(error, 0, "phar error: unable to create temporary file"); error 1056 ext/phar/tar.c if (error) { error 1057 ext/phar/tar.c spprintf(error, 0, "unable to create stub from string in new tar-based phar \"%s\"", phar->fname); error 1077 ext/phar/tar.c spprintf(error, 0, "phar error: unable to create temporary file"); error 1082 ext/phar/tar.c if (error) { error 1083 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 1097 ext/phar/tar.c if (error) { error 1098 ext/phar/tar.c spprintf(error, 0, "unable to create stub in tar-based phar \"%s\"", phar->fname); error 1110 ext/phar/tar.c if (error) { error 1111 ext/phar/tar.c spprintf(error, 0, "unable to overwrite stub in tar-based phar \"%s\"", phar->fname); error 1129 ext/phar/tar.c if (error) { error 1130 ext/phar/tar.c spprintf(error, 0, "unable to create temporary file"); error 1140 ext/phar/tar.c pass.error = error; error 1147 ext/phar/tar.c if (ZEND_HASH_APPLY_KEEP != phar_tar_setmetadata(phar->metadata, mentry, error TSRMLS_CC)) { error 1163 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 1170 ext/phar/tar.c if (ZEND_HASH_APPLY_KEEP != phar_tar_setmetadata(phar->metadata, mentry, error TSRMLS_CC)) { error 1182 ext/phar/tar.c if (error && *error) { error 1196 ext/phar/tar.c if (FAILURE == phar_create_signature(phar, newfile, &signature, &signature_length, error TSRMLS_CC)) { error 1197 ext/phar/tar.c if (error) { error 1198 ext/phar/tar.c char *save = *error; error 1199 ext/phar/tar.c spprintf(error, 0, "phar error: unable to write signature to tar-based phar: %s", save); error 1215 ext/phar/tar.c spprintf(error, 0, "phar error: unable to create temporary file"); error 1232 ext/phar/tar.c if (error) { error 1233 ext/phar/tar.c spprintf(error, 0, "phar error: unable to write signature to tar-based phar %s", phar->fname); error 1248 ext/phar/tar.c if (error && *error) { error 1268 ext/phar/tar.c if (error && *error) { error 1294 ext/phar/tar.c if (error) { error 1295 ext/phar/tar.c spprintf(error, 0, "unable to open new phar \"%s\" for writing", phar->fname); error 1318 ext/phar/tar.c if (error) { error 1319 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 353 ext/phar/util.c int phar_get_entry_data(phar_entry_data **ret, char *fname, int fname_len, char *path, int path_len, const char *mode, char allow_dir, char **error, int security TSRMLS_DC) /* {{{ */ 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 519 ext/phar/util.c phar_entry_data *phar_get_or_create_entry_data(char *fname, int fname_len, char *path, int path_len, const char *mode, char allow_dir, char **error, int security TSRMLS_DC) /* {{{ */ error 533 ext/phar/util.c if (FAILURE == phar_get_archive(&phar, fname, fname_len, NULL, 0, error TSRMLS_CC)) { error 537 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 544 ext/phar/util.c if (error) { error 545 ext/phar/util.c spprintf(error, 0, "phar error: invalid path \"%s\" contains %s", path, pcr_error); error 551 ext/phar/util.c if (error) { error 552 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 567 ext/phar/util.c if (error) { error 568 ext/phar/util.c spprintf(error, 0, "phar error: unable to create temporary file"); error 602 ext/phar/util.c if (error) { error 603 ext/phar/util.c spprintf(error, 0, "phar error: unable to add new entry \"%s\" to phar \"%s\"", etemp.filename, phar->fname); error 652 ext/phar/util.c int phar_copy_entry_fp(phar_entry_info *source, phar_entry_info *dest, char **error TSRMLS_DC) /* {{{ */ error 656 ext/phar/util.c if (FAILURE == phar_open_entry_fp(source, error, 1 TSRMLS_CC)) { error 671 ext/phar/util.c spprintf(error, 0, "phar error: unable to create temporary file"); error 684 ext/phar/util.c if (error) { error 685 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 696 ext/phar/util.c int phar_open_entry_fp(phar_entry_info *entry, char **error, int follow_links TSRMLS_DC) /* {{{ */ error 708 ext/phar/util.c return phar_open_entry_fp(link_entry, error, 1 TSRMLS_CC); error 730 ext/phar/util.c spprintf(error, 4096, "phar error: Cannot open phar archive \"%s\" for reading", phar->fname); error 740 ext/phar/util.c if (FAILURE == phar_postprocess_file(&dummy, entry->crc32, error, 1 TSRMLS_CC)) { error 749 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 758 ext/phar/util.c if (FAILURE == phar_postprocess_file(&dummy, entry->crc32, error, 1 TSRMLS_CC)) { error 771 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 784 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 795 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 805 ext/phar/util.c if (FAILURE == phar_postprocess_file(&dummy, entry->crc32, error, 0 TSRMLS_CC)) { error 812 ext/phar/util.c int phar_create_writeable_entry(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC) /* {{{ */ error 831 ext/phar/util.c if (error) { error 832 ext/phar/util.c *error = NULL; error 845 ext/phar/util.c if (error) { error 846 ext/phar/util.c spprintf(error, 0, "phar error: unable to create temporary file"); error 865 ext/phar/util.c int phar_separate_entry_fp(phar_entry_info *entry, char **error TSRMLS_DC) /* {{{ */ error 870 ext/phar/util.c if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) { error 880 ext/phar/util.c spprintf(error, 0, "phar error: unable to create temporary file"); error 891 ext/phar/util.c if (error) { error 892 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 914 ext/phar/util.c phar_entry_info * phar_open_jit(phar_archive_data *phar, phar_entry_info *entry, char **error TSRMLS_DC) /* {{{ */ error 916 ext/phar/util.c if (error) { error 917 ext/phar/util.c *error = NULL; error 920 ext/phar/util.c if (FAILURE == phar_open_entry_fp(entry, error, 1 TSRMLS_CC)) { error 924 ext/phar/util.c spprintf(error, 4096, "phar error: cannot seek to start of file \"%s\" in phar \"%s\"", entry->filename, phar->fname); error 966 ext/phar/util.c int phar_get_archive(phar_archive_data **archive, char *fname, int fname_len, char *alias, int alias_len, char **error TSRMLS_DC) /* {{{ */ error 975 ext/phar/util.c if (error) { error 976 ext/phar/util.c *error = NULL; error 986 ext/phar/util.c if (error) { error 987 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 1016 ext/phar/util.c if (error) { error 1017 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 1020 ext/phar/util.c if (error) { error 1021 ext/phar/util.c efree(*error); error 1022 ext/phar/util.c *error = NULL; error 1056 ext/phar/util.c if (error) { error 1057 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 1086 ext/phar/util.c if (error) { error 1087 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 1214 ext/phar/util.c phar_entry_info *phar_get_entry_info(phar_archive_data *phar, char *path, int path_len, char **error, int security TSRMLS_DC) /* {{{ */ error 1216 ext/phar/util.c return phar_get_entry_info_dir(phar, path, path_len, 0, error, security TSRMLS_CC); error 1224 ext/phar/util.c phar_entry_info *phar_get_entry_info_dir(phar_archive_data *phar, char *path, int path_len, char dir, char **error, int security TSRMLS_DC) /* {{{ */ error 1236 ext/phar/util.c if (error) { error 1237 ext/phar/util.c *error = NULL; error 1241 ext/phar/util.c if (error) { error 1242 ext/phar/util.c spprintf(error, 4096, "phar error: cannot directly access magic \".phar\" directory or files within it"); error 1248 ext/phar/util.c if (error) { error 1249 ext/phar/util.c spprintf(error, 4096, "phar error: invalid path \"%s\" must not be empty", path); error 1255 ext/phar/util.c if (error) { error 1256 ext/phar/util.c spprintf(error, 4096, "phar error: invalid path \"%s\" contains %s", path, pcr_error); error 1278 ext/phar/util.c if (error) { error 1279 ext/phar/util.c spprintf(error, 4096, "phar error: path \"%s\" is a directory", path); error 1285 ext/phar/util.c if (error) { error 1286 ext/phar/util.c spprintf(error, 4096, "phar error: path \"%s\" exists and is a not a directory", path); error 1325 ext/phar/util.c if (error) { error 1326 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 1347 ext/phar/util.c if (error) { error 1348 ext/phar/util.c spprintf(error, 4096, "phar error: path \"%s\" is a directory", path); error 1356 ext/phar/util.c if (error) { error 1357 ext/phar/util.c spprintf(error, 4096, "phar error: path \"%s\" exists and is a not a directory", path); error 1365 ext/phar/util.c if (error) { error 1366 ext/phar/util.c spprintf(error, 4096, "phar error: path \"%s\" exists as file \"%s\" and could not be mounted", path, test); error 1374 ext/phar/util.c if (error) { error 1375 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 1520 ext/phar/util.c int phar_verify_signature(php_stream *fp, size_t end_of_phar, php_uint32 sig_type, char *sig, int sig_len, char *fname, char **signature, int *signature_len, char **error TSRMLS_DC) /* {{{ */ error 1543 ext/phar/util.c if (error) { error 1544 ext/phar/util.c spprintf(error, 0, "openssl not loaded"); error 1562 ext/phar/util.c if (error) { error 1563 ext/phar/util.c spprintf(error, 0, "openssl public key could not be read"); error 1577 ext/phar/util.c if (error) { error 1578 ext/phar/util.c spprintf(error, 0, "openssl signature could not be verified"); error 1594 ext/phar/util.c if (error) { error 1595 ext/phar/util.c spprintf(error, 0, "openssl signature could not be processed"); error 1605 ext/phar/util.c if (error) { error 1606 ext/phar/util.c spprintf(error, 0, "openssl signature could not be processed"); error 1635 ext/phar/util.c if (error) { error 1636 ext/phar/util.c spprintf(error, 0, "broken openssl signature"); error 1673 ext/phar/util.c if (error) { error 1674 ext/phar/util.c spprintf(error, 0, "broken signature"); error 1706 ext/phar/util.c if (error) { error 1707 ext/phar/util.c spprintf(error, 0, "broken signature"); error 1718 ext/phar/util.c if (error) { error 1719 ext/phar/util.c spprintf(error, 0, "unsupported signature"); error 1747 ext/phar/util.c if (error) { error 1748 ext/phar/util.c spprintf(error, 0, "broken signature"); error 1780 ext/phar/util.c if (error) { error 1781 ext/phar/util.c spprintf(error, 0, "broken signature"); error 1790 ext/phar/util.c if (error) { error 1791 ext/phar/util.c spprintf(error, 0, "broken or unsupported signature"); error 1799 ext/phar/util.c int phar_create_signature(phar_archive_data *phar, php_stream *fp, char **signature, int *signature_length, char **error TSRMLS_DC) /* {{{ */ error 1846 ext/phar/util.c if (error) { error 1847 ext/phar/util.c spprintf(error, 0, "unable to write to phar \"%s\" with requested hash type", phar->fname); error 1863 ext/phar/util.c if (error) { error 1864 ext/phar/util.c spprintf(error, 0, "unable to write to phar \"%s\" with requested openssl signature", phar->fname); error 1873 ext/phar/util.c if (error) { error 1874 ext/phar/util.c spprintf(error, 0, "unable to process private key"); error 1886 ext/phar/util.c if (error) { error 1887 ext/phar/util.c spprintf(error, 0, "unable to initialize openssl signature for phar \"%s\"", phar->fname); error 1895 ext/phar/util.c if (error) { error 1896 ext/phar/util.c spprintf(error, 0, "unable to update the openssl signature for phar \"%s\"", phar->fname); error 1904 ext/phar/util.c if (error) { error 1905 ext/phar/util.c spprintf(error, 0, "unable to write phar \"%s\" with requested openssl signature", phar->fname); error 1918 ext/phar/util.c if (error) { error 1919 ext/phar/util.c spprintf(error, 0, "unable to write phar \"%s\" with requested openssl signature", phar->fname); error 166 ext/phar/zip.c int phar_parse_zipfile(php_stream *fp, char *fname, int fname_len, char *alias, int alias_len, phar_archive_data** pphar, char **error TSRMLS_DC) /* {{{ */ 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 439 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 441 ext/phar/zip.c if (error) { error 444 ext/phar/zip.c spprintf(&save, 4096, "signature cannot be verified: %s", *error); error 445 ext/phar/zip.c efree(*error); error 658 ext/phar/zip.c if (error) { error 659 ext/phar/zip.c spprintf(error, 4096, "phar error: invalid alias \"%s\" in zip-based phar \"%s\"", actual_alias, fname); error 670 ext/phar/zip.c if (error) { error 671 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 692 ext/phar/zip.c if (error) { error 693 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 722 ext/phar/zip.c int phar_open_or_create_zip(char *fname, int fname_len, char *alias, int alias_len, int is_data, int options, phar_archive_data** pphar, char **error TSRMLS_DC) /* {{{ */ error 725 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 749 ext/phar/zip.c if (error) { error 750 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 763 ext/phar/zip.c char **error; error 845 ext/phar/zip.c if (FAILURE == phar_open_entry_fp(entry, p->error, 0 TSRMLS_CC)) { error 846 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 857 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 884 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 886 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 897 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 904 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 911 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 934 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 962 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 967 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 973 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 978 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 983 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 988 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 993 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 998 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 1004 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 1009 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 1016 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 1023 ext/phar/zip.c if (FAILURE == phar_open_entry_fp(entry, p->error, 0 TSRMLS_CC)) { error 1030 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 1056 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 1067 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 1092 ext/phar/zip.c spprintf(pass->error, 0, "phar error: unable to create temporary file for the signature file"); error 1106 ext/phar/zip.c if (FAILURE == phar_create_signature(phar, newfile, &signature, &signature_length, pass->error TSRMLS_CC)) { error 1107 ext/phar/zip.c if (pass->error) { error 1108 ext/phar/zip.c char *save = *(pass->error); error 1109 ext/phar/zip.c spprintf(pass->error, 0, "phar error: unable to write signature to zip-based phar: %s", save); error 1123 ext/phar/zip.c spprintf(pass->error, 0, "phar error: unable to create temporary file for signature"); error 1132 ext/phar/zip.c if (pass->error) { error 1133 ext/phar/zip.c spprintf(pass->error, 0, "phar error: unable to write signature to zip-based phar %s", phar->fname); error 1147 ext/phar/zip.c if (pass->error && *(pass->error)) { error 1157 ext/phar/zip.c int phar_zip_flush(phar_archive_data *phar, char *user_stub, long len, int defaultstub, char **error TSRMLS_DC) /* {{{ */ error 1174 ext/phar/zip.c pass.error = &temperr; error 1183 ext/phar/zip.c if (error) { error 1184 ext/phar/zip.c spprintf(error, 0, "internal error: attempt to flush cached zip-based phar \"%s\"", phar->fname); error 1197 ext/phar/zip.c spprintf(error, 0, "phar error: unable to create temporary file"); error 1201 ext/phar/zip.c if (error) { error 1202 ext/phar/zip.c spprintf(error, 0, "unable to set alias in zip-based phar \"%s\"", phar->fname); error 1212 ext/phar/zip.c if (error) { error 1213 ext/phar/zip.c spprintf(error, 0, "unable to set alias in zip-based phar \"%s\"", phar->fname); error 1223 ext/phar/zip.c if (FAILURE == phar_get_archive(&phar, phar->fname, phar->fname_len, phar->alias, phar->alias_len, error TSRMLS_CC)) { error 1233 ext/phar/zip.c if (error) { error 1234 ext/phar/zip.c spprintf(error, 0, "unable to access resource to copy stub to new zip-based phar \"%s\"", phar->fname); error 1248 ext/phar/zip.c if (error) { error 1249 ext/phar/zip.c spprintf(error, 0, "unable to read resource to copy stub to new zip-based phar \"%s\"", phar->fname); error 1261 ext/phar/zip.c if (error) { error 1262 ext/phar/zip.c spprintf(error, 0, "illegal stub for zip-based phar \"%s\"", phar->fname); error 1275 ext/phar/zip.c spprintf(error, 0, "phar error: unable to create temporary file"); error 1282 ext/phar/zip.c if (error) { error 1283 ext/phar/zip.c spprintf(error, 0, "unable to create stub from string in new zip-based phar \"%s\"", phar->fname); error 1299 ext/phar/zip.c if (error) { error 1300 ext/phar/zip.c spprintf(error, 0, "unable to set stub in zip-based phar \"%s\"", phar->fname); error 1312 ext/phar/zip.c spprintf(error, 0, "phar error: unable to create temporary file"); error 1317 ext/phar/zip.c if (error) { error 1318 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 1332 ext/phar/zip.c if (error) { error 1333 ext/phar/zip.c spprintf(error, 0, "unable to create stub in zip-based phar \"%s\"", phar->fname); error 1345 ext/phar/zip.c if (error) { error 1346 ext/phar/zip.c spprintf(error, 0, "unable to overwrite stub in zip-based phar \"%s\"", phar->fname); error 1371 ext/phar/zip.c if (error) { error 1372 ext/phar/zip.c spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to open temporary file", phar->fname); error 1406 ext/phar/zip.c if (error) { error 1407 ext/phar/zip.c spprintf(error, 4096, "phar zip flush of \"%s\" failed: %s", phar->fname, temperr); error 1438 ext/phar/zip.c if (error) { error 1439 ext/phar/zip.c spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write central-directory", phar->fname); error 1452 ext/phar/zip.c if (error) { error 1453 ext/phar/zip.c spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write end of central-directory", phar->fname); error 1459 ext/phar/zip.c if (error) { error 1460 ext/phar/zip.c spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write metadata to zip comment", phar->fname); error 1469 ext/phar/zip.c if (error) { error 1470 ext/phar/zip.c spprintf(error, 4096, "phar zip flush of \"%s\" failed: unable to write end of central-directory", phar->fname); error 1500 ext/phar/zip.c if (error) { error 1501 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 1798 ext/snmp/snmp.c char *error = strerror(errno); error 1799 ext/snmp/snmp.c php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error while reading MIB file '%s': %s", filename, error); error 1302 ext/soap/php_http.c int error = 0; error 1305 ext/soap/php_http.c error = 1; error 1314 ext/soap/php_http.c error = 1; error 1319 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 2742 ext/soap/soap.c smart_str error = {0}; error 2743 ext/soap/soap.c smart_str_appends(&error,"Function (\""); error 2744 ext/soap/soap.c smart_str_appends(&error,function); error 2745 ext/soap/soap.c smart_str_appends(&error,"\") is not a valid method for this service"); error 2746 ext/soap/soap.c smart_str_0(&error); error 2747 ext/soap/soap.c add_soap_fault(this_ptr, "Client", error.c, NULL, NULL TSRMLS_CC); error 2748 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 105 ext/sockets/php_sockets.h char *sockets_strerror(int error TSRMLS_DC); error 393 ext/sockets/sockets.c php_sock->error = 0; error 480 ext/sockets/sockets.c out_sock->error = 0; error 553 ext/sockets/sockets.c char *sockets_strerror(int error TSRMLS_DC) /* {{{ */ 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 1208 ext/spl/spl_dllist.c goto error; error 1220 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 26634 ext/sqlite3/libsqlite/sqlite3.c static void storeLastErrno(unixFile *pFile, int 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 687 ext/xmlrpc/libxmlrpc/xml_element.c xml_element* xml_elem_parse_buf(const char* in_buf, int len, XML_ELEM_INPUT_OPTIONS options, XML_ELEM_ERROR 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 537 ext/xmlrpc/libxmlrpc/xmlrpc.c XMLRPC_VALUE XMLRPC_RequestSetError (XMLRPC_REQUEST request, XMLRPC_VALUE 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 759 ext/xmlrpc/libxmlrpc/xmlrpc.c static XMLRPC_VALUE map_expat_errors(XML_ELEM_ERROR error) { 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 89 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.h XMLRPC_VALUE XMLRPC_IntrospectionCreateDescription(const char* xml, XMLRPC_ERROR 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 55 ext/zip/lib/zip_add_entry.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 73 ext/zip/lib/zip_close.c int error; error 95 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_REMOVE, errno); error 109 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_INTERNAL, 0); error 134 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_INTERNAL, 0); error 144 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_INTERNAL, 0); error 162 ext/zip/lib/zip_close.c error = 0; error 176 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 177 ext/zip/lib/zip_close.c error = 1; error 184 ext/zip/lib/zip_close.c error = 1; error 200 ext/zip/lib/zip_close.c error = 1; error 207 ext/zip/lib/zip_close.c error = 1; error 220 ext/zip/lib/zip_close.c if (_zip_dirent_write(de, out, ZIP_FL_LOCAL, &za->error) < 0) { error 221 ext/zip/lib/zip_close.c error = 1; error 224 ext/zip/lib/zip_close.c if ((offset=_zip_file_get_offset(za, i, &za->error)) == 0) { error 225 ext/zip/lib/zip_close.c error = 1; error 229 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_SEEK, errno); error 230 ext/zip/lib/zip_close.c error = 1; error 233 ext/zip/lib/zip_close.c if (copy_data(za->zp, de->comp_size, out, &za->error) < 0) { error 234 ext/zip/lib/zip_close.c error = 1; error 240 ext/zip/lib/zip_close.c if (!error) { error 242 ext/zip/lib/zip_close.c error = 1; error 247 ext/zip/lib/zip_close.c if (error) { error 255 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_CLOSE, errno); error 267 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_RENAME, errno); error 301 ext/zip/lib/zip_close.c _zip_error_set_from_source(&za->error, src); error 343 ext/zip/lib/zip_close.c if ((is_zip64=_zip_dirent_write(de, ft, flags, &za->error)) < 0) error 353 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_COMPNOTSUPP, 0); error 373 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_COMPNOTSUPP, 0); error 413 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_SEEK, errno); error 418 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_INTERNAL, 0); error 434 ext/zip/lib/zip_close.c if ((ret=_zip_dirent_write(de, ft, flags, &za->error)) < 0) error 439 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_INTERNAL, 0); error 445 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_SEEK, errno); error 455 ext/zip/lib/zip_close.c copy_data(FILE *fs, zip_uint64_t len, FILE *ft, struct zip_error *error) error 467 ext/zip/lib/zip_close.c _zip_error_set(error, ZIP_ER_READ, errno); error 471 ext/zip/lib/zip_close.c _zip_error_set(error, ZIP_ER_EOF, 0); error 477 ext/zip/lib/zip_close.c _zip_error_set(error, ZIP_ER_WRITE, errno); error 497 ext/zip/lib/zip_close.c _zip_error_set_from_source(&za->error, src); error 504 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_WRITE, errno); error 512 ext/zip/lib/zip_close.c _zip_error_set_from_source(&za->error, src); error 544 ext/zip/lib/zip_close.c if (_zip_filerange_crc(out, cd_start, size, &crc, &za->error) < 0) error 550 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_SEEK, errno); error 555 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_WRITE, errno); error 600 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 607 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 614 ext/zip/lib/zip_close.c _zip_error_set(&za->error, ZIP_ER_TMPOPEN, errno); error 620 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 54 ext/zip/lib/zip_dir_add.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 59 ext/zip/lib/zip_dir_add.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 68 ext/zip/lib/zip_dir_add.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 70 ext/zip/lib/zip_dirent.c _zip_cdir_grow(struct zip_cdir *cd, zip_uint64_t nentry, struct zip_error *error) error 76 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INTERNAL, 0); error 85 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 101 ext/zip/lib/zip_dirent.c _zip_cdir_new(zip_uint64_t nentry, struct zip_error *error) error 107 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 114 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 142 ext/zip/lib/zip_dirent.c _zip_error_set(&za->error, ZIP_ER_READ, errno); error 152 ext/zip/lib/zip_dirent.c if ((ret=_zip_dirent_write(entry->changes ? entry->changes : entry->orig, fp, ZIP_FL_CENTRAL, &za->error)) < 0) error 159 ext/zip/lib/zip_dirent.c _zip_error_set(&za->error, ZIP_ER_READ, errno); error 201 ext/zip/lib/zip_dirent.c _zip_error_set(&za->error, ZIP_ER_WRITE, errno); error 329 ext/zip/lib/zip_dirent.c struct zip_error *error) error 343 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_NOZIP, 0); error 354 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_READ, errno); error 361 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_NOZIP, 0); error 411 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 416 ext/zip/lib/zip_dirent.c zde->filename = _zip_read_string(bufp ? &cur : NULL, fp, filename_len, 1, error); error 422 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 429 ext/zip/lib/zip_dirent.c zip_uint8_t *ef = _zip_read_data(bufp ? &cur : NULL, fp, ef_len, 0, error); error 433 ext/zip/lib/zip_dirent.c if ((zde->extra_fields=_zip_ef_parse(ef, ef_len, local ? ZIP_EF_LOCAL : ZIP_EF_CENTRAL, error)) == NULL) { error 443 ext/zip/lib/zip_dirent.c zde->comment = _zip_read_string(bufp ? &cur : NULL, fp, comment_len, 0, error); error 449 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 462 ext/zip/lib/zip_dirent.c const zip_uint8_t *ef = _zip_ef_get_by_id(zde->extra_fields, &got_len, ZIP_EF_ZIP64, 0, local ? ZIP_EF_LOCAL : ZIP_EF_CENTRAL, error); error 475 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 495 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_SEEK, EFBIG); error 541 ext/zip/lib/zip_dirent.c _zip_dirent_size(FILE *f, zip_uint16_t flags, struct zip_error *error) error 552 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_SEEK, errno); error 557 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_READ, errno); error 636 ext/zip/lib/zip_dirent.c _zip_dirent_write(struct zip_dirent *de, FILE *fp, zip_flags_t flags, struct zip_error *error) error 661 ext/zip/lib/zip_dirent.c ef = _zip_ef_utf8(ZIP_EF_UTF_8_NAME, de->filename, error); error 666 ext/zip/lib/zip_dirent.c struct zip_extra_field *ef2 = _zip_ef_utf8(ZIP_EF_UTF_8_COMMENT, de->comment, error); error 756 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_WRITE, errno); error 789 ext/zip/lib/zip_dirent.c _zip_ef_utf8(zip_uint16_t id, struct zip_string *str, struct zip_error *error) error 803 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 821 ext/zip/lib/zip_dirent.c _zip_get_dirent(struct zip *za, zip_uint64_t idx, zip_flags_t flags, struct zip_error *error) error 823 ext/zip/lib/zip_dirent.c if (error == NULL) error 824 ext/zip/lib/zip_dirent.c error = &za->error; error 827 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INVAL, 0); error 833 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INVAL, 0); error 837 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_DELETED, 0); error 890 ext/zip/lib/zip_dirent.c _zip_read_data(const zip_uint8_t **buf, FILE *fp, size_t len, int nulp, struct zip_error *error) error 899 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 911 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_READ, errno); error 913 ext/zip/lib/zip_dirent.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 933 ext/zip/lib/zip_dirent.c _zip_read_string(const zip_uint8_t **buf, FILE *fp, zip_uint16_t len, int nulp, struct zip_error *error) error 938 ext/zip/lib/zip_dirent.c if ((raw=_zip_read_data(buf, fp, len, nulp, error)) == NULL) error 941 ext/zip/lib/zip_dirent.c s = _zip_string_new(raw, len, ZIP_FL_ENC_GUESS, error); error 71 ext/zip/lib/zip_discard.c if (za->file[i]->error.zip_err == ZIP_ER_OK) { error 72 ext/zip/lib/zip_discard.c _zip_error_set(&za->file[i]->error, ZIP_ER_ZIPCLOSED, 0); error 77 ext/zip/lib/zip_discard.c _zip_error_fini(&za->error); error 46 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 45 ext/zip/lib/zip_extra_field.c _zip_ef_clone(const struct zip_extra_field *ef, struct zip_error *error) error 53 ext/zip/lib/zip_extra_field.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 126 ext/zip/lib/zip_extra_field.c _zip_ef_get_by_id(const struct zip_extra_field *ef, zip_uint16_t *lenp, zip_uint16_t id, zip_uint16_t id_idx, zip_flags_t flags, struct zip_error *error) error 149 ext/zip/lib/zip_extra_field.c _zip_error_set(error, ZIP_ER_NOENT, 0); error 218 ext/zip/lib/zip_extra_field.c _zip_ef_parse(const zip_uint8_t *data, zip_uint16_t len, zip_flags_t flags, struct zip_error *error) error 227 ext/zip/lib/zip_extra_field.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 236 ext/zip/lib/zip_extra_field.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 242 ext/zip/lib/zip_extra_field.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 330 ext/zip/lib/zip_extra_field.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 341 ext/zip/lib/zip_extra_field.c _zip_error_set(&za->error, ZIP_ER_SEEK, errno); error 346 ext/zip/lib/zip_extra_field.c _zip_error_set(&za->error, ZIP_ER_READ, errno); error 359 ext/zip/lib/zip_extra_field.c _zip_error_set(&za->error, ZIP_ER_SEEK, errno); error 363 ext/zip/lib/zip_extra_field.c ef_raw = _zip_read_data(NULL, za->zp, ef_len, 0, &za->error); error 368 ext/zip/lib/zip_extra_field.c if ((ef=_zip_ef_parse(ef_raw, ef_len, ZIP_EF_LOCAL, &za->error)) == NULL) { error 46 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 51 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 59 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 80 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 85 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 93 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 118 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 122 ext/zip/lib/zip_extra_field_api.c if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL) error 148 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_NOENT, 0); error 161 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 165 ext/zip/lib/zip_extra_field_api.c if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL) error 172 ext/zip/lib/zip_extra_field_api.c return _zip_ef_get_by_id(de->extra_fields, lenp, ef_id, ef_idx, flags, &za->error); error 185 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 189 ext/zip/lib/zip_extra_field_api.c if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL) error 214 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 218 ext/zip/lib/zip_extra_field_api.c if ((de=_zip_get_dirent(za, idx, flags, &za->error)) == NULL) error 244 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 252 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 257 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 283 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 302 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 307 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 345 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 361 ext/zip/lib/zip_extra_field_api.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 367 ext/zip/lib/zip_extra_field_api.c if ((e->changes->extra_fields=_zip_ef_clone(e->orig->extra_fields, &za->error)) == NULL) error 62 ext/zip/lib/zip_fclose.c if (zf->error.zip_err) error 63 ext/zip/lib/zip_fclose.c ret = zf->error.zip_err; error 65 ext/zip/lib/zip_fclose.c _zip_error_fini(&zf->error); error 50 ext/zip/lib/zip_file_add.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 46 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 51 ext/zip/lib/zip_file_get_comment.c if ((str=_zip_string_get(de->comment, &len, flags, &za->error)) == NULL) error 54 ext/zip/lib/zip_file_get_offset.c _zip_file_get_offset(const struct zip *za, zip_uint64_t idx, struct zip_error *error) error 62 ext/zip/lib/zip_file_get_offset.c _zip_error_set(error, ZIP_ER_SEEK, errno); error 67 ext/zip/lib/zip_file_get_offset.c if ((size=_zip_dirent_size(za->zp, ZIP_EF_LOCAL, error)) < 0) error 71 ext/zip/lib/zip_file_get_offset.c _zip_error_set(error, ZIP_ER_SEEK, EFBIG); error 49 ext/zip/lib/zip_file_rename.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 54 ext/zip/lib/zip_file_rename.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 65 ext/zip/lib/zip_file_rename.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 44 ext/zip/lib/zip_file_replace.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 65 ext/zip/lib/zip_file_replace.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 99 ext/zip/lib/zip_file_replace.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 54 ext/zip/lib/zip_file_set_comment.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 59 ext/zip/lib/zip_file_set_comment.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 64 ext/zip/lib/zip_file_set_comment.c if ((cstr=_zip_string_new((const zip_uint8_t *)comment, len, flags, &za->error)) == NULL) error 88 ext/zip/lib/zip_file_set_comment.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 48 ext/zip/lib/zip_file_set_external_attributes.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 62 ext/zip/lib/zip_file_set_external_attributes.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 43 ext/zip/lib/zip_file_strerror.c return _zip_error_strerror(&zf->error); error 57 ext/zip/lib/zip_fopen_index_encrypted.c _zip_error_set_from_source(&za->error, src); error 80 ext/zip/lib/zip_fopen_index_encrypted.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 90 ext/zip/lib/zip_fopen_index_encrypted.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 101 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 54 ext/zip/lib/zip_get_archive_comment.c if ((str=_zip_string_get(comment, &len, flags, &za->error)) == NULL) error 45 ext/zip/lib/zip_get_name.c return _zip_get_name(za, idx, flags, &za->error); error 51 ext/zip/lib/zip_get_name.c _zip_get_name(struct zip *za, zip_uint64_t idx, zip_flags_t flags, struct zip_error *error) error 56 ext/zip/lib/zip_get_name.c if ((de=_zip_get_dirent(za, idx, flags, error)) == NULL) error 59 ext/zip/lib/zip_get_name.c if ((str=_zip_string_get(de->filename, NULL, flags, error)) == NULL) error 42 ext/zip/lib/zip_memdup.c _zip_memdup(const void *mem, size_t len, struct zip_error *error) error 51 ext/zip/lib/zip_memdup.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 48 ext/zip/lib/zip_name_locate.c return _zip_name_locate(za, fname, flags, &za->error); error 54 ext/zip/lib/zip_name_locate.c _zip_name_locate(struct zip *za, const char *fname, zip_flags_t flags, struct zip_error *error) error 64 ext/zip/lib/zip_name_locate.c _zip_error_set(error, ZIP_ER_INVAL, 0); error 71 ext/zip/lib/zip_name_locate.c fn = _zip_get_name(za, i, flags, error); error 84 ext/zip/lib/zip_name_locate.c _zip_error_clear(error); error 89 ext/zip/lib/zip_name_locate.c _zip_error_set(error, ZIP_ER_NOENT, 0); error 47 ext/zip/lib/zip_new.c _zip_new(struct zip_error *error) error 53 ext/zip/lib/zip_new.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 60 ext/zip/lib/zip_new.c _zip_error_init(&za->error); error 111 ext/zip/lib/zip_open.c _zip_error_set(&za->error, ZIP_ER_MEMORY, errno); error 202 ext/zip/lib/zip_open.c unsigned int flags, struct zip_error *error) error 213 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_NOZIP, 0); error 219 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_MULTIDISK, 0); error 229 ext/zip/lib/zip_open.c cd = _zip_read_eocd64(fp, eocd-EOCD64LOCLEN, buf, buf_offset, buflen, flags, error); error 231 ext/zip/lib/zip_open.c cd = _zip_read_eocd(eocd, buf, buf_offset, buflen, flags, error); error 241 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 247 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 253 ext/zip/lib/zip_open.c if ((cd->comment=_zip_string_new(eocd+EOCDLEN, (zip_uint16_t)comment_len, ZIP_FL_ENC_GUESS, error)) == NULL) { error 274 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_SEEK, errno); error 276 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_NOZIP, 0); error 286 ext/zip/lib/zip_open.c || (_zip_dirent_read(cd->entry[i].orig, fp, bufp, &left, 0, error)) < 0) { error 293 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 310 ext/zip/lib/zip_open.c _zip_checkcons(FILE *fp, struct zip_cdir *cd, struct zip_error *error) error 327 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_NOZIP, 0); error 336 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_NOZIP, 0); error 341 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_SEEK, errno); error 345 ext/zip/lib/zip_open.c if (_zip_dirent_read(&temp, fp, NULL, NULL, 1, error) == -1) error 349 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 437 ext/zip/lib/zip_open.c struct zip_error error; error 439 ext/zip/lib/zip_open.c if ((za=_zip_new(&error)) == NULL) { error 440 ext/zip/lib/zip_open.c set_error(zep, &error, 0); error 599 ext/zip/lib/zip_open.c unsigned int flags, struct zip_error *error) error 606 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 618 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_NOZIP, 0); error 626 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_SEEK, EFBIG); error 632 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 637 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 641 ext/zip/lib/zip_open.c if ((cd=_zip_cdir_new(nentry, error)) == NULL) error 654 ext/zip/lib/zip_open.c off_t buf_offset, size_t buflen, unsigned int flags, struct zip_error *error) error 667 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_SEEK, EFBIG); error 672 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 680 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_SEEK, errno); error 686 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_READ, errno); error 691 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_READ, errno); error 699 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 707 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 718 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_MULTIDISK, 0); error 726 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_SEEK, EFBIG); error 730 ext/zip/lib/zip_open.c _zip_error_set(error, ZIP_ER_INCONS, 0); error 734 ext/zip/lib/zip_open.c if ((cd=_zip_cdir_new(nentry, error)) == NULL) error 48 ext/zip/lib/zip_set_archive_comment.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 53 ext/zip/lib/zip_set_archive_comment.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 58 ext/zip/lib/zip_set_archive_comment.c if ((cstr=_zip_string_new((const zip_uint8_t *)comment, len, ZIP_FL_ENC_GUESS, &za->error)) == NULL) error 63 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_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 47 ext/zip/lib/zip_set_file_comment.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 48 ext/zip/lib/zip_set_file_compression.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 53 ext/zip/lib/zip_set_file_compression.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 58 ext/zip/lib/zip_set_file_compression.c _zip_error_set(&za->error, ZIP_ER_COMPNOTSUPP, 0); error 80 ext/zip/lib/zip_set_file_compression.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 52 ext/zip/lib/zip_set_name.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 57 ext/zip/lib/zip_set_name.c _zip_error_set(&za->error, ZIP_ER_RDONLY, 0); error 63 ext/zip/lib/zip_set_name.c if ((str=_zip_string_new((const zip_uint8_t *)name, (zip_uint16_t)strlen(name), flags, &za->error)) == NULL) error 74 ext/zip/lib/zip_set_name.c _zip_error_set(&za->error, ZIP_ER_EXISTS, 0); error 100 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 71 ext/zip/lib/zip_source_pkware.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 75 ext/zip/lib/zip_source_pkware.c _zip_error_set(&za->error, ZIP_ER_ENCRNOTSUPP, 0); error 80 ext/zip/lib/zip_source_pkware.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 59 ext/zip/lib/zip_source_window.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 64 ext/zip/lib/zip_source_window.c _zip_error_set(&za->error, ZIP_ER_MEMORY, 0); error 48 ext/zip/lib/zip_source_zip.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 56 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 62 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_CHANGED, 0); error 67 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_INTERNAL, 0); error 75 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 81 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 88 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_NOPASSWD, 0); error 92 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_ENCRNOTSUPP, 0); error 101 ext/zip/lib/zip_source_zip_new.c _zip_error_set(&za->error, ZIP_ER_COMPNOTSUPP, 0); error 107 ext/zip/lib/zip_source_zip_new.c if ((offset=_zip_file_get_offset(srcza, srcidx, &za->error)) == 0) error 57 ext/zip/lib/zip_stat_index.c _zip_error_set(&za->error, ZIP_ER_CHANGED, 0); error 43 ext/zip/lib/zip_strerror.c return _zip_error_strerror(&za->error); error 88 ext/zip/lib/zip_string.c _zip_string_get(struct zip_string *string, zip_uint32_t *lenp, zip_flags_t flags, struct zip_error *error) error 108 ext/zip/lib/zip_string.c &string->converted_length, error)) == NULL) error 136 ext/zip/lib/zip_string.c _zip_string_new(const zip_uint8_t *raw, zip_uint16_t length, zip_flags_t flags, struct zip_error *error) error 155 ext/zip/lib/zip_string.c _zip_error_set(error, ZIP_ER_INVAL, 0); error 160 ext/zip/lib/zip_string.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 179 ext/zip/lib/zip_string.c _zip_error_set(error, ZIP_ER_INVAL, 0); error 56 ext/zip/lib/zip_unchange.c _zip_error_set(&za->error, ZIP_ER_INVAL, 0); error 63 ext/zip/lib/zip_unchange.c _zip_error_set(&za->error, ZIP_ER_EXISTS, 0); error 225 ext/zip/lib/zip_utf-8.c zip_uint32_t *utf8_lenp, struct zip_error *error) error 242 ext/zip/lib/zip_utf-8.c _zip_error_set(error, ZIP_ER_MEMORY, 0); error 275 ext/zip/lib/zipint.h struct zip_error error; /* error information */ error 301 ext/zip/lib/zipint.h struct zip_error error; /* error information */ error 471 ext/zip/lib/zipint.h zip_uint32_t *, struct zip_error *error); error 154 main/SAPI.c int error; error 163 main/SAPI.c error = zend_call_function(&fci, &SG(fci_cache) TSRMLS_CC); error 164 main/SAPI.c if (error == FAILURE) { error 1001 main/main.c PHPAPI void php_win32_docref2_from_error(DWORD error, const char *param1, const char *param2 TSRMLS_DC) { error 1002 main/main.c if (error == 0) { error 1008 main/main.c FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, error, 0, buf, PHP_WIN32_ERROR_MSG_BUFFER_SIZE, NULL); error 1014 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 282 main/php.h void phperror(char *error); error 318 main/php.h PHPAPI void php_win32_docref2_from_error(DWORD error, const char *param1, const char *param2 TSRMLS_DC); error 244 main/streams/streams.c static void wrapper_error_dtor(void *error) error 246 main/streams/streams.c efree(*(char**)error); error 67 sapi/caudium/caudium.c # define Pike_error error error 316 sapi/cli/php_http_parser.c # define STRICT_CHECK(cond) if (cond) goto error error 378 sapi/cli/php_http_parser.c if (nread > PHP_HTTP_MAX_HEADER_SIZE) goto error; error 387 sapi/cli/php_http_parser.c goto error; error 412 sapi/cli/php_http_parser.c if (ch != 'E') goto error; error 437 sapi/cli/php_http_parser.c goto error; error 463 sapi/cli/php_http_parser.c if (ch < '1' || ch > '9') goto error; error 476 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 481 sapi/cli/php_http_parser.c if (parser->http_major > 999) goto error; error 487 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 500 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 505 sapi/cli/php_http_parser.c if (parser->http_minor > 999) goto error; error 515 sapi/cli/php_http_parser.c goto error; error 536 sapi/cli/php_http_parser.c goto error; error 544 sapi/cli/php_http_parser.c if (parser->status_code > 999) goto error; error 576 sapi/cli/php_http_parser.c if (ch < 'A' || 'Z' < ch) goto error; error 605 sapi/cli/php_http_parser.c goto error; error 673 sapi/cli/php_http_parser.c goto error; error 693 sapi/cli/php_http_parser.c goto error; error 728 sapi/cli/php_http_parser.c goto error; error 750 sapi/cli/php_http_parser.c goto error; error 788 sapi/cli/php_http_parser.c goto error; error 824 sapi/cli/php_http_parser.c goto error; error 861 sapi/cli/php_http_parser.c goto error; error 898 sapi/cli/php_http_parser.c goto error; error 931 sapi/cli/php_http_parser.c goto error; error 944 sapi/cli/php_http_parser.c goto error; error 970 sapi/cli/php_http_parser.c if (ch < '1' || ch > '9') goto error; error 983 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 988 sapi/cli/php_http_parser.c if (parser->http_major > 999) goto error; error 994 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 1014 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 1019 sapi/cli/php_http_parser.c if (parser->http_minor > 999) goto error; error 1026 sapi/cli/php_http_parser.c if (ch != LF) goto error; error 1047 sapi/cli/php_http_parser.c if (!c) goto error; error 1204 sapi/cli/php_http_parser.c goto error; error 1247 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 1296 sapi/cli/php_http_parser.c if (ch < '0' || ch > '9') goto error; error 1470 sapi/cli/php_http_parser.c if (c == -1) goto error; error 1492 sapi/cli/php_http_parser.c goto error; error 1558 sapi/cli/php_http_parser.c goto error; error 1576 sapi/cli/php_http_parser.c error: error 509 sapi/fpm/fpm/fpm_conf.c char *error; error 511 sapi/fpm/fpm/fpm_conf.c error = fpm_conf_set_integer(value, &subconf, 0); error 513 sapi/fpm/fpm/fpm_conf.c if (error) { error 514 sapi/fpm/fpm/fpm_conf.c return error; error 1253 sapi/fpm/fpm/fpm_conf.c int *error = (int *)arg;; error 1260 sapi/fpm/fpm/fpm_conf.c if (*error) return; /* We got already an error. Switch to the end. */ error 1275 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1286 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1296 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1310 sapi/fpm/fpm/fpm_conf.c int *error = (int *)arg; error 1332 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1338 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1349 sapi/fpm/fpm/fpm_conf.c int *error = (int *)arg; error 1352 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1359 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1379 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1386 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1397 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1403 sapi/fpm/fpm/fpm_conf.c int *error = (int *)arg; error 1409 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1414 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1421 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1445 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1451 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1459 sapi/fpm/fpm/fpm_conf.c int *error; error 1462 sapi/fpm/fpm/fpm_conf.c error = (int *)arg; error 1463 sapi/fpm/fpm/fpm_conf.c if (*error) return; /* We got already an error. Switch to the end. */ error 1467 sapi/fpm/fpm/fpm_conf.c fpm_conf_ini_parser_entry(arg1, arg2, error TSRMLS_CC); error 1470 sapi/fpm/fpm/fpm_conf.c fpm_conf_ini_parser_section(arg1, error TSRMLS_CC); error 1473 sapi/fpm/fpm/fpm_conf.c fpm_conf_ini_parser_array(arg1, arg3, arg2, error TSRMLS_CC); error 1477 sapi/fpm/fpm/fpm_conf.c *error = 1; error 1485 sapi/fpm/fpm/fpm_conf.c int error = 0; error 1520 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 1522 sapi/fpm/fpm/fpm_conf.c if (error || tmp == FAILURE) { error 1532 sapi/fpm/fpm/fpm_conf.c fpm_conf_ini_parser_include(tmp, &error TSRMLS_CC); error 1533 sapi/fpm/fpm/fpm_conf.c if (error) { error 38 sapi/phpdbg/phpdbg_info.c PHPDBG_INFO_COMMAND_D(error, "show last error", 'e', info_error, NULL, 0), error 78 sapi/phpdbg/phpdbg_info.c PHPDBG_INFO(error) /* {{{ */ error 32 sapi/phpdbg/phpdbg_info.h PHPDBG_INFO(error); error 298 sapi/phpdbg/phpdbg_watch.c goto error; error 324 sapi/phpdbg/phpdbg_watch.c goto error; error 393 sapi/phpdbg/phpdbg_watch.c error: error 213 win32/sendmail.c PHPAPI int TSendMail(char *host, int *error, char **error_message, 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 25 win32/winutil.c PHPAPI char *php_win32_error_to_msg(int error) error 31 win32/winutil.c NULL, error, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR)&buf, 0, NULL error 19 win32/winutil.h PHPAPI char *php_win32_error_to_msg(int error);