Lines Matching defs:dependency
117 /* size of string for types - big enough to hold "dependency" */
1326 char *dependency;
1346 dependency = malloc(maxlen);
1361 value == NULL || scope == NULL || dependency == NULL)
1367 * we reuse the storage that dependency points to, we need to
1370 (void) snprintf(dependency, maxlen, "%s", fmri + sizeof ("svc:"));
1371 servname = strrchr(dependency, ':');
1375 servname = dependency;
1379 * looking at those that are "dependency" types. The "entity"
1396 * a dependency pg and only do operations on those.
1404 * Have a dependency. Attempt to enable it.
1414 if (scf_value_get_as_string(value, dependency, maxlen) > 0) {
1415 services[0] = dependency;
1421 if (dependency != NULL)
1422 free(dependency);