Searched refs:tmp_str (Results 1 - 8 of 8) sorted by relevance
| /PHP_5_5/ext/mysqlnd/ |
| H A D | php_mysqlnd.c | 166 smart_str tmp_str = {0, 0, 0}; local 167 mysqlnd_plugin_apply_with_argument(mysqlnd_minfo_dump_loaded_plugins, &tmp_str); 168 smart_str_0(&tmp_str); 169 php_info_print_table_row(2, "Loaded plugins", tmp_str.c); 170 smart_str_free(&tmp_str); 172 mysqlnd_minfo_dump_api_plugins(&tmp_str TSRMLS_CC); 173 smart_str_0(&tmp_str); 174 php_info_print_table_row(2, "API Extensions", tmp_str.c); 175 smart_str_free(&tmp_str);
|
| H A D | mysqlnd_alloc.c | 585 smart_str tmp_str = {0, 0, 0}; local 597 smart_str_appendc(&tmp_str, *p); 600 ret = (persistent) ? __zend_malloc(tmp_str.len + sizeof(size_t)) : _emalloc(REAL_SIZE(tmp_str.len + sizeof(size_t)) ZEND_FILE_LINE_CC ZEND_FILE_LINE_ORIG_RELAY_CC); 601 memcpy(FAKE_PTR(ret), tmp_str.c, tmp_str.len); 604 *(size_t *) ret = tmp_str.len; 607 smart_str_free(&tmp_str);
|
| H A D | mysqlnd.c | 2677 smart_str tmp_str = {0, 0, 0}; local 2678 conn->m->tx_cor_options_to_string(conn, &tmp_str, flags TSRMLS_CC); 2679 smart_str_0(&tmp_str); 2686 commented_name? commented_name:"", tmp_str.c? tmp_str.c:""); 2687 smart_str_free(&tmp_str); 2718 smart_str tmp_str = {0, 0, 0}; local 2720 if (tmp_str.len) { 2721 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1); 2723 smart_str_appendl(&tmp_str, "WIT [all...] |
| H A D | mysqlnd_structs.h | 488 typedef void (*func_mysqlnd_conn_data__tx_cor_options_to_string)(const MYSQLND_CONN_DATA * const conn, smart_str * tmp_str, const unsigned int mode TSRMLS_DC);
|
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_nonapi.c | 1055 smart_str tmp_str = {0, 0, 0}; local 1057 if (tmp_str.len) { 1058 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1); 1060 smart_str_appendl(&tmp_str, "WITH CONSISTENT SNAPSHOT", sizeof("WITH CONSISTENT SNAPSHOT") - 1); 1063 if (tmp_str.len) { 1064 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1); 1066 smart_str_appendl(&tmp_str, "READ WRITE", sizeof("READ WRITE") - 1); 1069 if (tmp_str.len) { 1070 smart_str_appendl(&tmp_str, ", ", sizeof(", ") - 1); 1072 smart_str_appendl(&tmp_str, "REA [all...] |
| H A D | mysqli_api.c | 676 smart_str tmp_str = {0, 0, 0}; local 677 mysqli_tx_cor_options_to_string(conn, &tmp_str, mode); 678 smart_str_0(&tmp_str); 685 commented_name? commented_name:"", tmp_str.c? tmp_str.c:""); 686 smart_str_free(&tmp_str);
|
| /PHP_5_5/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 134 milliseconds