Searched defs:decode (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/exif/ |
| H A D | exif.c | 2644 char *decode; local 2660 decode = "UCS-2BE"; 2664 decode = "UCS-2LE"; 2668 decode = ImageInfo->decode_unicode_be; 2670 decode = ImageInfo->decode_unicode_le; 2672 *pszInfoPtr = php_mb_convert_encoding(szValuePtr, ByteCount, ImageInfo->encode_unicode, decode, &len TSRMLS_CC);
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 2470 char *text, *decode; local 2478 decode = (char *) rfc822_base64((unsigned char *) text, text_len, &newlength); 2480 if (decode == NULL) { 2484 RETVAL_STRINGL(decode, newlength, 1); 2485 fs_give((void**) &decode); 2493 char *text, *decode; local 2501 decode = (char *) rfc822_qprint((unsigned char *) text, text_len, &newlength); 2503 if (decode == NULL) { 2507 RETVAL_STRINGL(decode, newlength, 1); 2508 fs_give((void**) &decode); 2516 char *text, *decode; local 2539 char *text, *decode; local 4225 char *str, *string, *charset, encoding, *text, *decode; local [all...] |
| /PHP_5_3/ext/session/ |
| H A D | php_session.h | 167 int (*decode)(PS_SERIALIZER_DECODE_ARGS); member in struct:ps_serializer_struct 195 int (*decode)(PS_SERIALIZER_DECODE_ARGS));
|
| H A D | session.c | 282 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unknown session.serialize_handler. Failed to decode session object"); 285 if (PS(serializer)->decode(val, vallen TSRMLS_CC) == FAILURE) { 287 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to decode session object. Session has been destroyed"); 1012 PHPAPI int php_session_register_serializer(const char *name, int (*encode)(PS_SERIALIZER_ENCODE_ARGS), int (*decode)(PS_SERIALIZER_DECODE_ARGS)) /* {{{ */ argument 1021 ps_serializers[i].decode = decode;
|
| /PHP_5_3/ext/standard/ |
| H A D | http_fopen_wrapper.c | 521 /* decode the strings first */ 750 /* create filter to decode response body */ 752 long decode = 1; local 757 decode = Z_LVAL_PP(tmpzval); 759 if (decode) {
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_structs.h | 276 func_mysqlnd_net__decode decode; member in struct:st_mysqlnd_net_methods
|
Completed in 29 milliseconds