Lines Matching refs:dep
981 const zend_module_dep* dep = module->deps; in _extension_string() local
985 while(dep->name) { in _extension_string()
986 smart_str_append_printf(str, "%s Dependency [ %s (", indent, dep->name); in _extension_string()
988 switch(dep->type) { in _extension_string()
1003 if (dep->rel) { in _extension_string()
1004 smart_str_append_printf(str, " %s", dep->rel); in _extension_string()
1006 if (dep->version) { in _extension_string()
1007 smart_str_append_printf(str, " %s", dep->version); in _extension_string()
1010 dep++; in _extension_string()
5895 const zend_module_dep *dep; in ZEND_METHOD() local
5902 dep = module->deps; in ZEND_METHOD()
5904 if (!dep) in ZEND_METHOD()
5910 while(dep->name) { in ZEND_METHOD()
5915 switch(dep->type) { in ZEND_METHOD()
5934 if (dep->rel) { in ZEND_METHOD()
5935 len += strlen(dep->rel) + 1; in ZEND_METHOD()
5938 if (dep->version) { in ZEND_METHOD()
5939 len += strlen(dep->version) + 1; in ZEND_METHOD()
5945 dep->rel ? " " : "", in ZEND_METHOD()
5946 dep->rel ? dep->rel : "", in ZEND_METHOD()
5947 dep->version ? " " : "", in ZEND_METHOD()
5948 dep->version ? dep->version : ""); in ZEND_METHOD()
5949 add_assoc_str(return_value, dep->name, relation); in ZEND_METHOD()
5950 dep++; in ZEND_METHOD()