Lines Matching refs:tempstring
3057 char *tmp=NULL, *mystring=NULL, *t=NULL, *tempstring=NULL, *str_copy = NULL; in PHP_FUNCTION() local
3423 tempstring = emalloc(l); in PHP_FUNCTION()
3424 memcpy(tempstring, tmp, l); in PHP_FUNCTION()
3428 tempstring = erealloc(tempstring, l + l2 + CRLF_LEN + 1); in PHP_FUNCTION()
3429 memcpy(tempstring + l, custom_headers_param->value, l2); in PHP_FUNCTION()
3430 memcpy(tempstring + l + l2, CRLF, CRLF_LEN); in PHP_FUNCTION()
3437 memcpy(mystring, tempstring, l); in PHP_FUNCTION()
3441 efree(tempstring); in PHP_FUNCTION()
3478 spprintf(&tempstring, 0, "%s--%s%s%s%s", mystring, cookie, CRLF, tmp, CRLF); in PHP_FUNCTION()
3480 mystring=tempstring; in PHP_FUNCTION()
3484 …spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data ? (char *) bod->contents.text… in PHP_FUNCTION()
3486 mystring=tempstring; in PHP_FUNCTION()
3490 spprintf(&tempstring, 0, "%s--%s--%s", mystring, cookie, CRLF); in PHP_FUNCTION()
3492 mystring=tempstring; in PHP_FUNCTION()
3494 …spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data ? (char *) bod->contents.text… in PHP_FUNCTION()
3496 mystring=tempstring; in PHP_FUNCTION()
3503 RETVAL_STRING(tempstring); in PHP_FUNCTION()
3504 efree(tempstring); in PHP_FUNCTION()