Lines Matching refs:decode

2550 	char *decode;  in PHP_FUNCTION()  local
2557 decode = (char *) rfc822_base64((unsigned char *) ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
2559 if (decode == NULL) { in PHP_FUNCTION()
2563 RETVAL_STRINGL(decode, newlength); in PHP_FUNCTION()
2564 fs_give((void**) &decode); in PHP_FUNCTION()
2573 char *decode; in PHP_FUNCTION() local
2580 decode = (char *) rfc822_qprint((unsigned char *) ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
2582 if (decode == NULL) { in PHP_FUNCTION()
2586 RETVAL_STRINGL(decode, newlength); in PHP_FUNCTION()
2587 fs_give((void**) &decode); in PHP_FUNCTION()
2596 char *decode; in PHP_FUNCTION() local
2603 decode = (char *) rfc822_8bit((unsigned char *) ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
2605 if (decode == NULL) { in PHP_FUNCTION()
2609 RETVAL_STRINGL(decode, newlength); in PHP_FUNCTION()
2610 fs_give((void**) &decode); in PHP_FUNCTION()
2619 char *decode; in PHP_FUNCTION() local
2626 decode = (char*)rfc822_binary(ZSTR_VAL(text), ZSTR_LEN(text), &newlength); in PHP_FUNCTION()
2628 if (decode == NULL) { in PHP_FUNCTION()
2632 RETVAL_STRINGL(decode, newlength); in PHP_FUNCTION()
2633 fs_give((void**) &decode); in PHP_FUNCTION()
4376 char *string, *charset, encoding, *text, *decode; in PHP_FUNCTION() local
4412 decode = text; in PHP_FUNCTION()
4415 decode = (char *)rfc822_qprint((unsigned char *) text, strlen(text), &newlength); in PHP_FUNCTION()
4417decode = (char *)rfc822_base64((unsigned char *) text, strlen(text), &newlength); /* Decode 'B' en… in PHP_FUNCTION()
4419 if (decode == NULL) { in PHP_FUNCTION()
4426 add_property_string(&myobject, "text", decode); in PHP_FUNCTION()
4430 if (decode != text) { in PHP_FUNCTION()
4431 fs_give((void**)&decode); in PHP_FUNCTION()