Home
last modified time | relevance | path

Searched refs:decode (Results 1 – 25 of 49) sorted by last modified time

12

/PHP-7.4/ext/imap/
H A Dphp_imap.c2550 char *decode; in PHP_FUNCTION() local
2559 if (decode == NULL) { in PHP_FUNCTION()
2573 char *decode; in PHP_FUNCTION() local
2582 if (decode == NULL) { in PHP_FUNCTION()
2596 char *decode; in PHP_FUNCTION() local
2605 if (decode == NULL) { in PHP_FUNCTION()
2619 char *decode; in PHP_FUNCTION() local
2628 if (decode == NULL) { in PHP_FUNCTION()
4412 decode = text; in PHP_FUNCTION()
4419 if (decode == NULL) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/session/
H A Dsession.c251 if (PS(serializer)->decode(ZSTR_VAL(data), ZSTR_LEN(data)) == FAILURE) { in php_session_decode()
1035 …nst char *name, zend_string *(*encode)(PS_SERIALIZER_ENCODE_ARGS), int (*decode)(PS_SERIALIZER_DEC… in php_session_register_serializer()
1044 ps_serializers[i].decode = decode; in php_session_register_serializer()
H A Dphp_session.h228 int (*decode)(PS_SERIALIZER_DECODE_ARGS); member
263 int (*decode)(PS_SERIALIZER_DECODE_ARGS));
/PHP-7.4/ext/standard/
H A Dhttp_fopen_wrapper.c803 zend_long decode = 1; in php_stream_url_wrap_http_ex() local
806 decode = zend_is_true(tmpzval); in php_stream_url_wrap_http_ex()
808 if (decode) { in php_stream_url_wrap_http_ex()
/PHP-7.4/
H A Dphp.ini-development1698 ; Tell the jpeg decode to ignore warnings and try to create
1708 ; is used. For the decode settings you can distinguish between motorola and
1709 ; intel byte order. A decode setting cannot be empty.
1713 ; http://php.net/exif.decode-unicode-motorola
1716 ; http://php.net/exif.decode-unicode-intel
1722 ; http://php.net/exif.decode-jis-motorola
1725 ; http://php.net/exif.decode-jis-intel
H A Dphp.ini-production1698 ; Tell the jpeg decode to ignore warnings and try to create
1708 ; is used. For the decode settings you can distinguish between motorola and
1709 ; intel byte order. A decode setting cannot be empty.
1713 ; http://php.net/exif.decode-unicode-motorola
1716 ; http://php.net/exif.decode-unicode-intel
1722 ; http://php.net/exif.decode-jis-motorola
1725 ; http://php.net/exif.decode-jis-intel
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_protocol_frame_codec.c83 int error = pfc->data->m.decode(decompressed_data, decompressed_size, in write_compressed_packet()
242 …retval = pfc->data->m.decode(pfc->data->uncompressed_data->data, decompressed_size, compressed_dat… in MYSQLND_METHOD()
266 MYSQLND_METHOD(mysqlnd_pfc, decode)(zend_uchar * uncompressed_data, const size_t uncompressed_data_… in MYSQLND_METHOD() argument
484 MYSQLND_METHOD(mysqlnd_pfc, decode),
H A Dmysqlnd_structs.h1136 func_mysqlnd_pfc__decode decode; in MYSQLND_CLASS_METHODS_TYPE() local
/PHP-7.4/ext/exif/
H A Dexif.c3049 char *decode; in exif_process_user_comment() local
3064 decode = "UCS-2BE"; in exif_process_user_comment()
3068 decode = "UCS-2LE"; in exif_process_user_comment()
3072 decode = ImageInfo->decode_unicode_be; in exif_process_user_comment()
3074 decode = ImageInfo->decode_unicode_le; in exif_process_user_comment()
3077 from = zend_multibyte_fetch_encoding(decode); in exif_process_user_comment()
/PHP-7.4/ext/standard/tests/filters/
H A Dbug74267.phpt6 stream_filter_append($stream, 'convert.quoted-printable-decode', STREAM_FILTER_WRITE, ['line-break-…
23 Warning: fwrite(): stream filter (convert.quoted-printable-decode): invalid byte sequence in %s on …
25 Warning: fwrite(): stream filter (convert.quoted-printable-decode): invalid byte sequence in %s on …
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_utils.c787 char *decode = NULL; in phpdbg_short_zval_print() local
791 decode = estrdup(""); in phpdbg_short_zval_print()
794 decode = estrdup("null"); in phpdbg_short_zval_print()
797 decode = estrdup("false"); in phpdbg_short_zval_print()
800 decode = estrdup("true"); in phpdbg_short_zval_print()
810 size_t len = strlen(decode); in phpdbg_short_zval_print()
812 memcpy(decode2, decode, len); in phpdbg_short_zval_print()
816 efree(decode); in phpdbg_short_zval_print()
817 decode = decode2; in phpdbg_short_zval_print()
853 decode = estrdup("<ast>"); in phpdbg_short_zval_print()
[all …]
H A Dphpdbg_opcode.c63 return decode; in phpdbg_decode_op()
129 decode[0] ? decode[0] : opcode_name, in phpdbg_decode_opline()
130 decode[1] ? decode[1] : "", in phpdbg_decode_opline()
131 decode[2] ? decode[2] : "", in phpdbg_decode_opline()
132 decode[3] ? decode[3] : ""); in phpdbg_decode_opline()
134 if (decode[0]) in phpdbg_decode_opline()
136 if (decode[1]) in phpdbg_decode_opline()
138 if (decode[2]) in phpdbg_decode_opline()
140 if (decode[3]) in phpdbg_decode_opline()
162 decode, in phpdbg_print_opline_ex()
[all …]
H A Dphpdbg_print.c84 char *decode = phpdbg_decode_opline(op_array, opline); in phpdbg_print_function_helper() local
88 decode); in phpdbg_print_function_helper()
89 efree(decode); in phpdbg_print_function_helper()
/PHP-7.4/ext/standard/tests/strings/
H A Dstr_rot13_basic.phpt32 $decode = str_rot13($encode);
33 if (strcmp($str, $decode) == 0) {
H A Dconvert_uudecode_basic.phpt20 "Here is a simple string to test convert_uuencode/decode",
37 $decode = convert_uudecode($encode);
39 if ($decode != $string) {
40 var_dump($encode, $decode, $string);
H A Dconvert_uuencode_basic.phpt20 "Here is a simple string to test convert_uuencode/decode",
H A Dhtmlspecialchars_basic.phpt45 echo "\nTry with double decode FALSE\n";
53 echo "\nTry with double decode TRUE\n";
89 Try with double decode FALSE
94 Try with double decode TRUE
H A Dhtml_entity_decode2.phpt6 echo "*** HTML 4.01 implicit (shouldn't decode) ***\n";
9 echo "*** HTML 4.01 (shouldn't decode) ***\n";
23 *** HTML 4.01 implicit (shouldn't decode) ***
25 *** HTML 4.01 (shouldn't decode) ***
H A Dhtml_entity_decode3.phpt2 html_entity_decode: Do not decode numerical entities that refer to non-SGML or otherwise disallowed…
/PHP-7.4/ext/standard/tests/file/
H A Dstream_rfc2397_006.phpt30 …base64,#Zm9vYmFyIGZvb2Jhcg==): failed to open stream: rfc2397: unable to decode in %sstream_rfc239…
33 …:;base64,#Zm9vYmFyIGZvb2Jhc=): failed to open stream: rfc2397: unable to decode in %sstream_rfc239…
/PHP-7.4/ext/session/tests/
H A Dsession_decode_variation3.phpt51 Warning: session_decode(): Session is not active. You cannot decode session data in %s on line %d
/PHP-7.4/ext/mbstring/tests/
H A Dhtmlent.phpt25 // Using UTF-8 internally allows to encode/decode ALL characters.
/PHP-7.4/ext/zlib/tests/
H A Dzlib_filter_inflate.phpt2 zlib.inflate (with convert.base64-decode)
10 stream_filter_append($fp, 'convert.base64-decode', STREAM_FILTER_WRITE);
/PHP-7.4/ext/xmlrpc/tests/
H A D007.phpt2 xmlrpc_decode() Simple test decode type int
H A D006.phpt2 xmlrpc_decode() Simple test decode type string

Completed in 73 milliseconds

12