Searched refs:tmp_str (Results 1 – 3 of 3) sorted by relevance
/PHP-5.3/ext/standard/ |
H A D | var.c | 361 char *key, *tmp_str; in php_array_element_export() local 364 tmp_str = php_str_to_str_ex(key, key_len, "\0", 1, "' . \"\\0\" . '", 12, &tmp_len, 0, NULL); in php_array_element_export() 369 smart_str_appendl(buf, tmp_str, tmp_len); in php_array_element_export() 373 efree(tmp_str); in php_array_element_export() 424 char *tmp_str, *tmp_str2; in php_var_export_ex() local 444 tmp_len = spprintf(&tmp_str, 0,"%.*H", (int) EG(precision), Z_DVAL_PP(struc)); in php_var_export_ex() 445 smart_str_appendl(buf, tmp_str, tmp_len); in php_var_export_ex() 446 efree(tmp_str); in php_var_export_ex() 449 …tmp_str = php_addcslashes(Z_STRVAL_PP(struc), Z_STRLEN_PP(struc), &tmp_len, 0, "'\\", 2 TSRMLS_CC); in php_var_export_ex() 450 …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 D | string.c | 2226 zval **tmp_str = NULL, **tmp_from = NULL, **tmp_repl = NULL, **tmp_len= NULL; local 2358 while (zend_hash_get_current_data_ex(Z_ARRVAL_PP(str), (void **) &tmp_str, &pos_str) == SUCCESS) { 2361 if(Z_TYPE_PP(tmp_str) != IS_STRING) { 2362 dummy = **tmp_str; 2367 orig_str = *tmp_str; 2485 if(Z_TYPE_PP(tmp_str) != IS_STRING) {
|
/PHP-5.3/ext/mysqlnd/ |
H A D | mysqlnd_debug.c | 1232 smart_str tmp_str = {0, 0, 0}; in _mysqlnd_pestrdup() local 1239 smart_str_appendc(&tmp_str, *p); in _mysqlnd_pestrdup() 1242 ret = pemalloc(tmp_str.len + sizeof(size_t), persistent); in _mysqlnd_pestrdup() 1243 memcpy(FAKE_PTR(ret), tmp_str.c, tmp_str.len); in _mysqlnd_pestrdup() 1246 *(size_t *) ret = tmp_str.len; in _mysqlnd_pestrdup() 1249 smart_str_free(&tmp_str); in _mysqlnd_pestrdup()
|
Completed in 45 milliseconds