Searched refs:zend_spprintf (Results 1 – 10 of 10) sorted by relevance
/PHP-5.3/Zend/ |
H A D | zend_exceptions.h | 56 int zend_spprintf(char **message, int max_len, char *format, ...);
|
H A D | zend_closures.c | 261 name_len = zend_spprintf(&name, 0, "%s$%s", in zend_closure_get_debug_info() 265 name_len = zend_spprintf(&name, 0, "%s$param%d", in zend_closure_get_debug_info() 269 info_len = zend_spprintf(&info, 0, "%s", in zend_closure_get_debug_info()
|
H A D | zend_API.c | 563 zend_spprintf(error, 0, "to be a class name derived from %s, '%s' given", in zend_parse_arg_impl() 570 zend_spprintf(error, 0, "to be a valid class name, '%s' given", in zend_parse_arg_impl() 594 zend_spprintf(error, 0, "to be a valid callback, %s", is_callable_error); in zend_parse_arg_impl() 603 zend_spprintf(error, 0, "to be a valid callback, %s", is_callable_error); in zend_parse_arg_impl() 2422 if (error) zend_spprintf(error, 0, "class '%.*s' not found", name_len, name); in zend_is_callable_check_class() 2474 if (error) zend_spprintf(error, 0, "invalid function name"); in zend_is_callable_check_func() 2676 if (error) zend_spprintf(error, 0, "function '%s' does not exist", mname); in zend_is_callable_check_func() 2846 if (error) zend_spprintf(error, 0, "first array member is not a valid class name or object"); in zend_is_callable_ex() 2848 if (error) zend_spprintf(error, 0, "second array member is not a valid method"); in zend_is_callable_ex() 2851 if (error) zend_spprintf(error, 0, "array must have exactly two members"); in zend_is_callable_ex() [all …]
|
H A D | zend_exceptions.c | 550 int zend_spprintf(char **message, int max_len, char *format, ...) /* {{{ */ in zend_spprintf() function 607 len = zend_spprintf(&str, 0, "exception '%s' with message '%s' in %s:%ld\nStack trace:\n%s%s%s", in ZEND_METHOD() 612 len = zend_spprintf(&str, 0, "exception '%s' in %s:%ld\nStack trace:\n%s%s%s", in ZEND_METHOD()
|
H A D | zend_operators.c | 567 Z_STRLEN_P(op) = zend_spprintf(&Z_STRVAL_P(op), 0, "Resource id #%ld", tmp); in _convert_to_string() 573 Z_STRLEN_P(op) = zend_spprintf(&Z_STRVAL_P(op), 0, "%ld", lval); in _convert_to_string() 578 Z_STRLEN_P(op) = zend_spprintf(&Z_STRVAL_P(op), 0, "%.*G", (int) EG(precision), dval); in _convert_to_string() 2073 …Z_STRLEN_P(op) = zend_spprintf(&Z_STRVAL_P(op), 0, "%.*G", (int) EG(precision), (double)Z_DVAL_P(o… in zend_locale_sprintf_double()
|
H A D | zend.c | 1322 …zend_spprintf(&compiled_string_description, 0, COMPILED_STRING_DESCRIPTION_FORMAT, cur_filename, c… in zend_make_compiled_string_description()
|
H A D | zend_language_scanner.l | 1447 zendlval->value.str.len = zend_spprintf(&zendlval->value.str.val, 0, "%s%s%s", in lex_scan()
|
H A D | zend_language_scanner.c | 4128 zendlval->value.str.len = zend_spprintf(&zendlval->value.str.val, 0, "%s%s%s", in lex_scan()
|
H A D | zend_compile.c | 97 zend_spprintf(&result->value.str.val, 0, "%c%s%s%s", '\0', name, filename, char_pos_buf); in build_runtime_defined_function_key()
|
/PHP-5.3/main/ |
H A D | main.c | 1172 new_timeout_strlen = zend_spprintf(&new_timeout_str, 0, "%ld", new_timeout); in PHP_FUNCTION()
|
Completed in 199 milliseconds