Lines Matching refs:dep
1047 const zend_module_dep* dep = module->deps; in _extension_string() local
1051 while(dep->name) { in _extension_string()
1052 smart_str_append_printf(str, "%s Dependency [ %s (", indent, dep->name); in _extension_string()
1054 switch(dep->type) { in _extension_string()
1069 if (dep->rel) { in _extension_string()
1070 smart_str_append_printf(str, " %s", dep->rel); in _extension_string()
1072 if (dep->version) { in _extension_string()
1073 smart_str_append_printf(str, " %s", dep->version); in _extension_string()
1076 dep++; in _extension_string()
6661 const zend_module_dep *dep; in ZEND_METHOD() local
6666 dep = module->deps; in ZEND_METHOD()
6668 if (!dep) in ZEND_METHOD()
6674 while(dep->name) { in ZEND_METHOD()
6679 switch(dep->type) { in ZEND_METHOD()
6698 if (dep->rel) { in ZEND_METHOD()
6699 len += strlen(dep->rel) + 1; in ZEND_METHOD()
6702 if (dep->version) { in ZEND_METHOD()
6703 len += strlen(dep->version) + 1; in ZEND_METHOD()
6709 dep->rel ? " " : "", in ZEND_METHOD()
6710 dep->rel ? dep->rel : "", in ZEND_METHOD()
6711 dep->version ? " " : "", in ZEND_METHOD()
6712 dep->version ? dep->version : ""); in ZEND_METHOD()
6713 add_assoc_str(return_value, dep->name, relation); in ZEND_METHOD()
6714 dep++; in ZEND_METHOD()