Lines Matching defs:tok
159 char *tok, buf[BUFSIZ];
166 tok = strtok(buf, " \t");
167 if (namematch("service=", tok, service)) {
203 char *tok, buf[BUFSIZ];
217 tok = strtok(buf, " \t");
218 if (namematch("service=", tok, service)) {
219 tok = strtok((char *)0, " \t");
220 if ( namematch("device=", tok, device)) {
302 { char *tok;
305 while ((tok = strtok((char *) NULL, " \t")) != NULL) {
306 *tokptr++ = tok;
367 { char **tptr, *tok;
376 for (tok = strtok(line, ":"); tok != NULL;
377 tok = strtok((char *) NULL, ":")) {
379 if ( *tok != '/' )
382 strcat(expandpath, tok);
401 { char **tptr, *tok;
408 for (tok = strtok(line, ":"); tok != NULL;
409 tok = strtok((char *) NULL, ":")) {
410 *tptr = strsave(tok);
747 char *tok;
753 tok = strtok(buf, " \t");
754 if ( (tok != NULL) && (*tok != '#') ) {
760 if (strncmp("Protocol=", tok, strlen("Protocol=")) == SAME) {
761 tok += strlen("Protocol=");
762 if ( *tok != '\0' ) {
764 DEBUG(7, "Protocol string %s ", tok);
767 strcpy(_ProtoCfg, tok);
770 DEBUG(7, "Unknown configuration parameter %s\n", tok);