/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...] |