Home
last modified time | relevance | path

Searched refs:charset_token (Results 1 – 1 of 1) sorted by relevance

/PHP-8.1/ext/imap/
H A Dphp_imap.c3859 zend_long charset_token, encoding_token, end_token, end, offset=0, i; in PHP_FUNCTION() local
3875 charset_token -= (zend_long)string; in PHP_FUNCTION()
3876 if (offset != charset_token) { /* Is there anything before the encoded data? */ in PHP_FUNCTION()
3878 memcpy(text, &string[offset], charset_token-offset); in PHP_FUNCTION()
3879 text[charset_token - offset] = 0x00; in PHP_FUNCTION()
3885 …if ((encoding_token = (zend_long)php_memnstr(&string[charset_token+2], "?", 1, string+end))) { /*… in PHP_FUNCTION()
3889 …memcpy(charset, &string[charset_token + 2], encoding_token - (charset_token + 2)); /* Extract char… in PHP_FUNCTION()
3890 charset[encoding_token-(charset_token + 2)] = 0x00; in PHP_FUNCTION()
3929 charset_token = offset; in PHP_FUNCTION()
3933 …memcpy(text, &string[charset_token], end - charset_token); /* Extract unencoded text from string */ in PHP_FUNCTION()
[all …]

Completed in 15 milliseconds