Searched defs:decode (Results 1 - 6 of 6) sorted by relevance

/PHP_TRUNK/ext/exif/
H A Dexif.c2620 char *decode; local
2634 decode = "UCS-2BE";
2638 decode = "UCS-2LE";
2642 decode = ImageInfo->decode_unicode_be;
2644 decode = ImageInfo->decode_unicode_le;
2652 zend_multibyte_fetch_encoding(decode TSRMLS_CC)
/PHP_TRUNK/ext/imap/
H A Dphp_imap.c2462 char *text, *decode; local
2470 decode = (char *) rfc822_base64((unsigned char *) text, text_len, &newlength);
2472 if (decode == NULL) {
2476 RETVAL_STRINGL(decode, newlength, 1);
2477 fs_give((void**) &decode);
2485 char *text, *decode; local
2493 decode = (char *) rfc822_qprint((unsigned char *) text, text_len, &newlength);
2495 if (decode == NULL) {
2499 RETVAL_STRINGL(decode, newlength, 1);
2500 fs_give((void**) &decode);
2508 char *text, *decode; local
2531 char *text, *decode; local
4217 char *str, *string, *charset, encoding, *text, *decode; local
[all...]
/PHP_TRUNK/ext/session/
H A Dphp_session.h196 int (*decode)(PS_SERIALIZER_DECODE_ARGS); member in struct:ps_serializer_struct
224 int (*decode)(PS_SERIALIZER_DECODE_ARGS));
H A Dsession.c216 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown session.serialize_handler. Failed to decode session object");
219 if (PS(serializer)->decode(val, vallen TSRMLS_CC) == FAILURE) {
221 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to decode session object. Session has been destroyed");
950 PHPAPI int php_session_register_serializer(const char *name, int (*encode)(PS_SERIALIZER_ENCODE_ARGS), int (*decode)(PS_SERIALIZER_DECODE_ARGS)) /* {{{ */ argument
959 ps_serializers[i].decode = decode;
/PHP_TRUNK/ext/standard/
H A Dhttp_fopen_wrapper.c522 /* decode the strings first */
752 /* create filter to decode response body */
754 long decode = 1; local
759 decode = Z_LVAL_PP(tmpzval);
761 if (decode) {
/PHP_TRUNK/ext/mysqlnd/
H A Dmysqlnd_structs.h318 func_mysqlnd_net__decode decode; member in struct:st_mysqlnd_net_methods

Completed in 32 milliseconds