Searched defs:cfgfile (Results 1 - 7 of 7) sorted by relevance
/illumos-gate/usr/src/cmd/nscd/ |
H A D | nscd_init.c | 57 char *cfgfile) 159 if (cfgfile == NULL) { 160 cfgfile = "/etc/nscd.conf"; 161 if (access(cfgfile, R_OK) != 0) { 168 rc = _nscd_cfg_read_file(cfgfile, &err); 172 cfgfile, rc, NSCD_ERR2MSG(err)); 178 cfgfile, rc); 186 if (cfgfile != NULL) { 187 cfgfile_save = strdup(cfgfile); 199 char *cfgfile; local 56 _nscd_init( char *cfgfile) argument [all...] |
H A D | server.c | 61 static char *cfgfile = NULL; variable 199 if ((cfgfile = strdup(optarg)) == NULL) 233 if ((rc = _nscd_init(cfgfile)) != NSCD_SUCCESS) {
|
/illumos-gate/usr/src/lib/mpss/common/ |
H A D | mpss.c | 304 char *cfgfile, *errfile; local 363 if (cfgfile = getenv(ENV_MPSSCFGFILE)) { 364 fp = fopen(cfgfile, "rF"); 368 mpssident, cfgfile, strerror(errno)); 371 cfgfile = DEF_MPSSCFGFILE; 372 fp = fopen(cfgfile, "rF"); 396 "line too long - cfgfile:" 398 mpssident, cfgfile, lineno); 407 "%s: no delimiters specified - cfgfile:" 409 mpssident, cfgfile, linen [all...] |
/illumos-gate/usr/src/lib/madv/common/ |
H A D | madv.c | 305 advice_opts(char *optstr, const char *execname, char *cfgfile, int lineno) argument 316 " for %s - cfgfile: %s, line: %d\n"), 317 madvident, value, execname, cfgfile, lineno); 322 " for %s - cfgfile: %s, line: %d\n"), 323 madvident, execname, cfgfile, lineno); 330 " for %s - cfgfile: %s, line: %d\n"), 331 madvident, value, execname, cfgfile, lineno); 344 "(%s) for %s - cfgfile: %s, line: %d\n"), 345 madvident, value, execname, cfgfile, 355 "(%s) for %s - cfgfile 439 char *cfgfile, *errfile; local [all...] |
/illumos-gate/usr/src/lib/libdscfg/common/ |
H A D | cfg_impl.h | 76 * cfgfile-mapped->| | 207 typedef struct cfgfile { struct
|
/illumos-gate/usr/src/cmd/krb5/kwarn/ |
H A D | kwarnd_proc.c | 273 FILE *cfgfile; local 276 if ((cfgfile = fopen(CONF_FILENAME, "r")) == NULL) { 286 while ((fgets(buffer, BUFSIZ, cfgfile) != NULL) && 289 fclose(cfgfile);
|
/illumos-gate/usr/src/cmd/rcm_daemon/common/ |
H A D | ip_rcm.c | 2307 char cfgfile[MAXPATHLEN]; local 2324 (void) snprintf(cfgfile, MAXPATHLEN, CFGFILE_FMT_IPV4, ifinst); 2325 rcm_log_message(RCM_TRACE1, "IP: Scanning %s\n", cfgfile); 2326 if ((hostfp = fopen(cfgfile, "r")) != NULL) { 2327 if (isgrouped(cfgfile)) 2331 (void) snprintf(cfgfile, MAXPATHLEN, CFGFILE_FMT_IPV6, ifinst); 2332 rcm_log_message(RCM_TRACE1, "IP: Scanning %s\n", cfgfile); 2333 if ((host6fp = fopen(cfgfile, "r")) != NULL) { 2334 if (!ipmp && isgrouped(cfgfile)) 2441 isgrouped(const char *cfgfile) argument 2753 char cfgfile[MAXPATHLEN]; local [all...] |
Completed in 57 milliseconds