Searched refs:tmp_str (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_4/ext/mysqlnd/ |
| H A D | php_mysqlnd.c | 192 smart_str tmp_str = {0, 0, 0}; local 193 mysqlnd_plugin_apply_with_argument(mysqlnd_minfo_dump_loaded_plugins, &tmp_str); 194 smart_str_0(&tmp_str); 195 php_info_print_table_row(2, "Loaded plugins", tmp_str.c); 196 smart_str_free(&tmp_str); 198 mysqlnd_minfo_dump_api_plugins(&tmp_str TSRMLS_CC); 199 smart_str_0(&tmp_str); 200 php_info_print_table_row(2, "API Extensions", tmp_str.c); 201 smart_str_free(&tmp_str);
|
| H A D | mysqlnd_alloc.c | 573 smart_str tmp_str = {0, 0, 0}; local 585 smart_str_appendc(&tmp_str, *p); 588 ret = pemalloc(tmp_str.len + sizeof(size_t), persistent); 589 memcpy(FAKE_PTR(ret), tmp_str.c, tmp_str.len); 592 *(size_t *) ret = tmp_str.len; 595 smart_str_free(&tmp_str);
|
| /PHP_5_4/ext/standard/ |
| H A D | var.c | 358 char *key, *tmp_str; local 361 tmp_str = php_str_to_str_ex(key, key_len, "\0", 1, "' . \"\\0\" . '", 12, &tmp_len, 0, NULL); 366 smart_str_appendl(buf, tmp_str, tmp_len); 370 efree(tmp_str); 419 char *tmp_str, *tmp_str2; local 439 tmp_len = spprintf(&tmp_str, 0,"%.*H", (int) EG(precision), Z_DVAL_PP(struc)); 440 smart_str_appendl(buf, tmp_str, tmp_len); 441 efree(tmp_str); 444 tmp_str = php_addcslashes(Z_STRVAL_PP(struc), Z_STRLEN_PP(struc), &tmp_len, 0, "'\\", 2 TSRMLS_CC); 445 tmp_str2 = php_str_to_str_ex(tmp_str, tmp_le [all...] |
| H A D | string.c | 2299 zval **tmp_str = NULL, **tmp_from = NULL, **tmp_repl = NULL, **tmp_len= NULL; local 2431 while (zend_hash_get_current_data_ex(Z_ARRVAL_PP(str), (void **) &tmp_str, &pos_str) == SUCCESS) { 2437 if(Z_TYPE_PP(tmp_str) != IS_STRING) { 2438 dummy = **tmp_str; 2443 orig_str = *tmp_str; 2572 if(Z_TYPE_PP(tmp_str) != IS_STRING) {
|
Completed in 14 milliseconds