/bind-9.11.3/util/ |
H A D | bindkeys.pl | 12 my $lines; 20 $lines .= $_ . "\n"; 23 my $mkey = '#define MANAGED_KEYS "\\' . "\n" . $lines . "\"\n"; 25 $lines =~ s/managed-keys/trusted-keys/; 26 $lines =~ s/\s+initial-key//g; 27 my $tkey = '#define TRUSTED_KEYS "\\' . "\n" . $lines . "\"\n";
|
H A D | update_copyrights | 29 # the lines of the copyright message. 487 @lines = @$textp; 489 foreach $_ (@lines) {
|
/bind-9.11.3/bin/named/ |
H A D | convertxsl.pl | 20 my $lines = ''; 34 if ($lines eq "") { 35 $lines .= $_; 37 $lines .= "\n" . $_; 48 print $lines;
|
/bind-9.11.3/bin/tests/system/nslookup/ |
H A D | tests.sh | 30 lines=`grep "Server:" nslookup.out${n} | wc -l` 31 test $lines = 1 || ret=1 32 lines=`grep a-only.example.net nslookup.out${n} | wc -l` 33 test $lines = 1 || ret=1 42 lines=`grep "Server:" nslookup.out${n} | wc -l` 43 test $lines = 1 || ret=1 44 lines=`grep aaaa-only.example.net nslookup.out${n} | wc -l` 45 test $lines = 1 || ret=1 54 lines=`grep "Server:" nslookup.out${n} | wc -l` 55 test $lines [all...] |
/bind-9.11.3/unit/atf-src/atf-c/detail/ |
H A D | sanity_test.c | 95 char *lines[3]; local 109 while (nlines < 3 && (lines[nlines] = 127 ATF_REQUIRE(atf_utils_grep_string("Invariant", lines[0])); 131 ATF_REQUIRE(atf_utils_grep_string("Precondition", lines[0])); 135 ATF_REQUIRE(atf_utils_grep_string("Postcondition", lines[0])); 139 ATF_REQUIRE(atf_utils_grep_string("Invariant", lines[0])); 143 ATF_REQUIRE(atf_utils_grep_string(__FILE__, lines[0])); 144 ATF_REQUIRE(atf_utils_grep_string(PACKAGE_BUGREPORT, lines[2])); 149 free(lines[nlines]);
|
/bind-9.11.3/bin/tests/system/dlzexternal/ |
H A D | tests.sh | 44 lines=`echo "$out" | grep "$digout" | wc -l` 45 [ $lines -eq 1 ] || { 108 lines=`cat dig.out.ns1.test$n | wc -l` 109 [ ${lines:-0} -eq 4 ] || ret=1 111 lines=`cat dig.out.ns1.test$n | wc -l` 112 [ ${lines:-0} -eq 5 ] || ret=1 137 lines=`grep "dlz_findzonedb.*test\.example\.com.*example.nil" ns1/named.run | wc -l` 138 [ $lines -eq 1 ] || ret=1 139 lines=`grep "dlz_findzonedb.*test\.example\.com.*alternate.nil" ns1/named.run | wc -l` 140 [ $lines [all...] |
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/ |
H A D | resperf-report | 44 "$plotfile" using 1:3 title "Queries sent per second" with lines, \ 45 "$plotfile" using 1:4 title "Total responses received per second" with lines, \ 46 "$plotfile" using 1:5 title "Failure responses received per second" with lines 63 "$plotfile" using 1:6 title "Average latency (seconds)" with lines
|
H A D | datafile.h | 38 perf_datafile_next(perf_datafile_t *dfile, isc_buffer_t *lines,
|
H A D | datafile.c | 171 read_one_line(perf_datafile_t *dfile, isc_buffer_t *lines) argument 211 length = isc_buffer_availablelength(lines); 214 isc_buffer_putmem(lines, cur, curlen); 215 isc_buffer_putuint8(lines, 0); 221 perf_datafile_next(perf_datafile_t *dfile, isc_buffer_t *lines, argument 234 result = read_one_line(dfile, lines); 242 result = read_one_line(dfile, lines); 253 current = isc_buffer_used(lines); 254 result = read_one_line(dfile, lines);
|
H A D | resperf.c | 457 do_one_line(isc_buffer_t *lines, isc_buffer_t *msg) { argument 466 isc_buffer_clear(lines); 467 result = perf_datafile_next(input, lines, ISC_FALSE); 470 isc_buffer_usedregion(lines, &used); 617 isc_buffer_t lines, msg; local 629 isc_buffer_init(&lines, input_data, sizeof(input_data)); 683 result = do_one_line(&lines, &msg);
|
H A D | dnsperf.c | 572 isc_buffer_t lines; local 588 isc_buffer_init(&lines, input_data, sizeof(input_data)); 634 isc_buffer_clear(&lines); 635 result = perf_datafile_next(input, &lines, config->updates); 643 isc_buffer_usedregion(&lines, &used); 663 q->desc = strdup(lines.base);
|
/bind-9.11.3/unit/atf-src/admin/ |
H A D | check-style-shell.awk | 97 warn("Missing mode lines");
|
/bind-9.11.3/bin/tests/system/dyndb/ |
H A D | tests.sh | 44 lines=`echo "$out" | grep "$ip" | wc -l` 45 [ $lines -eq 1 ] || { 53 lines=`echo "$out" | grep "$host" | wc -l` 54 [ $lines -eq 1 ] || { 84 lines=`echo "$out" | grep "$ip" | wc -l` 85 [ $lines -eq 0 ] || { 93 lines=`echo "$out" | grep "$host" | wc -l` 94 [ $lines -eq 0 ] || {
|
/bind-9.11.3/unit/atf-src/tools/ |
H A D | ui.cpp | 150 std::vector< std::string > lines = tools::text::split(text, "\n"); local 151 for (std::vector< std::string >::const_iterator iter = lines.begin(); 152 iter != lines.end(); iter++) { 155 formatted += format_paragraph(line, tag, iter == lines.begin(), 157 if (iter + 1 != lines.end()) {
|
H A D | atf-report_test.sh | 380 "lines" 407 <so> Blank space at beginning of context lines must be preserved.</so>
|
/bind-9.11.3/contrib/idn/idnkit-1.0-src/util/ |
H A D | SparseMap.pm | 232 my @lines; 237 push @lines, "level $i: $nmaps maps (size $mapsz) "; 238 push @lines, "[", $nmaps * $mapsz * $elsize, "]" if $elsize; 239 push @lines, "\n"; 242 push @lines, "level $i: $ndmaps dmaps"; 245 push @lines, " (size ", scalar(@$r), ")"; 247 push @lines, "\n"; 248 join '', @lines;
|
/bind-9.11.3/bin/tests/system/tsiggss/ |
H A D | tests.sh | 37 lines=`echo "$out" | grep "$digout" | wc -l` 38 [ $lines -eq 1 ] || {
|
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/tests/ |
H A D | testygen | 504 my ($lines, $generator, $handle, $lineinfo) = @_; 507 chomp($lines); 508 $lines .= "\n"; 510 while ($lines ne '') { 511 $lines =~ s/^([^\n]*)\n//;
|
/bind-9.11.3/bin/tests/system/ixfr/ |
H A D | tests.sh | 238 lines=`grep hostmaster.large dig.out | wc -l` 239 test ${lines:-0} -eq 2 || { echo "I:failed"; status=1; }
|
/bind-9.11.3/bin/tests/system/dnssec/ |
H A D | tests.sh | 1690 lines=`wc -l < rndc.out.ns4.test$n.1` 1691 [ "$lines" -eq 2 ] || ret=1 1696 lines=`wc -l < rndc.out.ns4.test$n.2` 1697 [ "$lines" -eq 4 ] || ret=1 1761 lines=`wc -l < rndc.out.ns4.test$n._11` 1762 [ "$lines" -le 2 ] || ret=1 1790 lines=`wc -l < rndc.out.ns4.test$n.3` 1791 [ "$lines" -eq 0 ] || ret=1 1852 lines=`wc -l < rndc.out.ns4.test$n.1` 1853 [ "$lines" [all...] |
/bind-9.11.3/bin/tests/ |
H A D | named.conf | 204 // 'inet' lines without a 'port' defaults to 'port 953'
|
/bind-9.11.3/bin/tests/system/digdelv/ |
H A D | tests.sh | 347 lines=`grep "CLIENT-SUBNET: 00 03 00 00" dig.out.test$n | wc -l` 348 [ ${lines:-0} -eq 1 ] || ret=1
|
/bind-9.11.3/bin/tests/system/nsupdate/ |
H A D | tests.sh | 674 lines=`awk '$4 == "A" { l++ } END { print l }' dig.out.test$n` 675 test ${lines:-0} -eq 64 || ret=1
|