file_exts         318 ext/spl/php_spl.c 	char *class_name, *lc_name, *file_exts = SPL_G(autoload_extensions);
file_exts         325 ext/spl/php_spl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &class_name, &class_name_len, &file_exts, &file_exts_len) == FAILURE) {
file_exts         329 ext/spl/php_spl.c 	if (file_exts == NULL) { /* autoload_extensions is not initialized, set to defaults */
file_exts         332 ext/spl/php_spl.c 		copy = pos1 = estrndup(file_exts, file_exts_len);
file_exts         373 ext/spl/php_spl.c 	char *file_exts = NULL;
file_exts         376 ext/spl/php_spl.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &file_exts, &file_exts_len) == FAILURE) {
file_exts         379 ext/spl/php_spl.c 	if (file_exts) {
file_exts         383 ext/spl/php_spl.c 		SPL_G(autoload_extensions) = estrndup(file_exts, file_exts_len);