regexp_list_it     78 ext/opcache/zend_accelerator_blacklist.c 	zend_regexp_list **regexp_list_it, *it;
regexp_list_it     86 ext/opcache/zend_accelerator_blacklist.c 	regexp_list_it = &(blacklist->regexp_list);
regexp_list_it    185 ext/opcache/zend_accelerator_blacklist.c 			*regexp_list_it = it;
regexp_list_it    186 ext/opcache/zend_accelerator_blacklist.c 			regexp_list_it = &it->next;
regexp_list_it    338 ext/opcache/zend_accelerator_blacklist.c 	zend_regexp_list *regexp_list_it = blacklist->regexp_list;
regexp_list_it    340 ext/opcache/zend_accelerator_blacklist.c 	if (regexp_list_it == NULL) {
regexp_list_it    343 ext/opcache/zend_accelerator_blacklist.c 	while (regexp_list_it != NULL) {
regexp_list_it    344 ext/opcache/zend_accelerator_blacklist.c 		if (pcre_exec(regexp_list_it->re, NULL, verify_path, strlen(verify_path), 0, 0, NULL, 0) >= 0) {
regexp_list_it    348 ext/opcache/zend_accelerator_blacklist.c 		regexp_list_it = regexp_list_it->next;