Searched refs:new_str (Results 1 – 6 of 6) sorted by relevance
/PHP-5.3/ext/standard/ |
H A D | quot_print.c | 262 char *str, *new_str; in PHP_FUNCTION() local 274 new_str = (char *)php_quot_print_encode((unsigned char *)str, (size_t)str_len, &new_str_len); in PHP_FUNCTION() 275 RETURN_STRINGL(new_str, new_str_len, 0); in PHP_FUNCTION()
|
H A D | string.c | 3222 new_str = erealloc(new_str, newlen + 1); 3230 return new_str; 3247 char *new_str; local 3262 target = new_str; 3307 new_str = (char *) erealloc(new_str, *new_length + 1); 3308 return new_str; 3401 char *new_str; local 3434 return new_str; 3527 new_str = erealloc(new_str, *_new_length + 1); 3534 return new_str; [all …]
|
H A D | html.c | 1323 char *str, *new_str, *e, *p; in PHP_FUNCTION() local 1332 new_str = estrndup(str, len); in PHP_FUNCTION() 1334 e = new_str + new_len; in PHP_FUNCTION() 1336 if (!(p = memchr(new_str, '&', new_len))) { in PHP_FUNCTION() 1337 RETURN_STRINGL(new_str, new_len, 0); in PHP_FUNCTION() 1378 new_len = e - new_str; in PHP_FUNCTION() 1380 new_str[new_len] = '\0'; in PHP_FUNCTION() 1381 RETURN_STRINGL(new_str, new_len, 0); in PHP_FUNCTION()
|
/PHP-5.3/ext/mysql/ |
H A D | php_mysql.c | 1826 char *new_str; local 1842 new_str = safe_emalloc(str_len, 2, 1); 1843 new_str_len = mysql_real_escape_string(mysql->conn, new_str, str, str_len); 1844 new_str = erealloc(new_str, new_str_len + 1); 1846 RETURN_STRINGL(new_str, new_str_len, 0);
|
/PHP-5.3/ext/wddx/ |
H A D | wddx.c | 938 unsigned char *new_str; in php_wddx_pop_element() local 940 new_str = php_base64_decode(Z_STRVAL_P(ent1->data), Z_STRLEN_P(ent1->data), &new_len); in php_wddx_pop_element() 942 Z_STRVAL_P(ent1->data) = new_str; in php_wddx_pop_element()
|
/PHP-5.3/ext/mysqli/ |
H A D | mysqli.c | 1230 …char * new_str = php_addslashes(Z_STRVAL_PP(entry_values), Z_STRLEN_PP(entry_values), &new_str_len… in php_mysqli_fetch_into_hash() local 1233 add_index_stringl(return_value, num_key, new_str, new_str_len, 0); in php_mysqli_fetch_into_hash() 1236 add_assoc_stringl_ex(return_value, string_key, string_key_len, new_str, new_str_len, 0); in php_mysqli_fetch_into_hash()
|
Completed in 37 milliseconds