Searched refs:decode (Results 1 - 8 of 8) sorted by relevance
| /PHP_TRUNK/ext/soap/interop/ |
| H A D | test.utility.php | 128 $v = $response->decode($return);
|
| /PHP_TRUNK/ext/exif/ |
| H A D | exif.c | 2620 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 D | php_imap.c | 2462 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 D | php_session.h | 196 int (*decode)(PS_SERIALIZER_DECODE_ARGS); member in struct:ps_serializer_struct 224 int (*decode)(PS_SERIALIZER_DECODE_ARGS));
|
| H A D | session.c | 216 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/mysqlnd/ |
| H A D | mysqlnd_net.c | 392 int error = net->data->m.decode(decompressed_data, decompressed_size, 548 retval = net->data->m.decode(net->uncompressed_data->data, decompressed_size, compressed_data, net_payload_size TSRMLS_CC); 570 /* {{{ mysqlnd_net::decode */ 572 MYSQLND_METHOD(mysqlnd_net, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_len, 578 DBG_ENTER("mysqlnd_net::decode"); 587 DBG_ENTER("mysqlnd_net::decode"); 1103 MYSQLND_METHOD(mysqlnd_net, decode),
|
| H A D | mysqlnd_structs.h | 318 func_mysqlnd_net__decode decode; member in struct:st_mysqlnd_net_methods
|
| /PHP_TRUNK/ext/standard/ |
| H A D | http_fopen_wrapper.c | 522 /* 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) {
|
Completed in 29 milliseconds