Lines Matching refs:confstr
2383 char *cp, *confstr;
2413 if ((confstr = strtok(cp, " ")) == NULL) {
2420 if ((raopt = ra_str2opt(confstr)) != NULL) {
2421 if (ra_parseopt(confstr, lineno, raopt) != 0) {
2425 } else if ((ravar = ra_str2var(confstr)) != NULL) {
2426 if (ra_parsevar(confstr, ravar) != 0) {
2445 ra_parseopt(char *confstr, int lineno, raopt_t *raopt)
2449 if ((confstr = strtok(NULL, " ")) == NULL) {
2455 if ((oval = ra_str2oval(confstr)) == OPT_INVALID) {
2465 if ((confstr = strtok(NULL, " ")) == NULL) {
2472 if ((d_oval = ra_str2oval(confstr)) == OPT_INVALID) {
2476 myname, RA_CONF_FILE, lineno, confstr);
2502 ra_parsevar(char *confstr, ravar_t *ravar)
2504 confstr = strtok(NULL, "=");
2505 if (confstr == NULL) {
2514 if ((ravar->var_value = strdup(confstr)) == NULL) {