Home
last modified time | relevance | path

Searched refs:smart_str (Results 1 – 25 of 81) sorted by relevance

1234

/PHP-7.4/ext/standard/
H A Durl_scanner_ex.h40 smart_str tag; /* read only */
41 smart_str arg; /* read only */
42 smart_str val; /* read only */
43 smart_str buf;
46 smart_str result;
49 smart_str form_app, url_app;
57 smart_str attr_val;
H A Dphp_http.h25 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,
H A Dphp_var.h36 PHPAPI void php_var_export_ex(zval *struc, int level, smart_str *buf);
43 PHPAPI void php_var_serialize(smart_str *buf, zval *struc, php_serialize_data_t *data);
H A Dvar.c427 …y_element_export(zval *zv, zend_ulong index, zend_string *key, int level, smart_str *buf) /* {{{ */ in php_array_element_export()
480 PHPAPI void php_var_export_ex(zval *struc, int level, smart_str *buf) /* {{{ */ in php_var_export_ex()
620 smart_str buf = {0}; in php_var_export()
634 smart_str buf = {0}; in PHP_FUNCTION()
654 static void php_var_serialize_intern(smart_str *buf, zval *struc, php_serialize_data_t var_hash);
702 static inline void php_var_serialize_long(smart_str *buf, zend_long val) /* {{{ */ in php_var_serialize_long()
710 static inline void php_var_serialize_string(smart_str *buf, char *str, size_t len) /* {{{ */ in php_var_serialize_string()
720 static inline zend_bool php_var_serialize_class_name(smart_str *buf, zval *struc) /* {{{ */ in php_var_serialize_class_name()
952 static void php_var_serialize_intern(smart_str *buf, zval *struc, php_serialize_data_t var_hash) /*… in php_var_serialize_intern()
1132 PHPAPI void php_var_serialize(smart_str *buf, zval *struc, php_serialize_data_t *data) /* {{{ */ in php_var_serialize()
[all …]
H A Durl_scanner_ex.re185 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c…
588 smart_str surl = {0};
589 smart_str buf = {0};
590 smart_str url_app = {0};
732 smart_str sname = {0};
733 smart_str svalue = {0};
734 smart_str hname = {0};
735 smart_str hvalue = {0};
841 smart_str sname = {0};
842 smart_str hname = {0};
[all …]
H A Dmail.c133 static void php_mail_build_headers_elems(smart_str *s, zend_string *key, zval *val);
135 static void php_mail_build_headers_elem(smart_str *s, zend_string *key, zval *val) in php_mail_build_headers_elem()
161 static void php_mail_build_headers_elems(smart_str *s, zend_string *key, zval *val) in php_mail_build_headers_elems()
185 smart_str s = {0}; in php_mail_build_headers()
H A Dhttp.c26 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, in php_url_encode_hash_ex()
240 smart_str formstr = {0}; in PHP_FUNCTION()
/PHP-7.4/Zend/
H A Dzend_smart_str.h51 ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len);
52 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len);
53 ZEND_API void ZEND_FASTCALL smart_str_append_escaped(smart_str *str, const char *s, size_t l);
54 ZEND_API void smart_str_append_printf(smart_str *dest, const char *format, ...)
59 static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, zend_bool persistent) { in END_EXTERN_C()
83 static zend_always_inline void smart_str_free_ex(smart_str *str, zend_bool persistent) { in smart_str_free_ex()
91 static zend_always_inline void smart_str_0(smart_str *str) { in smart_str_0()
97 static zend_always_inline size_t smart_str_get_len(smart_str *str) { in smart_str_get_len()
101 static zend_always_inline zend_string *smart_str_extract(smart_str *str) { in smart_str_extract()
129 static zend_always_inline void smart_str_append_smart_str_ex(smart_str *dest, const smart_str *src,… in smart_str_append_smart_str_ex()
[all …]
H A Dzend_smart_str_public.h25 } smart_str; typedef
H A Dzend_smart_str.c31 ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len) in smart_str_erealloc()
45 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len) in smart_str_realloc()
78 ZEND_API void ZEND_FASTCALL smart_str_append_escaped(smart_str *str, const char *s, size_t l) { in smart_str_append_escaped()
117 ZEND_API void smart_str_append_printf(smart_str *dest, const char *format, ...) { in smart_str_append_printf()
H A Dzend_ast.c924 static ZEND_COLD void zend_ast_export_ex(smart_str *str, zend_ast *ast, int priority, int indent);
926 static ZEND_COLD void zend_ast_export_str(smart_str *str, zend_string *s) in zend_ast_export_str()
941 static ZEND_COLD void zend_ast_export_qstr(smart_str *str, char quote, zend_string *s) in zend_ast_export_qstr()
986 static ZEND_COLD void zend_ast_export_indent(smart_str *str, int indent) in zend_ast_export_indent()
1069 static ZEND_COLD void zend_ast_export_var(smart_str *str, zend_ast *ast, int priority, int indent) in zend_ast_export_var()
1145 static ZEND_COLD void zend_ast_export_var_list(smart_str *str, zend_ast_list *list, int indent) in zend_ast_export_var_list()
1162 static ZEND_COLD void zend_ast_export_stmt(smart_str *str, zend_ast *ast, int indent) in zend_ast_export_stmt()
1204 static ZEND_COLD void zend_ast_export_if_stmt(smart_str *str, zend_ast_list *list, int indent) in zend_ast_export_if_stmt()
1241 static ZEND_COLD void zend_ast_export_zval(smart_str *str, zval *zv, int priority, int indent) in zend_ast_export_zval()
1357 static ZEND_COLD void zend_ast_export_ex(smart_str *str, zend_ast *ast, int priority, int indent) in zend_ast_export_ex()
[all …]
/PHP-7.4/ext/soap/
H A Dphp_http.h31 int proxy_authentication(zval* this_ptr, smart_str* soap_headers);
32 int basic_authentication(zval* this_ptr, smart_str* soap_headers);
37 smart_str* soap_headers);
H A Dphp_http.c35 int proxy_authentication(zval* this_ptr, smart_str* soap_headers) in proxy_authentication()
42 smart_str auth = {0}; in proxy_authentication()
63 int basic_authentication(zval* this_ptr, smart_str* soap_headers) in basic_authentication()
71 smart_str auth = {0}; in basic_authentication()
96 smart_str* soap_headers) in http_context_headers()
242 smart_str soap_headers = {0}; in http_connect()
344 smart_str soap_headers = {0}; in make_http_soap_request()
345 smart_str soap_headers_z = {0}; in make_http_soap_request()
811 smart_str auth = {0}; in make_http_soap_request()
984 smart_str name = {0}; in make_http_soap_request()
[all …]
/PHP-7.4/ext/intl/transliterator/
H A Dtransliterator.h27 smart_str transliterator_parse_error_to_string( UParseError* pe );
/PHP-7.4/ext/json/
H A Dphp_json.h101 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth);
102 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options);
H A Djson_encoder.c36 smart_str *buf, const char *s, size_t len,
72 static inline void php_json_pretty_print_char(smart_str *buf, int options, char c) /* {{{ */ in php_json_pretty_print_char()
80 static inline void php_json_pretty_print_indent(smart_str *buf, int options, php_json_encoder *enco… in php_json_pretty_print_indent()
100 static inline void php_json_encode_double(smart_str *buf, double d, int options) /* {{{ */ in php_json_encode_double()
130 static int php_json_encode_array(smart_str *buf, zval *val, int options, php_json_encoder *encoder)… in php_json_encode_array()
258 smart_str *buf, const char *s, size_t len, in php_json_escape_string()
471 static int php_json_encode_serializable_object(smart_str *buf, zval *val, int options, php_json_enc… in php_json_encode_serializable_object()
533 int php_json_encode_zval(smart_str *buf, zval *val, int options, php_json_encoder *encoder) /* {{{ … in php_json_encode_zval()
H A Dphp_json_encoder.h38 int php_json_encode_zval(smart_str *buf, zval *val, int options, php_json_encoder *encoder);
H A Djson.c193 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth) /* {{{… in php_json_encode_ex()
208 PHP_JSON_API int php_json_encode(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode()
272 smart_str buf = {0}; in PHP_FUNCTION()
/PHP-7.4/main/
H A Dspprintf.c122 smart_str_appendc((smart_str *)(xbuf), (ch)); \
130 smart_str_appendl((smart_str *)(xbuf), (str), (len)); \
140 smart_str_alloc(((smart_str *)(xbuf)), (count), 0); \
141 memset(ZSTR_VAL(((smart_str *)(xbuf))->s) + ZSTR_LEN(((smart_str *)(xbuf))->s), (ch), (count)); \
142 ZSTR_LEN(((smart_str *)(xbuf))->s) += (count); \
727 …*(va_arg(ap, int *)) = is_char? (int)((smart_string *)xbuf)->len : (int)ZSTR_LEN(((smart_str *)xbu… in xbuf_format_converter()
824 PHPAPI void php_printf_to_smart_str(smart_str *buf, const char *format, va_list ap) /* {{{ */ in php_printf_to_smart_str()
H A Dspprintf.h28 PHPAPI void php_printf_to_smart_str(smart_str *buf, const char *format, va_list ap);
/PHP-7.4/ext/readline/
H A Dreadline_cli.h26 smart_str *prompt_str;
/PHP-7.4/ext/mysqlnd/
H A Dphp_mysqlnd.c58 smart_str * buffer = (smart_str *) buf; in mysqlnd_minfo_dump_loaded_plugins()
73 mysqlnd_minfo_dump_api_plugins(smart_str * buffer) in mysqlnd_minfo_dump_api_plugins()
128 smart_str tmp_str = {0}; in PHP_MINFO_FUNCTION()
/PHP-7.4/ext/intl/
H A Dintl_error.h50 smart_str intl_parse_error_to_string( UParseError* pe );
H A Dintl_error.c244 smart_str intl_parse_error_to_string( UParseError* pe ) in intl_parse_error_to_string()
246 smart_str ret = {0}; in intl_parse_error_to_string()
/PHP-7.4/ext/libxml/
H A Dphp_libxml.h45 smart_str error_buffer;

Completed in 44 milliseconds

1234