Searched refs:tmpstr (Results 1 – 5 of 5) sorted by relevance
/PHP-5.6/ext/gd/libgd/ |
H A D | gdft.c | 955 next = tmpstr; 1082 if (tmpstr) { 1083 gdFree(tmpstr); 1092 if (tmpstr) { 1093 gdFree(tmpstr); 1140 if (tmpstr) { 1150 if (tmpstr) { 1161 if (tmpstr) { 1162 gdFree(tmpstr); 1210 if (tmpstr) { [all …]
|
/PHP-5.6/ext/standard/ |
H A D | http_fopen_wrapper.c | 435 smart_str tmpstr = {0}; in php_stream_url_wrap_http_ex() local 442 smart_str_appendl(&tmpstr, Z_STRVAL_PP(tmpheader), Z_STRLEN_PP(tmpheader)); in php_stream_url_wrap_http_ex() 443 smart_str_appendl(&tmpstr, "\r\n", sizeof("\r\n") - 1); in php_stream_url_wrap_http_ex() 446 smart_str_0(&tmpstr); in php_stream_url_wrap_http_ex() 448 if (tmpstr.c) { in php_stream_url_wrap_http_ex() 449 tmp = php_trim(tmpstr.c, strlen(tmpstr.c), NULL, 0, NULL, 3 TSRMLS_CC); in php_stream_url_wrap_http_ex() 450 smart_str_free(&tmpstr); in php_stream_url_wrap_http_ex()
|
/PHP-5.6/ext/mbstring/ |
H A D | mbstring.c | 697 char *p, *p1, *p2, *endp, *tmpstr; in php_mb_parse_encoding_list() local 712 tmpstr = (char *)estrndup(value+1, value_length-2); in php_mb_parse_encoding_list() 716 tmpstr = (char *)estrndup(value, value_length); in php_mb_parse_encoding_list() 717 if (tmpstr == NULL) { in php_mb_parse_encoding_list() 721 endp = tmpstr + value_length; in php_mb_parse_encoding_list() 723 p1 = tmpstr; in php_mb_parse_encoding_list() 735 p1 = tmpstr; in php_mb_parse_encoding_list() 799 efree(tmpstr); in php_mb_parse_encoding_list() 4281 mbfl_string tmpstr; in PHP_FUNCTION() local 4284 tmpstr.no_encoding=mbfl_no_encoding_8bit; in PHP_FUNCTION() [all …]
|
/PHP-5.6/ext/date/ |
H A D | php_date.c | 2250 char *tmpstr = emalloc(sizeof("UTC+05:00")); in date_object_get_properties() local 2253 snprintf(tmpstr, sizeof("+05:00"), "%c%02d:%02d", in date_object_get_properties() 2258 ZVAL_STRING(zv, tmpstr, 0); in date_object_get_properties() 2351 char *tmpstr = emalloc(sizeof("UTC+05:00")); in date_object_get_properties_timezone() local 2353 snprintf(tmpstr, sizeof("+05:00"), "%c%02d:%02d", in date_object_get_properties_timezone() 2358 ZVAL_STRING(zv, tmpstr, 0); in date_object_get_properties_timezone() 3825 char *tmpstr = emalloc(sizeof("UTC+05:00")); in PHP_FUNCTION() local 3828 snprintf(tmpstr, sizeof("+05:00"), "%c%02d:%02d", in PHP_FUNCTION() 3833 RETURN_STRING(tmpstr, 0); in PHP_FUNCTION()
|
/PHP-5.6/ext/openssl/ |
H A D | openssl.c | 1965 char * tmpstr; in PHP_FUNCTION() local 2006 tmpstr = (char *)X509_alias_get0(cert, NULL); in PHP_FUNCTION() 2007 if (tmpstr) { in PHP_FUNCTION() 2008 add_assoc_string(return_value, "alias", tmpstr, 1); in PHP_FUNCTION()
|
Completed in 69 milliseconds