Searched defs:tmpstr (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdft.c | 792 char *tmpstr = NULL; local 914 tmpstr = (char *) gdMalloc(BUFSIZ); 915 any2eucjp(tmpstr, string, BUFSIZ); 916 next = tmpstr; 1044 if (tmpstr) { 1045 gdFree(tmpstr); 1094 if (tmpstr) { 1095 gdFree(tmpstr); 1156 if (tmpstr) { 1157 gdFree(tmpstr); [all...] |
| /PHP_TRUNK/ext/mbstring/ |
| H A D | mbstring.c | 669 char *p, *p1, *p2, *endp, *tmpstr; local 684 tmpstr = (char *)estrndup(value+1, value_length-2); 688 tmpstr = (char *)estrndup(value, value_length); 689 if (tmpstr == NULL) { 693 endp = tmpstr + value_length; 695 p1 = tmpstr; 707 p1 = tmpstr; 771 efree(tmpstr); 4212 mbfl_string tmpstr; local 4214 if (mbfl_convert_encoding(&orig_str, &tmpstr, tran_c [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | http_fopen_wrapper.c | 403 smart_str tmpstr = {0}; local 410 smart_str_appendl(&tmpstr, Z_STRVAL_PP(tmpheader), Z_STRLEN_PP(tmpheader)); 411 smart_str_appendl(&tmpstr, "\r\n", sizeof("\r\n") - 1); 414 smart_str_0(&tmpstr); 416 if (tmpstr.c) { 417 tmp = php_trim(tmpstr.c, strlen(tmpstr.c), NULL, 0, NULL, 3 TSRMLS_CC); 418 smart_str_free(&tmpstr);
|
| /PHP_TRUNK/ext/openssl/ |
| H A D | openssl.c | 1719 char * tmpstr; local 1760 tmpstr = (char *)X509_alias_get0(cert, NULL); 1761 if (tmpstr) { 1762 add_assoc_string(return_value, "alias", tmpstr, 1);
|
| /PHP_TRUNK/ext/date/ |
| H A D | php_date.c | 2208 char *tmpstr = emalloc(sizeof("UTC+05:00")); local 2211 snprintf(tmpstr, sizeof("+05:00"), "%c%02d:%02d", 2216 ZVAL_STRING(zv, tmpstr, 0); 2309 char *tmpstr = emalloc(sizeof("UTC+05:00")); local 2311 snprintf(tmpstr, sizeof("+05:00"), "%c%02d:%02d", 2316 ZVAL_STRING(zv, tmpstr, 0); 3800 char *tmpstr = emalloc(sizeof("UTC+05:00")); local 3803 snprintf(tmpstr, sizeof("+05:00"), "%c%02d:%02d", 3808 RETURN_STRING(tmpstr, 0);
|
Completed in 28 milliseconds