Home
last modified time | relevance | path

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

123

/PHP-5.3/ext/standard/
H A Durl_scanner_ex.h38 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 Dphp_smart_str.h104 smart_str *__s = (smart_str *) (s); \
114 smart_str *__dest = (smart_str *) (dest); \
182 smart_str_appendl_ex((dest), ((smart_str *)(src))->c, \
183 ((smart_str *)(src))->len, (what));
H A Dvar.c351 smart_str *buf; in php_array_element_export()
354 buf = va_arg(args, smart_str *); in php_array_element_export()
387 smart_str *buf; in php_object_element_export()
390 buf = va_arg(args, smart_str *); in php_object_element_export()
421 PHPAPI void php_var_export_ex(zval **struc, int level, smart_str *buf TSRMLS_DC) /* {{{ */ in php_var_export_ex()
505 smart_str buf = {0}; in php_var_export()
519 smart_str buf = {0}; in PHP_FUNCTION()
537 static void php_var_serialize_intern(smart_str *buf, zval *struc, HashTable *var_hash TSRMLS_DC);
574 static inline void php_var_serialize_long(smart_str *buf, long val) /* {{{ */ in php_var_serialize_long()
582 static inline void php_var_serialize_string(smart_str *buf, char *str, int len) /* {{{ */ in php_var_serialize_string()
[all …]
H A Dphp_smart_str_public.h30 } smart_str; typedef
H A Dphp_http.h27 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 TSRMLS_DC);
50 PHPAPI void php_var_serialize(smart_str *buf, zval **struc, php_serialize_data_t *var_hash TSRMLS_D…
H A Durl_scanner_ex.c106 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c… in PHP_INI_END()
923 smart_str surl = {0}; in php_url_scanner_adapt_single_url()
924 smart_str buf = {0}; in php_url_scanner_adapt_single_url()
925 smart_str url_app = {0}; in php_url_scanner_adapt_single_url()
1029 smart_str val; in php_url_scanner_add_var()
H A Durl_scanner_ex.re110 static inline void append_modified_url(smart_str *url, smart_str *dest, smart_str *url_app, const c…
362 smart_str surl = {0};
363 smart_str buf = {0};
364 smart_str url_app = {0};
468 smart_str val;
H A Dhttp.c28 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, in php_url_encode_hash_ex()
198 smart_str formstr = {0}; in PHP_FUNCTION()
/PHP-5.3/ext/soap/
H A Dphp_http.h34 int proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
35 int basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC);
40 smart_str* soap_headers TSRMLS_DC);
H A Dphp_http.c35 int proxy_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) in proxy_authentication()
42 smart_str auth = {0}; in proxy_authentication()
62 int basic_authentication(zval* this_ptr, smart_str* soap_headers TSRMLS_DC) in basic_authentication()
70 smart_str auth = {0}; in basic_authentication()
94 smart_str* soap_headers TSRMLS_DC) in http_context_headers()
205 smart_str soap_headers = {0}; in http_connect()
277 smart_str soap_headers = {0}; in make_http_soap_request()
278 smart_str soap_headers_z = {0}; in make_http_soap_request()
720 smart_str auth = {0}; in make_http_soap_request()
893 smart_str name = {0}; in make_http_soap_request()
[all …]
H A DTODO.old14 -convert all string mainpulation to use smart_str
H A Dphp_sdl.c201 smart_str key = {0}; in get_binding_from_name()
535 smart_str key = {0}; in wsdl_soap_binding_header()
640 smart_str key = {0}; in wsdl_soap_binding_body()
1785 static void sdl_serialize_string(const char *str, smart_str *out) in sdl_serialize_string()
1800 static void sdl_serialize_key(HashTable *ht, smart_str *out) in sdl_serialize_key()
1904 static void sdl_serialize_resriction_int(sdlRestrictionIntPtr x, smart_str *out) in sdl_serialize_resriction_int()
1915 static void sdl_serialize_resriction_char(sdlRestrictionCharPtr x, smart_str *out) in sdl_serialize_resriction_char()
2112 smart_str buf = {0}; in add_sdl_to_cache()
2113 smart_str *out = &buf; in add_sdl_to_cache()
3196 smart_str headers = {0}; in get_sdl()
[all …]
H A Dphp_schema.c51 smart_str nscat = {0}; in create_encoder()
460 smart_str anonymous = {0}; in schema_list()
556 smart_str anonymous = {0}; in schema_union()
1074 smart_str key = {0}; in schema_group()
1497 smart_str key = {0}; in schema_element()
1503 smart_str nscat = {0}; in schema_element()
1724 smart_str key = {0}; in schema_attribute()
1833 smart_str key2 = {0}; in schema_attribute()
1901 smart_str anonymous = {0}; in schema_attribute()
1935 smart_str key = {0}; in schema_attributeGroup()
[all …]
/PHP-5.3/ext/json/
H A Dphp_json.h50 PHP_JSON_API void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC);
H A Djson.c132 static void json_escape_string(smart_str *buf, char *s, int len, int options TSRMLS_DC);
169 static void json_encode_array(smart_str *buf, zval **val, int options TSRMLS_DC) /* {{{ */ in json_encode_array()
279 static void json_escape_string(smart_str *buf, char *s, int len, int options TSRMLS_DC) /* {{{ */ in json_escape_string()
433 PHP_JSON_API void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC) /* {{{ */ in php_json_encode()
563 smart_str buf = {0}; in PHP_FUNCTION()
H A DJSON_parser.c294 static void json_create_zval(zval **z, smart_str *buf, int type) in json_create_zval()
338 static void utf16_to_utf8(smart_str *buf, unsigned short utf16) in utf16_to_utf8()
376 static void attach_zval(JSON_parser jp, int up, int cur, smart_str *key, int assoc TSRMLS_DC) in attach_zval()
430 smart_str buf = {0}; in parse_JSON()
431 smart_str key = {0}; in parse_JSON()
/PHP-5.3/ext/wddx/
H A Dphp_wddx_api.h55 typedef smart_str wddx_packet;
H A Dwddx.c253 smart_str *str = (smart_str *)rsrc->ptr; in release_wddx_packet_rsrc()
1221 smart_str *packet; in php_wddx_constructor()
1223 packet = (smart_str *)emalloc(sizeof(smart_str)); in php_wddx_constructor()
/PHP-5.3/ext/libxml/
H A Dphp_libxml.h44 smart_str error_buffer;
/PHP-5.3/ext/iconv/
H A Diconv.c200 static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd);
201 static php_iconv_err_t _php_iconv_appendc(smart_str *d, const char c, iconv_t cd);
207 static php_iconv_err_t _php_iconv_substr(smart_str *pretval, const char *str, size_t nbytes, int of…
213 static php_iconv_err_t _php_iconv_mime_decode(smart_str *pretval, const char *str, size_t str_nbyte…
316 static php_iconv_err_t _php_iconv_appendl(smart_str *d, const char *s, size_t l, iconv_t cd) in _php_iconv_appendl()
397 static php_iconv_err_t _php_iconv_appendc(smart_str *d, const char c, iconv_t cd) in _php_iconv_appendc()
657 static php_iconv_err_t _php_iconv_substr(smart_str *pretval, in _php_iconv_substr()
1933 smart_str retval = {0}; in PHP_FUNCTION()
2061 smart_str retval = {0}; in PHP_FUNCTION()
2181 smart_str retval = {0}; in PHP_FUNCTION()
[all …]
/PHP-5.3/ext/curl/
H A Dphp_curl.h86 smart_str buf;
/PHP-5.3/ext/intl/locale/
H A Dlocale_methods.c761 static int append_key_value(smart_str* loc_name, HashTable* hash_arr, char* key_name) in append_key_value()
786 static void add_prefix(smart_str* loc_name, char* key_name) in add_prefix()
802 static int append_multiple_key_values(smart_str* loc_name, HashTable* hash_arr, char* key_name TSRM… in append_multiple_key_values()
879 static int handleAppendResult( int result, smart_str* loc_name TSRMLS_DC) in handleAppendResult()
901 smart_str loc_name_s = {0}; in PHP_FUNCTION()
902 smart_str *loc_name = &loc_name_s; in PHP_FUNCTION()
/PHP-5.3/sapi/thttpd/
H A Dthttpd.c48 smart_str sbuf;
157 # define VEC_BASE() smart_str vec_str = {0}
437 smart_str s = {0};
/PHP-5.3/main/
H A Dspprintf.c198 static void xbuf_format_converter(smart_str *xbuf, const char *fmt, va_list ap) /* {{{ */ in xbuf_format_converter()
797 smart_str xbuf = {0}; in vspprintf()

Completed in 90 milliseconds

123