/external/e2fsprogs/tests/f_resize_inode/ |
D | script | 3 OUT=$test_name.log 11 cp /dev/null $OUT 15 echo mke2fs -F -O resize_inode -o Linux -b 1024 -g 1024 test.img 16384 > $OUT 18 grep -v "whichever comes first" >> $OUT 20 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 22 echo Exit status is $status >> $OUT.new 23 sed -e '1d' $OUT.new | sed -e '/^JFS DEBUG:/d' | tr -d \\015 >> $OUT 24 rm -f $OUT.new 26 echo ----------------------------------------------- >> $OUT 28 echo " " >> $OUT [all …]
|
/external/e2fsprogs/tests/f_swapfs/ |
D | script | 6 OUT=$test_name.log 11 echo "Swapfs test" > $OUT 13 echo e2fsck $VERIFY_FSCK_OPT -N test_filesys > $OUT.new 14 $FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1 16 echo Exit status is $status >> $OUT.new 17 sed -e '2d' $OUT.new >> $OUT 19 echo e2fsck $SWAP_FSCK_OPT -N test_filesys > $OUT.new 20 $FSCK $SWAP_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1 22 echo Exit status is $status >> $OUT.new 23 sed -e '2d' $OUT.new >> $OUT [all …]
|
/external/webkit/JavaScriptCore/pcre/ |
D | dftables | 73 open(OUT, ">", $outputFile) or die "$!"; 74 binmode(OUT); 76 printf(OUT 83 printf(OUT 94 printf(OUT " "); 97 printf(OUT "\n "); 99 printf(OUT "0x%02X", ord(lc(chr($i)))); 101 printf(OUT ", "); 104 printf(OUT ",\n\n"); 106 printf(OUT "/* This table is a case flipping table. */\n\n"); [all …]
|
/external/e2fsprogs/tests/r_move_itable/ |
D | script | 4 OUT=$test_name.log 12 cp /dev/null $OUT 16 echo mke2fs -q -F -o Linux -b 1024 -g 256 test.img 1024 > $OUT 19 grep -v "whichever comes first" >> $OUT 21 echo resize2fs -p test.img 10000 >> $OUT 22 $RESIZE2FS -p $TMPFILE 10000 2>&1 | sed -e '1d' >> $OUT 24 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 26 echo Exit status is $status >> $OUT.new 27 sed -e '1d' $OUT.new | sed -e '/^JFS DEBUG:/d' | tr -d \\015 >> $OUT 28 rm -f $OUT.new [all …]
|
/external/e2fsprogs/tests/r_resize_inode/ |
D | script | 4 OUT=$test_name.log 12 cp /dev/null $OUT 16 echo mke2fs -q -F -O resize_inode -o Linux -b 1024 -g 1024 test.img 16384 > $OUT 19 grep -v "whichever comes first" >> $OUT 21 echo resize2fs test.img 65536 >> $OUT 22 $RESIZE2FS $TMPFILE 65536 2>&1 | sed -e '1d' >> $OUT 24 $FSCK $FSCK_OPT -N test_filesys $TMPFILE > $OUT.new 2>&1 26 echo Exit status is $status >> $OUT.new 27 sed -e '1d' $OUT.new | sed -e '/^JFS DEBUG:/d' | tr -d \\015 >> $OUT 28 rm -f $OUT.new [all …]
|
/external/e2fsprogs/tests/d_loaddump/ |
D | script | 1 OUT=$test_name.log 8 echo "debugfs load/dump test" > $OUT 12 echo "mke2fs -Fq -b 1024 $TMPFILE 512" >> $OUT 16 echo Exit status is $status >> $OUT 21 echo "debugfs -R ''write $TEST_DATA test_data'' -w $TMPFILE" > $OUT.new 22 $DEBUGFS -R "write $TEST_DATA test_data" -w $TMPFILE >> $OUT.new 2>&1 24 echo Exit status is $status >> $OUT.new 25 sed -e '2d' $OUT.new >> $OUT 27 echo e2fsck $VERIFY_FSCK_OPT -N test_filesys > $OUT.new 28 $FSCK $VERIFY_FSCK_OPT -N test_filesys $TMPFILE >> $OUT.new 2>&1 [all …]
|
/external/openssl/crypto/objects/ |
D | obj_dat.pl | 46 open (OUT,">$ARGV[1]") || die "Can't open output file $ARGV[1]"; 170 print OUT <<'EOF'; 237 printf OUT "#define NUM_NID %d\n",$n; 238 printf OUT "#define NUM_SN %d\n",$#sn+1; 239 printf OUT "#define NUM_LN %d\n",$#ln+1; 240 printf OUT "#define NUM_OBJ %d\n\n",$#ob+1; 242 printf OUT "static unsigned char lvalues[%d]={\n",$lvalues+1; 243 print OUT @lvalues; 244 print OUT "};\n\n"; 246 printf OUT "static ASN1_OBJECT nid_objs[NUM_NID]={\n"; [all …]
|
D | objects.pl | 117 open (OUT,">$ARGV[2]") || die "Can't open output file $ARGV[2]"; 118 print OUT <<'EOF'; 193 print OUT "#define SN_",$Cname,"\t\t\"",$sn{$Cname},"\"\n" if $sn{$Cname} ne ""; 194 print OUT "#define LN_",$Cname,"\t\t\"",$ln{$Cname},"\"\n" if $ln{$Cname} ne ""; 195 print OUT "#define NID_",$Cname,"\t\t",$nid{$Cname},"\n" if $nid{$Cname} ne ""; 196 print OUT "#define OBJ_",$Cname,"\t\t",$obj{$Cname},"\n" if $obj{$Cname} ne ""; 197 print OUT "\n"; 200 close OUT;
|
/external/e2fsprogs/tests/r_inline_xattr/ |
D | script | 5 OUT=$test_name.log 10 echo "resize2fs test" > $OUT 13 echo "debugfs -R ''stat file'' $TMPFILE 2>&1 | grep ''^Inode\|in inode body\|name = ''" >> $OUT 14 $DEBUGFS -R "stat file" $TMPFILE 2>&1 | grep "^Inode\|in inode body\|name = " >> $OUT 16 echo Exit status is $status >> $OUT 19 echo "resize2fs $TMPFILE 5M" >> $OUT 20 $RESIZE2FS $TMPFILE 5M 2>&1 >> $OUT.new 2>&1 22 echo Exit status is $status >> $OUT.new 23 sed -e '1d' $OUT.new >> $OUT 26 echo "debugfs -R ''stat file'' $TMPFILE 2>&1 | grep ''^Inode\|in inode body\|name = ''" >> $OUT [all …]
|
/external/webkit/WebCore/css/ |
D | make-css-file-arrays.pl | 41 open OUT, ">", $out or die; 44 print OUT "namespace WebCore {\n"; 69 print OUT "extern const char ${name}UserAgentStyleSheet[${length}] = {\n"; 72 print OUT " "; 75 print OUT ", " unless $j == 0; 76 print OUT ord substr $text, $i, 1; 80 print OUT "," unless $i == $length; 81 print OUT "\n"; 83 print OUT "};\n"; 88 print OUT "}\n";
|
/external/bzip2/ |
D | xmlproc.sh | 43 OUT=output 76 xmllint $flags $dtd $xmlfmtfile 2> $OUT 77 egrep 'error' $OUT 78 rm $OUT 90 pdfxmltex $fofile >$OUT </dev/null 91 pdfxmltex $fofile >$OUT </dev/null 92 pdfxmltex $fofile >$OUT </dev/null 93 cleanup $OUT $xmlfmtfile *.aux *.fo *.log *.out 99 pdfxmltex $fofile >$OUT </dev/null 100 pdfxmltex $fofile >$OUT </dev/null [all …]
|
/external/dropbear/libtommath/ |
D | dep.pl | 26 open(OUT, ">tmp"); 31 print OUT $line; 33 print OUT "#include <tommath.h>\n#ifdef $define\n$line"; 38 print OUT $_; 42 print OUT "#endif\n"; 45 close OUT; 93 open(OUT,">callgraph.txt"); 98 print OUT "\n\n"; 100 close(OUT); 111 elsif ($indent >= 1) { print OUT "| " x ($indent - 1) . "+--->"; } [all …]
|
D | booker.pl | 21 open(OUT,">tommath.tex") or die "Can't open destination file"; 78 …print OUT "\\vspace{+3mm}\\begin{small}\n\\hspace{-5.1mm}{\\bf File}: $tmp\n\\vspace{-3mm}\n\\begi… 104 printf OUT ("%03d ", $line); 106 print OUT chr(vec($_, $x, 8)); 108 print OUT "\n "; 112 print OUT "\n"; 116 print OUT "\\end{alltt}\n\\end{small}\n"; 180 print OUT $_; 248 print OUT $_; 254 print OUT "\\begin{center}\n\\begin{figure}[here]\n\\includegraphics{pics/$m[1]$graph}\n"; [all …]
|
D | gen.pl | 8 open( OUT, ">mpi.c" ) or die "Couldn't open mpi.c for writing: $!"; 11 print OUT "/* Start: $filename */\n"; 12 print OUT while <SRC>; 13 print OUT "\n/* End: $filename */\n\n"; 16 print OUT "\n/* EOF */\n"; 17 close OUT or die "Error closing mpi.c after writing: $!";
|
/external/webkit/WebKitTools/Scripts/ |
D | sort-Xcode-project-file | 85 my ($OUT, $tempFileName) = tempfile( 94 close($OUT); 102 print $OUT $line; 112 print $OUT sort sortFilesByFileName @files; 113 print $OUT $endMarker; 115 print $OUT $line; 127 print $OUT @children; 129 print $OUT sort sortChildrenByFileName @children; 131 print $OUT $endMarker; 133 print $OUT $line; [all …]
|
D | update-iexploder-cssproperties | 109 open(OUT, "> $iExploderFile") || die "$!"; 110 print OUT join("", @sections); 111 close(OUT);
|
/external/webkit/WebKitTools/BuildSlaveSupport/ |
D | build-launcher-app | 94 open(OUT, ">$infoPlist") or die "Couldn't open Info.plist in built application for writing"; 96 print OUT $data; 97 close(OUT); 99 open(OUT, ">$versionFile") or die "Couldn't open VERSION in built application for writing"; 100 print OUT "$revision\n"; 101 close(OUT); 103 open(OUT, ">$branchFile") or die "Couldn't open BRANCH in built application for writing"; 104 print OUT "$branch\n"; 105 close(OUT);
|
/external/ipsec-tools/src/racoon/contrib/ |
D | sp.pl | 11 open(OUT, "|setkey -c"); 14 print OUT "spdadd $src $dst any -P out ipsec esp/transport//require;\n"; 15 print OUT "spdadd $dst $src any -P in ipsec esp/transport//require;\n"; 18 print OUT "spddelete $src $dst any -P out;\n"; 19 print OUT "spddelete $dst $src any -P in;\n"; 21 close(OUT);
|
/external/openssl/apps/ |
D | CA.pl.in | 95 open OUT, ">${CATOP}/index.txt"; 96 close OUT; 97 open OUT, ">${CATOP}/crlnumber"; 98 print OUT "01\n"; 99 close OUT; 177 open OUT, ">$outfile"; 181 print OUT $_ if ($flag); 184 close OUT;
|
D | CA.pl | 95 open OUT, ">${CATOP}/index.txt"; 96 close OUT; 97 open OUT, ">${CATOP}/crlnumber"; 98 print OUT "01\n"; 99 close OUT; 177 open OUT, ">$outfile"; 181 print OUT $_ if ($flag); 184 close OUT;
|
/external/e2fsprogs/tests/defaults/ |
D | e_script | 14 if [ "$OUT"x = x ]; then 15 OUT=$test_name.log 32 | $TEST_PROG -f - 2>&1 | tr -d \\015 > $OUT 34 cmp -s $EXPECT $OUT 44 diff $DIFF_OPTS $EXPECT $OUT > $test_name.failed 47 unset EXPECT OUT class instance
|
/external/dropbear/libtomcrypt/ |
D | fixupind.pl | 2 open(OUT,">crypt.ind.tmp"); 4 print OUT "$a\n\\addcontentsline{toc}{chapter}{Index}\n"; 6 print OUT $_; 8 close OUT;
|
/external/e2fsprogs/lib/ext2fs/ |
D | nt_io.c | 62 OUT PHANDLE FileHandle, 65 OUT PIO_STATUS_BLOCK IoStatusBlock, 75 OUT PIO_STATUS_BLOCK IoStatusBlock 87 OUT PIO_STATUS_BLOCK IoStatusBlock, 88 OUT PVOID Buffer, 102 OUT PIO_STATUS_BLOCK IoStatusBlock, 117 OUT PIO_STATUS_BLOCK IoStatusBlock, 121 OUT PVOID OutputBuffer OPTIONAL, 133 OUT PIO_STATUS_BLOCK IoStatusBlock, 137 OUT PVOID OutputBuffer OPTIONAL, [all …]
|
/external/webkit/WebKit/win/WebKit.vcproj/ |
D | FixMIDLHeaders.pl | 54 open(OUT, ">", $fileName); 72 print OUT $line; 75 close(OUT);
|
/external/wpa_supplicant/ |
D | pcsc_funcs.c | 117 OUT LPSCARDCONTEXT phContext); 126 OUT LPSTR mszReaders, 127 IN OUT LPDWORD pcchReaders); 136 OUT LPSCARDHANDLE phCard, 137 OUT LPDWORD pdwActiveProtocol); 151 IN OUT LPSCARD_IO_REQUEST pioRecvPci, 152 OUT LPBYTE pbRecvBuffer, 153 IN OUT LPDWORD pcbRecvLength);
|