Lines Matching refs:strval
202 char strval[255+1];
204 char strval[4095+1];
220 while ( (tok = gettok (fp, strval, sizeof strval)) != EOF )
229 if ( gettok (fp, strval, sizeof (strval)) == TOK_STRING )
232 strval, dir);
233 if ( *strval != '/' && *dir )
234 snprintf (path, sizeof (path), "%s/%s", dir, strval);
236 snprintf (path, sizeof (path), "%s", strval);
251 if ( gettok (fp, strval, sizeof (strval)) == TOK_STRING )
253 if ( *strval != '/' && *dir )
254 snprintf (path, sizeof (path), "%s/%s", dir, strval);
256 snprintf (path, sizeof (path), "%s", strval);
268 if ( gettok (fp, strval, sizeof (strval)) != TOK_STRING )
270 snprintf (view, sizeof view, "%s", strval); /* store the name of the view */
274 if ( gettok (fp, strval, sizeof (strval)) != TOK_STRING )
276 snprintf (zone, sizeof zone, "%s", strval); /* store the name of the zone */
278 if ( gettok (fp, strval, sizeof (strval)) != TOK_MASTER )
280 if ( gettok (fp, strval, sizeof (strval)) != TOK_FILE )
282 if ( gettok (fp, strval, sizeof (strval)) != TOK_STRING )
284 snprintf (zonefile, sizeof zonefile, "%s", strval); /* this is the filename */
290 dbg_val3 ("%-10s(%d): %s\n", tok2str(tok), tok, strval);