Lines Matching refs:decode

2461 	char *text, *decode;  in PHP_FUNCTION()  local
2469 decode = (char *) rfc822_base64((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2471 if (decode == NULL) { in PHP_FUNCTION()
2475 RETVAL_STRINGL(decode, newlength, 1); in PHP_FUNCTION()
2476 fs_give((void**) &decode); in PHP_FUNCTION()
2484 char *text, *decode; in PHP_FUNCTION() local
2492 decode = (char *) rfc822_qprint((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2494 if (decode == NULL) { in PHP_FUNCTION()
2498 RETVAL_STRINGL(decode, newlength, 1); in PHP_FUNCTION()
2499 fs_give((void**) &decode); in PHP_FUNCTION()
2507 char *text, *decode; in PHP_FUNCTION() local
2515 decode = (char *) rfc822_8bit((unsigned char *) text, text_len, &newlength); in PHP_FUNCTION()
2517 if (decode == NULL) { in PHP_FUNCTION()
2521 RETVAL_STRINGL(decode, newlength, 1); in PHP_FUNCTION()
2522 fs_give((void**) &decode); in PHP_FUNCTION()
2530 char *text, *decode; in PHP_FUNCTION() local
2538 decode = rfc822_binary(text, text_len, &newlength); in PHP_FUNCTION()
2540 if (decode == NULL) { in PHP_FUNCTION()
2544 RETVAL_STRINGL(decode, newlength, 1); in PHP_FUNCTION()
2545 fs_give((void**) &decode); in PHP_FUNCTION()
4216 char *str, *string, *charset, encoding, *text, *decode; in PHP_FUNCTION() local
4254 decode = text; in PHP_FUNCTION()
4257 decode = (char *)rfc822_qprint((unsigned char *) text, strlen(text), &newlength); in PHP_FUNCTION()
4259decode = (char *)rfc822_base64((unsigned char *) text, strlen(text), &newlength); /* Decode 'B' en… in PHP_FUNCTION()
4261 if (decode == NULL) { in PHP_FUNCTION()
4269 add_property_string(myobject, "text", decode, 1); in PHP_FUNCTION()
4273 if (decode != text) { in PHP_FUNCTION()
4274 fs_give((void**)&decode); in PHP_FUNCTION()