Lines Matching refs:dep

1843 		const zend_module_dep *dep = module->deps;  in zend_startup_module_ex()  local
1845 while (dep->name) { in zend_startup_module_ex()
1846 if (dep->type == MODULE_DEP_REQUIRED) { in zend_startup_module_ex()
1849 name_len = strlen(dep->name); in zend_startup_module_ex()
1851 zend_str_tolower_copy(ZSTR_VAL(lcname), dep->name, name_len); in zend_startup_module_ex()
1856 …NG, "Cannot load module '%s' because required module '%s' is not loaded", module->name, dep->name); in zend_startup_module_ex()
1862 ++dep; in zend_startup_module_ex()
1909 const zend_module_dep *dep = m->deps; in zend_sort_modules() local
1910 while (dep->name) { in zend_sort_modules()
1911 if (dep->type == MODULE_DEP_REQUIRED || dep->type == MODULE_DEP_OPTIONAL) { in zend_sort_modules()
1915 if (strcasecmp(dep->name, r->name) == 0) { in zend_sort_modules()
1924 dep++; in zend_sort_modules()
2033 const zend_module_dep *dep = module->deps; in zend_register_module_ex() local
2035 while (dep->name) { in zend_register_module_ex()
2036 if (dep->type == MODULE_DEP_CONFLICTS) { in zend_register_module_ex()
2037 name_len = strlen(dep->name); in zend_register_module_ex()
2039 zend_str_tolower_copy(ZSTR_VAL(lcname), dep->name, name_len); in zend_register_module_ex()
2041 if (zend_hash_exists(&module_registry, lcname) || zend_get_extension(dep->name)) { in zend_register_module_ex()
2044 …nnot load module '%s' because conflicting module '%s' is already loaded", module->name, dep->name); in zend_register_module_ex()
2049 ++dep; in zend_register_module_ex()