/external/openssl/apps/ |
pkeyparam.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 72 BIO *in = NULL, *out = NULL; local 101 else if (!strcmp (*args, "-out")) 133 BIO_printf(bio_err, "-out file output file\n"); 160 if (!(out = BIO_new_file (outfile, "w"))) 169 out = BIO_new_fp (stdout, BIO_NOCLOSE); 173 out = BIO_push(tmpbio, out); 187 PEM_write_bio_Parameters(out,pkey); 190 EVP_PKEY_print_params(out, pkey, 0, NULL) [all...] |
/external/openssl/crypto/des/ |
ecb_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 114 unsigned char *out = &(*output)[0]; local 119 l=ll[0]; l2c(l,out); 120 l=ll[1]; l2c(l,out);
|
pcbc_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 68 unsigned char *out,*iv; local 71 out=output; 94 l2c(tout0,out); 95 l2c(tout1,out); 112 l2c(tout0,out); 113 l2c(tout1,out); 116 l2cn(tout0,tout1,out,length);
|
/external/openssl/crypto/pkcs12/ |
p12_decr.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 75 unsigned char *out; local 87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) { 92 if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen)) 94 OPENSSL_free(out); 95 out = NULL; 101 if(!EVP_CipherFinal_ex(&ctx, out + i, &i)) { 102 OPENSSL_free(out); 103 out = NULL; 109 if (data) *data = out; 123 unsigned char *out; local [all...] |
/external/openssl/crypto/rc4/ |
rc4.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 69 " -out arg - output file - default stdout\n", 76 FILE *in=NULL,*out=NULL; local 93 else if (strcmp(*argv,"-out") == 0) 134 out=stdout; 137 out=fopen(outfile,"w"); 138 if (out == NULL) 150 setmode(fileno(out),O_BINARY); 181 i=fwrite(buf,(unsigned int)i,1,out); [all...] |
/external/owasp/sanitizer/ |
Makefile | 11 @echo " The output will be available under out/." 13 @echo " classes - Put Java .class files under out/." 25 @echo " directories of trunk checked out." 54 out: 55 mkdir -p out 57 out/classes: out 58 mkdir -p out/classes 60 out/genfiles: out [all...] |
/external/owasp/sanitizer/src/main/org/owasp/html/ |
ElementAndAttributePolicyBasedSanitizerPolicy.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 50 private final HtmlStreamEventReceiver out; field in class:ElementAndAttributePolicyBasedSanitizerPolicy 63 HtmlStreamEventReceiver out, 66 this.out = out; 79 out.openDocument(); 86 out.closeTag(tagNameToClose); 91 out.closeDocument(); 96 out.text(textChunk); 156 out.closeTag(tagNameToClose) [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestNan.java | 39 public Target.Floaty out; field in class:TestNan.ArgumentsUintFloat 45 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 46 script.forEach_testNanUintFloat(in, out); 47 verifyResultsNanUintFloat(in, out, false); 52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 53 scriptRelaxed.forEach_testNanUintFloat(in, out); 54 verifyResultsNanUintFloat(in, out, true); 60 private void verifyResultsNanUintFloat(Allocation in, Allocation out, boolean relaxed) { 64 out.copyTo(arrayOut); 70 // Figure out what the outputs should have been [all...] |
GetElementAt.java | 31 private int[] out; field in class:GetElementAt 53 out = new int[size]; 67 mOut.copyTo(out); 69 assertEquals("idx = " + k, in[k], out[k]); 88 mOut.copyTo(out); 90 assertEquals("idx = " + k, in[k], out[k]);
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarSerializerFoo.java | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 46 protected DataOutputStream out; field in class:GrammarSerializerFoo 62 out = new DataOutputStream(bos); 63 writeString(out, SerializedGrammar.COOKIE); 64 out.writeByte(SerializedGrammar.FORMAT_VERSION); 68 if ( out!=null ) out.close(); 69 out = null; 79 case ANTLRParser.LEXER_GRAMMAR : out.writeByte('l'); break; 80 case ANTLRParser.PARSER_GRAMMAR : out.writeByte('p'); break [all...] |
/external/doclava/src/com/google/doclava/ |
Proofread.java | 27 static Writer out = null; field in class:Proofread 34 out = new BufferedWriter(new FileWriter(filename)); 35 out.write("javadoc proofread file: " + filename + "\n"); 37 if (out != null) { 39 out.close(); 41 out = null; 48 if (out == null) { 53 out.close(); 58 if (out == null) { 62 out.write(s) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
GenerateExcludeListTask.java | 122 BufferedWriter out = new BufferedWriter(new FileWriter(outputFile)); local 126 out.write("plugins/" + s + ","); 128 out.write("plugins/" + s); 131 out.close();
|
/external/javassist/src/main/javassist/ |
SerialVersionUID.java | 78 DataOutputStream out = new DataOutputStream(bout); local 83 out.writeUTF(javaName); 95 out.writeInt(classMods); 104 out.writeUTF(interfaces[i]); 121 out.writeUTF(field.getName()); 122 out.writeInt(mods); 123 out.writeUTF(field.getFieldInfo2().getDescriptor()); 129 out.writeUTF("<clinit>"); 130 out.writeInt(Modifier.STATIC); 131 out.writeUTF("()V") [all...] |
/external/javassist/src/main/javassist/bytecode/ |
ClassFilePrinter.java | 32 print(cf, new PrintWriter(System.out, true)); 38 public static void print(ClassFile cf, PrintWriter out) { 48 out.println("major: " + cf.major + ", minor: " + cf.minor 50 out.println(Modifier.toString(mod) + " class " 55 out.print(" implements "); 56 out.print(infs[0]); 58 out.print(", " + infs[i]); 60 out.println(); 63 out.println(); 69 out.println(Modifier.toString(AccessFlag.toModifier(acc) 72 printAttributes(finfo.getAttributes(), out, 'f'); local 84 printAttributes(minfo.getAttributes(), out, 'm'); local 89 printAttributes(cf.getAttributes(), out, 'c'); local 108 printAttributes(ca.getAttributes(), out, kind); local [all...] |
/external/javassist/src/main/javassist/util/proxy/ |
FactoryHelper.java | 188 DataOutputStream out = new DataOutputStream(barray); local 190 cf.write(out); 193 out.close(); 224 DataOutputStream out = new DataOutputStream(new BufferedOutputStream( local 227 cf.write(out); 233 out.close();
|
/external/javassist/src/test/test/javassist/proxy/ |
ProxySerializationTest.java | 37 ObjectOutputStream out = new ObjectOutputStream(bos); local 38 out.writeObject(proxy); 39 out.close(); 64 ProxyObjectOutputStream out = new ProxyObjectOutputStream(bos); local 65 out.writeObject(proxy); 66 out.close();
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
DebuggingClassWriter.java | 83 OutputStream out = new BufferedOutputStream(new FileOutputStream(file)); local 85 out.write(b); 87 out.close(); 92 out = new BufferedOutputStream(new FileOutputStream(file)); 95 PrintWriter pw = new PrintWriter(new OutputStreamWriter(out)); 100 out.close();
|
/external/mockito/src/org/mockito/internal/invocation/ |
InvocationMatcher.java | 149 LinkedList<InvocationMatcher> out = new LinkedList<InvocationMatcher>(); local 152 out.add(new InvocationMatcher(i)); 155 return out;
|
/bootable/recovery/tools/ota/ |
check-lost+found.c | 50 FILE *out = fopen(kOutputFile, "a"); local 51 if (out == NULL) { 58 fprintf(out, "*** check-lost+found ***\nStarted: %s", ctime(&start)); 68 fprintf(out, "Wrote %s, rebooting\n", kMarkerFile); 69 fflush(out); 87 fprintf(out, "Reboot failed?!\n"); 90 fprintf(out, "Can't write %s: %s\n", kMarkerFile, strerror(errno)); 93 fprintf(out, "Found %s\n", kMarkerFile); 102 fprintf(out, "Can't open %s: %s\n", fn, strerror(errno)); 112 fprintf(out, "OMGZ FOUND %d FILES IN %s\n", count, fn) [all...] |
/cts/libs/deviceutil/src/android/cts/util/ |
FileUtils.java | 114 FileOutputStream out = new FileOutputStream(destFile); local 119 out.write(buffer, 0, bytesRead); 122 out.flush(); 124 out.getFD().sync(); 127 out.close();
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
XmlReport.java | 36 PrintStream out = new PrintStream(outputStream); local 37 out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>"); 38 out.println("<?xml-stylesheet type=\"text/xsl\" href=\"api-coverage.xsl\"?>"); 42 out.println("<api-coverage generatedTime=\"" + date + "\" title=\"" + reportTitle +"\">"); 44 out.println("<debug>"); 45 out.println("<sources>"); 47 out.println("<apk path=\"" + testApk.getPath() + "\" />"); 49 out.println("</sources>"); 50 out.println("</debug>"); 52 out.println("<api>") [all...] |
/development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/ |
HelloCompute.java | 48 ImageView out = (ImageView) findViewById(R.id.displayout); local 49 out.setImageBitmap(mBitmapOut);
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
ExplicitTest.java | 187 DerOutputStream out = new DerOutputStream( local 190 (byte[]) taggedType[i][1], out.encoded));
|
GeneralizedTimeTest.java | 125 DerOutputStream out = new DerOutputStream(gtime, local 129 out.encoded)); //encoded
|
ImplicitTest.java | 178 DerOutputStream out = new DerOutputStream( local 181 (byte[]) taggedType[i][1], out.encoded));
|