Home
last modified time | relevance | path

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

/PHP-8.0/Zend/
H A Dzend_ini_scanner.h31 zend_result zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode);
32 zend_result zend_ini_prepare_string_for_scanning(char *str, int scanner_mode);
H A Dzend_ini_scanner.l145 if (SCNG(scanner_mode) == ZEND_INI_SCANNER_TYPED && \
221 static zend_result init_ini_scanner(int scanner_mode, zend_file_handle *fh) in init_ini_scanner() argument
224 …if (scanner_mode != ZEND_INI_SCANNER_NORMAL && scanner_mode != ZEND_INI_SCANNER_RAW && scanner_mod… in init_ini_scanner()
230 SCNG(scanner_mode) = scanner_mode; in init_ini_scanner()
271 zend_result zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode) in zend_ini_open_file_for_scanning() argument
280 if (init_ini_scanner(scanner_mode, fh) == FAILURE) { in zend_ini_open_file_for_scanning()
292 zend_result zend_ini_prepare_string_for_scanning(char *str, int scanner_mode) in zend_ini_prepare_string_for_scanning() argument
296 if (init_ini_scanner(scanner_mode, NULL) == FAILURE) { in zend_ini_prepare_string_for_scanning()
403 if (SCNG(scanner_mode) == ZEND_INI_SCANNER_RAW) { in ini_lex()
487 if (SCNG(scanner_mode) == ZEND_INI_SCANNER_RAW) {
H A Dzend_ini_parser.y215 …parse_ini_file(zend_file_handle *fh, zend_bool unbuffered_errors, int scanner_mode, zend_ini_parse… in zend_parse_ini_file() argument
224 if (zend_ini_open_file_for_scanning(fh, scanner_mode) == FAILURE) { in zend_parse_ini_file()
243 ZEND_API zend_result zend_parse_ini_string(char *str, zend_bool unbuffered_errors, int scanner_mode in zend_parse_ini_string() argument
252 if (zend_ini_prepare_string_for_scanning(str, scanner_mode) == FAILURE) { in zend_parse_ini_string()
H A Dzend_ini.h183 …parse_ini_file(zend_file_handle *fh, zend_bool unbuffered_errors, int scanner_mode, zend_ini_parse…
184 ZEND_API int zend_parse_ini_string(char *str, zend_bool unbuffered_errors, int scanner_mode, zend_i…
H A Dzend_globals.h271 int scanner_mode; member
/PHP-8.0/ext/standard/
H A Dbasic_functions.c2605 zend_long scanner_mode = ZEND_INI_SCANNER_NORMAL; local
2613 Z_PARAM_LONG(scanner_mode)
2633 if (zend_parse_ini_file(&fh, 0, (int)scanner_mode, ini_parser_cb, return_value) == FAILURE) {
2646 zend_long scanner_mode = ZEND_INI_SCANNER_NORMAL; local
2653 Z_PARAM_LONG(scanner_mode)
2674 if (zend_parse_ini_string(string, 0, (int)scanner_mode, ini_parser_cb, return_value) == FAILURE) {
H A Dbasic_functions.stub.php362 function parse_ini_file(string $filename, bool $process_sections = false, int $scanner_mode = INI_S… argument
364 function parse_ini_string(string $ini_string, bool $process_sections = false, int $scanner_mode = I… argument
H A Dbasic_functions_arginfo.h565 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, scanner_mode, IS_LONG, 0, "INI_SCANNER_NORMAL")
571 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, scanner_mode, IS_LONG, 0, "INI_SCANNER_NORMAL")

Completed in 56 milliseconds