Lines Matching refs:word
413 char *word;
416 word = nsu_strsep(cmdlinep, " \t\r\n");
417 if (word == NULL || *word == 0) {
422 isc_buffer_init(&source, word, strlen(word));
423 isc_buffer_add(&source, strlen(word));
486 char *word;
510 word = nsu_strsep(&cmdline, " \t\r\n");
511 if (word == NULL || *word == 0) {
524 result = isc_parse_uint32(&ttl, word, 10);
530 fprintf(stderr, "ttl '%s': %s\n", word,
540 word, TTL_MAX);
547 word = nsu_strsep(&cmdline, " \t\r\n");
549 if (word == NULL || *word == 0) {
560 region.base = word;
561 region.length = strlen(word);
567 word = nsu_strsep(&cmdline, " \t\r\n");
568 if (word == NULL || *word == 0) {
579 region.base = word;
580 region.length = strlen(word);
584 word, isc_result_totext(result));
592 "%s\n", word, isc_result_totext(result));
643 char *word;
660 word = nsu_strsep(&cmdline, " \t\r\n");
661 if (word == NULL || *word == 0) {
665 region.base = word;
666 region.length = strlen(word);
672 word = nsu_strsep(&cmdline, " \t\r\n");
673 if (word == NULL || *word == 0) {
677 region.base = word;
678 region.length = strlen(word);
681 fprintf(stderr, "invalid type: %s\n", word);
688 fprintf(stderr, "invalid type: %s\n", word);
740 char *word;
743 word = nsu_strsep(&cmdline, " \t\r\n");
744 if (word == NULL || *word == 0) {
748 if (strcasecmp(word, "nxdomain") == 0) {
751 } else if (strcasecmp(word, "yxdomain") == 0) {
754 } else if (strcasecmp(word, "nxrrset") == 0) {
757 } else if (strcasecmp(word, "yxrrset") == 0) {
761 fprintf(stderr, "incorrect operation code: %s\n", word);