regexp_list_it     94 ext/opcache/zend_accelerator_blacklist.c 	zend_regexp_list **regexp_list_it, *it;
regexp_list_it    102 ext/opcache/zend_accelerator_blacklist.c 	regexp_list_it = &(blacklist->regexp_list);
regexp_list_it    201 ext/opcache/zend_accelerator_blacklist.c 			*regexp_list_it = it;
regexp_list_it    202 ext/opcache/zend_accelerator_blacklist.c 			regexp_list_it = &it->next;
regexp_list_it    359 ext/opcache/zend_accelerator_blacklist.c 	zend_regexp_list *regexp_list_it = blacklist->regexp_list;
regexp_list_it    361 ext/opcache/zend_accelerator_blacklist.c 	if (regexp_list_it == NULL) {
regexp_list_it    364 ext/opcache/zend_accelerator_blacklist.c 	while (regexp_list_it != NULL) {
regexp_list_it    365 ext/opcache/zend_accelerator_blacklist.c 		if (regexec(&(regexp_list_it->comp_regex), verify_path, 0, NULL, 0) == 0) {
regexp_list_it    369 ext/opcache/zend_accelerator_blacklist.c 		regexp_list_it = regexp_list_it->next;