Searched defs: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; local 364 tmp_str = php_str_to_str_ex(key, key_len, "\0", 1, "' . \"\\0\" . '", 12, &tmp_len, 0, NULL); 369 smart_str_appendl(buf, tmp_str, tmp_len); 373 efree(tmp_str); 424 char *tmp_str, *tmp_str2; local 444 tmp_len = spprintf(&tmp_str, 0,"%.*H", (int) EG(precision), Z_DVAL_PP(struc)); 445 smart_str_appendl(buf, tmp_str, tmp_len); 446 efree(tmp_str); 449 tmp_str = php_addcslashes(Z_STRVAL_PP(struc), Z_STRLEN_PP(struc), &tmp_len, 0, "'\\", 2 TSRMLS_CC); 450 tmp_str2 = php_str_to_str_ex(tmp_str, tmp_le [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}; local 1239 smart_str_appendc(&tmp_str, *p); 1242 ret = pemalloc(tmp_str.len + sizeof(size_t), persistent); 1243 memcpy(FAKE_PTR(ret), tmp_str.c, tmp_str.len); 1246 *(size_t *) ret = tmp_str.len; 1249 smart_str_free(&tmp_str);
|
Completed in 13 milliseconds