Home
last modified time | relevance | path

Searched refs:tmp_str (Results 1 – 4 of 4) sorted by relevance

/PHP-5.4/ext/mysqlnd/
H A Dphp_mysqlnd.c192 smart_str tmp_str = {0, 0, 0}; in PHP_MINFO_FUNCTION() local
193 mysqlnd_plugin_apply_with_argument(mysqlnd_minfo_dump_loaded_plugins, &tmp_str); in PHP_MINFO_FUNCTION()
194 smart_str_0(&tmp_str); in PHP_MINFO_FUNCTION()
195 php_info_print_table_row(2, "Loaded plugins", tmp_str.c); in PHP_MINFO_FUNCTION()
196 smart_str_free(&tmp_str); in PHP_MINFO_FUNCTION()
198 mysqlnd_minfo_dump_api_plugins(&tmp_str TSRMLS_CC); in PHP_MINFO_FUNCTION()
199 smart_str_0(&tmp_str); in PHP_MINFO_FUNCTION()
200 php_info_print_table_row(2, "API Extensions", tmp_str.c); in PHP_MINFO_FUNCTION()
201 smart_str_free(&tmp_str); in PHP_MINFO_FUNCTION()
H A Dmysqlnd_alloc.c573 smart_str tmp_str = {0, 0, 0}; in _mysqlnd_pestrdup() local
585 smart_str_appendc(&tmp_str, *p); in _mysqlnd_pestrdup()
588 ret = pemalloc(tmp_str.len + sizeof(size_t), persistent); in _mysqlnd_pestrdup()
589 memcpy(FAKE_PTR(ret), tmp_str.c, tmp_str.len); in _mysqlnd_pestrdup()
592 *(size_t *) ret = tmp_str.len; in _mysqlnd_pestrdup()
595 smart_str_free(&tmp_str); in _mysqlnd_pestrdup()
/PHP-5.4/ext/standard/
H A Dvar.c358 char *key, *tmp_str; in php_array_element_export() local
361 tmp_str = php_str_to_str_ex(key, key_len, "\0", 1, "' . \"\\0\" . '", 12, &tmp_len, 0, NULL); in php_array_element_export()
366 smart_str_appendl(buf, tmp_str, tmp_len); in php_array_element_export()
370 efree(tmp_str); in php_array_element_export()
419 char *tmp_str, *tmp_str2; in php_var_export_ex() local
439 tmp_len = spprintf(&tmp_str, 0,"%.*H", PG(serialize_precision), Z_DVAL_PP(struc)); in php_var_export_ex()
440 smart_str_appendl(buf, tmp_str, tmp_len); in php_var_export_ex()
441 efree(tmp_str); in php_var_export_ex()
444tmp_str = php_addcslashes(Z_STRVAL_PP(struc), Z_STRLEN_PP(struc), &tmp_len, 0, "'\\", 2 TSRMLS_CC); in php_var_export_ex()
445 …tmp_str2 = php_str_to_str_ex(tmp_str, tmp_len, "\0", 1, "' . \"\\0\" . '", 12, &tmp_len2, 0, NULL); in php_var_export_ex()
[all …]
H A Dstring.c2312 zval **tmp_str = NULL, **tmp_from = NULL, **tmp_repl = NULL, **tmp_len= NULL; local
2444 while (zend_hash_get_current_data_ex(Z_ARRVAL_PP(str), (void **) &tmp_str, &pos_str) == SUCCESS) {
2450 if(Z_TYPE_PP(tmp_str) != IS_STRING) {
2451 dummy = **tmp_str;
2456 orig_str = *tmp_str;
2585 if(Z_TYPE_PP(tmp_str) != IS_STRING) {

Completed in 52 milliseconds