Lines Matching defs:word

1126 	char *word;
1130 word = nsu_strsep(cmdlinep, " \t\r\n");
1131 if (word == NULL || *word == 0) {
1143 isc_buffer_init(&source, word, strlen(word));
1144 isc_buffer_add(&source, strlen(word));
1210 char *word;
1233 word = nsu_strsep(&cmdline, " \t\r\n");
1234 if (word == NULL || *word == 0) {
1238 region.base = word;
1239 region.length = strlen(word);
1243 fprintf(stderr, "class mismatch: %s\n", word);
1249 word = nsu_strsep(&cmdline, " \t\r\n");
1250 if (word == NULL || *word == 0) {
1254 region.base = word;
1255 region.length = strlen(word);
1258 fprintf(stderr, "invalid type: %s\n", word);
1265 fprintf(stderr, "invalid type: %s\n", word);
1319 char *word;
1323 word = nsu_strsep(&cmdline, " \t\r\n");
1324 if (word == NULL || *word == 0) {
1328 if (strcasecmp(word, "nxdomain") == 0) {
1331 } else if (strcasecmp(word, "yxdomain") == 0) {
1334 } else if (strcasecmp(word, "nxrrset") == 0) {
1337 } else if (strcasecmp(word, "yxrrset") == 0) {
1341 fprintf(stderr, "incorrect operation code: %s\n", word);
1349 char *word, *server;
1357 word = nsu_strsep(&cmdline, " \t\r\n");
1358 if (word == NULL || *word == 0) {
1362 server = word;
1364 word = nsu_strsep(&cmdline, " \t\r\n");
1365 if (word == NULL || *word == 0)
1369 port = strtol(word, &endp, 10);
1371 fprintf(stderr, "port '%s' is not numeric\n", word);
1375 "(1 to 65535)\n", word);
1393 char *word, *local;
1398 word = nsu_strsep(&cmdline, " \t\r\n");
1399 if (word == NULL || *word == 0) {
1403 local = word;
1405 word = nsu_strsep(&cmdline, " \t\r\n");
1406 if (word == NULL || *word == 0)
1410 port = strtol(word, &endp, 10);
1412 fprintf(stderr, "port '%s' is not numeric\n", word);
1416 "(1 to 65535)\n", word);
1515 char *word;
1519 word = nsu_strsep(&cmdline, " \t\r\n");
1520 if (word == NULL || *word == 0) {
1527 isc_buffer_init(&b, word, strlen(word));
1528 isc_buffer_add(&b, strlen(word));
1542 char *word;
1545 word = nsu_strsep(&cmdline, " \t\r\n");
1546 if (word == NULL || *word == 0) {
1553 snprintf(buf, sizeof(buf), "@%s", word);
1566 char *word;
1570 word = nsu_strsep(&cmdline, " \t\r\n");
1571 if (word == NULL || *word == 0) {
1576 if (!strcasecmp(word, "none")) {
1582 result = isc_parse_uint32(&ttl, word, 10);
1588 word, TTL_MAX);
1599 char *word;
1604 word = nsu_strsep(&cmdline, " \t\r\n");
1605 if (word == NULL || *word == 0) {
1610 r.base = word;
1611 r.length = strlen(word);
1614 fprintf(stderr, "could not parse class name: %s\n", word);
1621 fprintf(stderr, "bad default class: %s\n", word);
1635 char *word;
1662 word = nsu_strsep(&cmdline, " \t\r\n");
1663 if (word == NULL || *word == 0) {
1676 result = isc_parse_uint32(&ttl, word, 10);
1685 fprintf(stderr, "ttl '%s': %s\n", word,
1695 word, TTL_MAX);
1702 word = nsu_strsep(&cmdline, " \t\r\n");
1704 if (word == NULL || *word == 0) {
1715 region.base = word;
1716 region.length = strlen(word);
1721 fprintf(stderr, "class mismatch: %s\n", word);
1727 word = nsu_strsep(&cmdline, " \t\r\n");
1728 if (word == NULL || *word == 0) {
1739 region.base = word;
1740 region.length = strlen(word);
1744 word, isc_result_totext(result));
1752 "%s\n", word, isc_result_totext(result));
1803 char *word;
1807 word = nsu_strsep(&cmdline, " \t\r\n");
1808 if (word == NULL || *word == 0) {
1812 if (strcasecmp(word, "delete") == 0)
1814 else if (strcasecmp(word, "del") == 0)
1816 else if (strcasecmp(word, "add") == 0)
1819 fprintf(stderr, "incorrect operation code: %s\n", word);
1896 char *word;
1899 word = nsu_strsep(&cmdline, " \t\r\n");
1901 if (word == NULL || *word == 0)
1903 if (word[0] == ';')
1905 if (strcasecmp(word, "quit") == 0)
1907 if (strcasecmp(word, "prereq") == 0)
1909 if (strcasecmp(word, "nxdomain") == 0)
1911 if (strcasecmp(word, "yxdomain") == 0)
1913 if (strcasecmp(word, "nxrrset") == 0)
1915 if (strcasecmp(word, "yxrrset") == 0)
1917 if (strcasecmp(word, "update") == 0)
1919 if (strcasecmp(word, "delete") == 0)
1921 if (strcasecmp(word, "del") == 0)
1923 if (strcasecmp(word, "add") == 0)
1925 if (strcasecmp(word, "server") == 0)
1927 if (strcasecmp(word, "local") == 0)
1929 if (strcasecmp(word, "zone") == 0)
1931 if (strcasecmp(word, "class") == 0)
1933 if (strcasecmp(word, "send") == 0)
1935 if (strcasecmp(word, "debug") == 0) {
1942 if (strcasecmp(word, "ttl") == 0)
1944 if (strcasecmp(word, "show") == 0) {
1948 if (strcasecmp(word, "answer") == 0) {
1953 if (strcasecmp(word, "key") == 0) {
1957 if (strcasecmp(word, "realm") == 0)
1959 if (strcasecmp(word, "gsstsig") == 0) {
1968 if (strcasecmp(word, "oldgsstsig") == 0) {
1977 if (strcasecmp(word, "help") == 0) {
1999 fprintf(stderr, "incorrect section name: %s\n", word);