Lines Matching defs:dep
1333 struct device_entry *dep;
1389 ndevs * sizeof (*dep) + nsvcs * ndevs * sizeof (*sepp));
1397 osp->os_devices = dep = (struct device_entry *)(osp+1);
1404 sepp = (struct service_entry **)(dep + ndevs);
1406 dep->de_name = *dnp;
1407 dep->de_services = (const struct service_entry **)sepp;
1438 dep->de_nservices = (const struct service_entry **)sepp -
1439 dep->de_services;
1441 if (dep->de_nservices > 0)
1442 dep++;
1445 osp->os_ndevices = dep - osp->os_devices;
1891 const struct device_entry *dep, *depe;
1906 dep = cur_options->os_devices;
1907 depe = dep + cur_options->os_ndevices;
1913 for (; dep < depe; dep++)
1914 if (strncmp(iname, dep->de_name, tlen) == 0 &&
1915 dep->de_name[tlen] == '\0')
1917 else if (dep->de_name[0] == '*' && dep->de_name[1] == '\0')
1918 wdep = dep;
1919 if (dep >= depe)
1920 dep = wdep;
1926 if (dep == NULL || dep->de_services == NULL || dep->de_nservices <= 0)
1936 sepp = dep->de_services;
1951 if (sepp != dep->de_services) {
1958 seppe = sepp + dep->de_nservices;
2275 const struct device_entry *dep;
2294 dep = cur_options->os_devices;
2295 for (i = 0; i < cur_options->os_ndevices; i++, dep++) {
2297 dep->de_name, dep->de_nservices);
2298 sepp = dep->de_services;
2299 for (j = 0; j < dep->de_nservices; j++, sepp++) {