file_exts         312 ext/spl/php_spl.c 	zend_string *class_name, *lc_name, *file_exts = SPL_G(autoload_extensions);
file_exts         314 ext/spl/php_spl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "S|S", &class_name, &file_exts) == FAILURE) {
file_exts         318 ext/spl/php_spl.c 	if (file_exts == NULL) { /* autoload_extensions is not initialized, set to defaults */
file_exts         322 ext/spl/php_spl.c 		pos = ZSTR_VAL(file_exts);
file_exts         323 ext/spl/php_spl.c 		pos_len = (int)ZSTR_LEN(file_exts);
file_exts         368 ext/spl/php_spl.c 	zend_string *file_exts = NULL;
file_exts         370 ext/spl/php_spl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|S", &file_exts) == FAILURE) {
file_exts         373 ext/spl/php_spl.c 	if (file_exts) {
file_exts         377 ext/spl/php_spl.c 		SPL_G(autoload_extensions) = zend_string_copy(file_exts);