/PHP-7.0/ext/standard/ |
H A D | url_scanner_ex.h | 38 smart_str tag; /* read only */ 39 smart_str arg; /* read only */ 40 smart_str val; /* read only */ 41 smart_str buf; 44 smart_str result; 47 smart_str form_app, url_app;
|
H A D | php_http.h | 27 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,
|
H A D | var.c | 383 …y_element_export(zval *zv, zend_ulong index, zend_string *key, int level, smart_str *buf) /* {{{ */ in php_array_element_export() 436 PHPAPI void php_var_export_ex(zval *struc, int level, smart_str *buf) /* {{{ */ in php_var_export_ex() 556 smart_str buf = {0}; in php_var_export() 570 smart_str buf = {0}; in PHP_FUNCTION() 588 static void php_var_serialize_intern(smart_str *buf, zval *struc, php_serialize_data_t var_hash); 636 static inline void php_var_serialize_long(smart_str *buf, zend_long val) /* {{{ */ in php_var_serialize_long() 644 static inline void php_var_serialize_string(smart_str *buf, char *str, size_t len) /* {{{ */ in php_var_serialize_string() 654 static inline zend_bool php_var_serialize_class_name(smart_str *buf, zval *struc) /* {{{ */ in php_var_serialize_class_name() 805 static void php_var_serialize_intern(smart_str *buf, zval *struc, php_serialize_data_t var_hash) /*… in php_var_serialize_intern() 998 PHPAPI void php_var_serialize(smart_str *buf, zval *struc, php_serialize_data_t *data) /* {{{ */ in php_var_serialize() [all …]
|
H A D | php_var.h | 37 PHPAPI void php_var_export_ex(zval *struc, int level, smart_str *buf); 56 PHPAPI void php_var_serialize(smart_str *buf, zval *struc, php_serialize_data_t *data);
|
H A D | url_scanner_ex.c | 113 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c… in PHP_INI_END() 891 smart_str surl = {0}; in php_url_scanner_adapt_single_url() 892 smart_str buf = {0}; in php_url_scanner_adapt_single_url() 893 smart_str url_app = {0}; in php_url_scanner_adapt_single_url() 1011 smart_str sname = {0}; in php_url_scanner_add_var() 1012 smart_str svalue = {0}; in php_url_scanner_add_var()
|
H A D | url_scanner_ex.re | 116 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c… 408 smart_str surl = {0}; 409 smart_str buf = {0}; 410 smart_str url_app = {0}; 528 smart_str sname = {0}; 529 smart_str svalue = {0};
|
H A D | http.c | 28 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, in php_url_encode_hash_ex() 232 smart_str formstr = {0}; in PHP_FUNCTION()
|
/PHP-7.0/Zend/ |
H A D | zend_smart_str.h | 46 ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len); 47 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len); 51 static zend_always_inline size_t smart_str_alloc(smart_str *str, size_t len, zend_bool persistent) { in END_EXTERN_C() 68 static zend_always_inline void smart_str_free(smart_str *str) { in smart_str_free() 76 static zend_always_inline void smart_str_0(smart_str *str) { in smart_str_0() 82 static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, zend_bool persistent)… in smart_str_appendc_ex() 94 static zend_always_inline void smart_str_append_ex(smart_str *dest, const zend_string *src, zend_bo… in smart_str_append_ex() 98 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() 104 static zend_always_inline void smart_str_append_long_ex(smart_str *dest, zend_long num, zend_bool p… in smart_str_append_long_ex() 110 static zend_always_inline void smart_str_append_unsigned_ex(smart_str *dest, zend_ulong num, zend_b… in smart_str_append_unsigned_ex() [all …]
|
H A D | zend_smart_str.c | 35 ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len) in smart_str_erealloc() 49 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len) in smart_str_realloc()
|
H A D | zend_smart_str_public.h | 25 } smart_str; typedef
|
H A D | zend_ast.c | 598 static void zend_ast_export_ex(smart_str *str, zend_ast *ast, int priority, int indent); 600 static void zend_ast_export_str(smart_str *str, zend_string *s) in zend_ast_export_str() 615 static void zend_ast_export_qstr(smart_str *str, char quote, zend_string *s) in zend_ast_export_qstr() 660 static void zend_ast_export_indent(smart_str *str, int indent) in zend_ast_export_indent() 798 static void zend_ast_export_name_list(smart_str *str, zend_ast_list *list, int indent) in zend_ast_export_name_list() 811 static void zend_ast_export_var_list(smart_str *str, zend_ast_list *list, int indent) in zend_ast_export_var_list() 828 static void zend_ast_export_stmt(smart_str *str, zend_ast *ast, int indent) in zend_ast_export_stmt() 870 static void zend_ast_export_if_stmt(smart_str *str, zend_ast_list *list, int indent) in zend_ast_export_if_stmt() 907 static void zend_ast_export_zval(smart_str *str, zval *zv, int priority, int indent) in zend_ast_export_zval() 1026 static void zend_ast_export_ex(smart_str *str, zend_ast *ast, int priority, int indent) in zend_ast_export_ex() [all …]
|
/PHP-7.0/ext/soap/ |
H A D | php_http.h | 32 int proxy_authentication(zval* this_ptr, smart_str* soap_headers); 33 int basic_authentication(zval* this_ptr, smart_str* soap_headers); 38 smart_str* soap_headers);
|
H A D | php_http.c | 35 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() 787 smart_str auth = {0}; in make_http_soap_request() 967 smart_str name = {0}; in make_http_soap_request() [all …]
|
/PHP-7.0/ext/json/ |
H A D | json_encoder.c | 44 static void php_json_escape_string(smart_str *buf, char *s, size_t len, int options); 75 static inline void php_json_pretty_print_char(smart_str *buf, int options, char c) /* {{{ */ in php_json_pretty_print_char() 83 static inline void php_json_pretty_print_indent(smart_str *buf, int options) /* {{{ */ in php_json_pretty_print_indent() 103 static inline void php_json_encode_double(smart_str *buf, double d, int options) /* {{{ */ in php_json_encode_double() 118 static void php_json_encode_array(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode_array() 278 static void php_json_escape_string(smart_str *buf, char *s, size_t len, int options) /* {{{ */ in php_json_escape_string() 446 static void php_json_encode_serializable_object(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode_serializable_object() 501 void php_json_encode_zval(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode_zval()
|
H A D | php_json_encoder.h | 25 void php_json_encode_zval(smart_str *buf, zval *val, int options);
|
H A D | php_json.h | 95 PHP_JSON_API void php_json_encode(smart_str *buf, zval *val, int options);
|
H A D | json.c | 194 PHP_JSON_API void php_json_encode(smart_str *buf, zval *val, int options) /* {{{ */ in php_json_encode() 218 smart_str buf = {0}; in PHP_FUNCTION()
|
/PHP-7.0/ext/intl/transliterator/ |
H A D | transliterator.h | 27 smart_str transliterator_parse_error_to_string( UParseError* pe );
|
/PHP-7.0/ext/readline/ |
H A D | readline_cli.h | 28 smart_str *prompt_str;
|
/PHP-7.0/main/ |
H A D | spprintf.c | 128 smart_str_appendc((smart_str *)(xbuf), (ch)); \ 136 smart_str_appendl((smart_str *)(xbuf), (str), (len)); \ 147 smart_str_alloc(((smart_str *)(xbuf)), (count), 0); \ 148 memset(ZSTR_VAL(((smart_str *)(xbuf))->s) + ZSTR_LEN(((smart_str *)(xbuf))->s), (ch), (count)); \ 149 ZSTR_LEN(((smart_str *)(xbuf))->s) += (count); \ 744 …*(va_arg(ap, int *)) = is_char? (int)((smart_string *)xbuf)->len : (int)ZSTR_LEN(((smart_str *)xbu… in xbuf_format_converter() 879 smart_str buf = {0}; in vstrpprintf()
|
/PHP-7.0/ext/mysqlnd/ |
H A D | php_mysqlnd.c | 83 smart_str * buffer = (smart_str *) buf; in mysqlnd_minfo_dump_loaded_plugins() 98 mysqlnd_minfo_dump_api_plugins(smart_str * buffer) in mysqlnd_minfo_dump_api_plugins() 153 smart_str tmp_str = {0}; in PHP_MINFO_FUNCTION()
|
/PHP-7.0/ext/intl/ |
H A D | intl_error.h | 50 smart_str intl_parse_error_to_string( UParseError* pe );
|
H A D | intl_error.c | 244 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.0/ext/wddx/ |
H A D | php_wddx_api.h | 55 typedef smart_str wddx_packet;
|
/PHP-7.0/ext/libxml/ |
H A D | php_libxml.h | 47 smart_str error_buffer;
|