Lines Matching refs:result

236 	ZEND_ARG_INFO(1, result)
926 mbfl_string string, result; in php_mb_zend_encoding_converter() local
955 mbfl_string_init(&result); in php_mb_zend_encoding_converter()
956 if (!mbfl_buffer_converter_result(convd, &result)) { in php_mb_zend_encoding_converter()
961 *to = result.val; in php_mb_zend_encoding_converter()
962 *to_length = result.len; in php_mb_zend_encoding_converter()
1116 char *result = emalloc(len + 2); in php_mb_rfc1867_substring_conf() local
1117 char *resp = result; in php_mb_rfc1867_substring_conf()
1134 return result; in php_mb_rfc1867_substring_conf()
1868 const mbfl_encoding *result = NULL; in PHP_FUNCTION() local
1875 result = MBSTRG(http_input_identify); in PHP_FUNCTION()
1880 result = MBSTRG(http_input_identify_get); in PHP_FUNCTION()
1884 result = MBSTRG(http_input_identify_post); in PHP_FUNCTION()
1888 result = MBSTRG(http_input_identify_cookie); in PHP_FUNCTION()
1892 result = MBSTRG(http_input_identify_string); in PHP_FUNCTION()
1937 result = MBSTRG(http_input_identify); in PHP_FUNCTION()
1943 if (result) { in PHP_FUNCTION()
1944 RETVAL_STRING(result->name); in PHP_FUNCTION()
2216 mbfl_string string, result; in PHP_FUNCTION() local
2300 mbfl_buffer_converter_result(MBSTRG(outconv), &result); in PHP_FUNCTION()
2302 RETVAL_STRINGL((char *)result.val, result.len); /* the string is already strdup()'ed */ in PHP_FUNCTION()
2303 efree(result.val); in PHP_FUNCTION()
2701 mbfl_string haystack, needle, result, *ret = NULL; in PHP_FUNCTION() local
2723 ret = mbfl_substr(&haystack, &result, 0, n); in PHP_FUNCTION()
2732 ret = mbfl_substr(&haystack, &result, n, MBFL_SUBSTR_UNTIL_END); in PHP_FUNCTION()
2752 mbfl_string haystack, needle, result, *ret = NULL; in PHP_FUNCTION() local
2776 ret = mbfl_substr(&haystack, &result, 0, n); in PHP_FUNCTION()
2785 ret = mbfl_substr(&haystack, &result, n, MBFL_SUBSTR_UNTIL_END); in PHP_FUNCTION()
2806 mbfl_string haystack, needle, result, *ret = NULL; in PHP_FUNCTION() local
2830 ret = mbfl_substr(&haystack, &result, 0, n); in PHP_FUNCTION()
2839 ret = mbfl_substr(&haystack, &result, n, MBFL_SUBSTR_UNTIL_END); in PHP_FUNCTION()
2857 mbfl_string haystack, needle, result, *ret = NULL; in PHP_FUNCTION() local
2876 ret = mbfl_substr(&haystack, &result, 0, n); in PHP_FUNCTION()
2885 ret = mbfl_substr(&haystack, &result, n, MBFL_SUBSTR_UNTIL_END); in PHP_FUNCTION()
2939 mbfl_string string, result, *ret; in PHP_FUNCTION() local
2989 ret = mbfl_substr(&string, &result, real_from, real_len); in PHP_FUNCTION()
3007 mbfl_string string, result, *ret; in PHP_FUNCTION() local
3047 ret = mbfl_strcut(&string, &result, from, len); in PHP_FUNCTION()
3093 mbfl_string string, result, marker, *ret; in PHP_FUNCTION() local
3137 ret = mbfl_strimwidth(&string, &marker, &result, from, width); in PHP_FUNCTION()
3167 mbfl_string string, result, *ret; in php_mb_convert_encoding_ex() local
3192 mbfl_string_init(&result); in php_mb_convert_encoding_ex()
3193 ret = mbfl_buffer_converter_feed_result(convd, &string, &result); in php_mb_convert_encoding_ex()
3673 mbfl_string string, result, *ret; in PHP_FUNCTION() local
3714 mbfl_string_init(&result); in PHP_FUNCTION()
3715 ret = mbfl_mime_header_encode(&string, &result, charset, transenc, linefeed, indent); in PHP_FUNCTION()
3730 mbfl_string string, result, *ret; in PHP_FUNCTION() local
3739 mbfl_string_init(&result); in PHP_FUNCTION()
3740 ret = mbfl_mime_header_decode(&string, &result, MBSTRG(current_internal_encoding)); in PHP_FUNCTION()
3756 mbfl_string string, result, *ret; in PHP_FUNCTION() local
3837 ret = mbfl_ja_jp_hantozen(&string, &result, opt); in PHP_FUNCTION()
3896 mbfl_string string, result, *ret; in mb_recursive_convert_variable() local
3905 ret = mbfl_buffer_converter_feed_result(convd, &string, &result); in mb_recursive_convert_variable()
3947 mbfl_string string, result; in PHP_FUNCTION() local
3971 mbfl_string_init(&result); in PHP_FUNCTION()
4080 mbfl_string string, result, *ret; in php_mb_numericentity_exec() local
4124 ret = mbfl_html_numeric_entity(&string, &result, convmap, mapsize, type); in php_mb_numericentity_exec()
4820 mbfl_string string, result, *ret = NULL; in php_mb_check_encoding_impl() local
4825 mbfl_string_init(&result); in php_mb_check_encoding_impl()
4830 ret = mbfl_buffer_converter_feed_result(convd, &string, &result); in php_mb_check_encoding_impl()
4834 …if (illegalchars == 0 && string.len == result.len && memcmp(string.val, result.val, string.len) ==… in php_mb_check_encoding_impl()
4835 mbfl_string_clear(&result); in php_mb_check_encoding_impl()
4838 mbfl_string_clear(&result); in php_mb_check_encoding_impl()