Lines Matching defs:file
4 * The contents of this file are subject to the terms of the
6 * You may not use this file except in compliance with the License.
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
42 * The idea is to manage a file (/etc/svc/deathrow) on the alternate root
45 * r.manifest and i.manifest update the file /etc/svc/deathrow in the alternate
48 * When svc.startd daemon launches, it first reads the /etc/svc/deathrow file
49 * and for all FMRIs listed in this file, the service is not configured and
53 * unconfigured services found in the /etc/svc/deathrow file and the
67 /* list of deathrow fmris, created from the file SVC_DEATHROW_FILE */
98 FILE *file;
108 while ((file = fopen(SVC_DEATHROW_FILE, "r")) == NULL) {
115 "Error opening file (%s): %s\n",
134 * A deathrow file line looks like:
142 while (fgets(line, line_size, file) != NULL) {
178 "Deathrow error processing file (%s). "
185 (void) fclose(file);