Home
last modified time | relevance | path

Searched refs:scanner_mode (Results 1 – 8 of 8) sorted by last modified time

/PHP-8.1/ext/standard/
H A Dbasic_functions.c2559 zend_long scanner_mode = ZEND_INI_SCANNER_NORMAL; local
2567 Z_PARAM_LONG(scanner_mode)
2587 if (zend_parse_ini_file(&fh, 0, (int)scanner_mode, ini_parser_cb, return_value) == FAILURE) {
2601 zend_long scanner_mode = ZEND_INI_SCANNER_NORMAL; local
2608 Z_PARAM_LONG(scanner_mode)
2629 if (zend_parse_ini_string(string, 0, (int)scanner_mode, ini_parser_cb, return_value) == FAILURE) {
H A Dbasic_functions_arginfo.h569 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, scanner_mode, IS_LONG, 0, "INI_SCANNER_NORMAL")
575 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, scanner_mode, IS_LONG, 0, "INI_SCANNER_NORMAL")
H A Dbasic_functions.stub.php486 function parse_ini_file(string $filename, bool $process_sections = false, int $scanner_mode = INI_S… argument
492 function parse_ini_string(string $ini_string, bool $process_sections = false, int $scanner_mode = I… argument
/PHP-8.1/Zend/
H A Dzend_globals.h302 int scanner_mode; member
H A Dzend_ini_parser.y215 …zend_parse_ini_file(zend_file_handle *fh, 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()
242 ZEND_API zend_result zend_parse_ini_string(char *str, bool unbuffered_errors, int scanner_mode, zen… in zend_parse_ini_string() argument
251 if (zend_ini_prepare_string_for_scanning(str, scanner_mode) == FAILURE) { in zend_parse_ini_string()
H A Dzend_ini.h185 ZEND_API int zend_parse_ini_file(zend_file_handle *fh, bool unbuffered_errors, int scanner_mode, ze…
186 ZEND_API int zend_parse_ini_string(char *str, bool unbuffered_errors, int scanner_mode, zend_ini_pa…
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()
291 zend_result zend_ini_prepare_string_for_scanning(char *str, int scanner_mode) in zend_ini_prepare_string_for_scanning() argument
295 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) {

Completed in 143 milliseconds