Lines Matching refs:entry

698 	const mbfl_encoding **entry, **list;  in php_mb_parse_encoding_list()  local
732 entry = list; in php_mb_parse_encoding_list()
759 *entry++ = mbfl_no2encoding(*src++); in php_mb_parse_encoding_list()
766 *entry++ = encoding; in php_mb_parse_encoding_list()
817 const mbfl_encoding **list, **entry; in php_mb_parse_encoding_array() local
827 entry = list; in php_mb_parse_encoding_array()
843 *entry++ = mbfl_no2encoding(*src++); in php_mb_parse_encoding_array()
850 *entry++ = encoding; in php_mb_parse_encoding_array()
1359 …if (OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC)… in PHP_INI_MH()
1426 OnUpdateBool(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
1447 new_value = entry->orig_value; in PHP_INI_MH()
1448 new_value_length = entry->orig_value_length; in PHP_INI_MH()
1826 const mbfl_encoding **entry = MBSTRG(http_input_list); in PHP_FUNCTION() local
1831 add_next_index_string(return_value, (*entry)->name, 1); in PHP_FUNCTION()
1832 entry++; in PHP_FUNCTION()
1840 const mbfl_encoding **entry = MBSTRG(http_input_list); in PHP_FUNCTION() local
1847 spprintf(&list, 0, "%s,%s", temp, (*entry)->name); in PHP_FUNCTION()
1853 list = estrdup((*entry)->name); in PHP_FUNCTION()
1855 entry++; in PHP_FUNCTION()
1925 const mbfl_encoding **entry = MBSTRG(current_detect_order_list); in PHP_FUNCTION() local
1928 add_next_index_string(return_value, (*entry)->name, 1); in PHP_FUNCTION()
1929 entry++; in PHP_FUNCTION()
4390 const mbfl_encoding **entry; in PHP_FUNCTION() local
4446 entry = MBSTRG(current_detect_order_list); in PHP_FUNCTION()
4452 add_next_index_string(row2, (*entry)->name, 1); in PHP_FUNCTION()
4453 entry++; in PHP_FUNCTION()
4528 entry = MBSTRG(current_detect_order_list); in PHP_FUNCTION()
4533 add_next_index_string(return_value, (*entry)->name, 1); in PHP_FUNCTION()
4534 entry++; in PHP_FUNCTION()
4620 const mbfl_encoding **entry = 0; in php_mb_populate_current_detect_order_list() local
4629 entry = (const mbfl_encoding **)safe_emalloc(nentries, sizeof(mbfl_encoding*), 0); in php_mb_populate_current_detect_order_list()
4630 memcpy(entry, MBSTRG(detect_order_list), sizeof(mbfl_encoding*) * nentries); in php_mb_populate_current_detect_order_list()
4635 entry = (const mbfl_encoding **)safe_emalloc(nentries, sizeof(mbfl_encoding*), 0); in php_mb_populate_current_detect_order_list()
4637 entry[i] = mbfl_no2encoding(src[i]); in php_mb_populate_current_detect_order_list()
4640 MBSTRG(current_detect_order_list) = entry; in php_mb_populate_current_detect_order_list()