Lines Matching refs:tempstring
3543 char *tmp=NULL, *mystring=NULL, *t=NULL, *tempstring=NULL, *str_copy = NULL; in PHP_FUNCTION() local
3846 tempstring = emalloc(l); in PHP_FUNCTION()
3847 memcpy(tempstring, tmp, l); in PHP_FUNCTION()
3851 tempstring = erealloc(tempstring, l + l2 + CRLF_LEN + 1); in PHP_FUNCTION()
3852 memcpy(tempstring + l, custom_headers_param->value, l2); in PHP_FUNCTION()
3853 memcpy(tempstring + l + l2, CRLF, CRLF_LEN); in PHP_FUNCTION()
3860 memcpy(mystring, tempstring, l); in PHP_FUNCTION()
3864 efree(tempstring); in PHP_FUNCTION()
3901 spprintf(&tempstring, 0, "%s--%s%s%s%s", mystring, cookie, CRLF, tmp, CRLF); in PHP_FUNCTION()
3903 mystring=tempstring; in PHP_FUNCTION()
3907 spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data, CRLF); in PHP_FUNCTION()
3909 mystring=tempstring; in PHP_FUNCTION()
3913 spprintf(&tempstring, 0, "%s--%s--%s", mystring, cookie, CRLF); in PHP_FUNCTION()
3915 mystring=tempstring; in PHP_FUNCTION()
3917 spprintf(&tempstring, 0, "%s%s%s", mystring, bod->contents.text.data, CRLF); in PHP_FUNCTION()
3919 mystring=tempstring; in PHP_FUNCTION()
3926 RETVAL_STRING(tempstring); in PHP_FUNCTION()
3927 efree(tempstring); in PHP_FUNCTION()