Lines Matching refs:dep

1825 		const zend_module_dep *dep = module->deps;  in zend_startup_module_ex()  local
1827 while (dep->name) { in zend_startup_module_ex()
1828 if (dep->type == MODULE_DEP_REQUIRED) { in zend_startup_module_ex()
1831 name_len = strlen(dep->name); in zend_startup_module_ex()
1833 zend_str_tolower_copy(ZSTR_VAL(lcname), dep->name, name_len); in zend_startup_module_ex()
1838 …NG, "Cannot load module '%s' because required module '%s' is not loaded", module->name, dep->name); in zend_startup_module_ex()
1844 ++dep; in zend_startup_module_ex()
1891 const zend_module_dep *dep = m->deps; in zend_sort_modules() local
1892 while (dep->name) { in zend_sort_modules()
1893 if (dep->type == MODULE_DEP_REQUIRED || dep->type == MODULE_DEP_OPTIONAL) { in zend_sort_modules()
1897 if (strcasecmp(dep->name, r->name) == 0) { in zend_sort_modules()
1906 dep++; in zend_sort_modules()
2015 const zend_module_dep *dep = module->deps; in zend_register_module_ex() local
2017 while (dep->name) { in zend_register_module_ex()
2018 if (dep->type == MODULE_DEP_CONFLICTS) { in zend_register_module_ex()
2019 name_len = strlen(dep->name); in zend_register_module_ex()
2021 zend_str_tolower_copy(ZSTR_VAL(lcname), dep->name, name_len); in zend_register_module_ex()
2023 if (zend_hash_exists(&module_registry, lcname) || zend_get_extension(dep->name)) { in zend_register_module_ex()
2026 …nnot load module '%s' because conflicting module '%s' is already loaded", module->name, dep->name); in zend_register_module_ex()
2031 ++dep; in zend_register_module_ex()