/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/ |
BitStringTest.java | 94 DerOutputStream out = new DerOutputStream(asn1, local 97 (byte[]) validBitstring[i][1], out.encoded)); 240 DerOutputStream out = new DerOutputStream(encoder, local 243 (byte[]) testcaseBoolean[i][1], out.encoded));
|
SequenceOfTest.java | 97 DerOutputStream out = new DerOutputStream(sequenceOf, local 100 (byte[]) testcases[i][1], out.encoded));
|
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
CertificateRequestTest.java | 75 HandshakeIODataStream out = new HandshakeIODataStream(); local 76 message.send(out); 77 byte[] encoded = out.getData(1000); 78 assertEquals("incorrect out data length", message.length(), encoded.length);
|
ServerKeyExchangeTest.java | 49 HandshakeIODataStream out = new HandshakeIODataStream(); local 50 message.send(out); 51 byte[] encoded = out.getData(1000); 52 assertEquals("incorrect out data length", message.length(), 103 HandshakeIODataStream out = new HandshakeIODataStream(); local 104 message.send(out); 105 byte[] encoded = out.getData(1000); 106 assertEquals("incorrect out data length", message.length(), 152 HandshakeIODataStream out = new HandshakeIODataStream(); local 153 message.send(out); [all...] |
/external/apache-http/android/src/com/android/internal/http/multipart/ |
FilePart.java | 184 * @param out The output stream 189 protected void sendDispositionHeader(OutputStream out) 191 LOG.trace("enter sendDispositionHeader(OutputStream out)"); 192 super.sendDispositionHeader(out); 195 out.write(FILE_NAME_BYTES); 196 out.write(QUOTE_BYTES); 197 out.write(EncodingUtils.getAsciiBytes(filename)); 198 out.write(QUOTE_BYTES); 204 * @param out The output stream. 209 protected void sendData(OutputStream out) throws IOException [all...] |
/external/apache-http/src/org/apache/commons/codec/binary/ |
Hex.java | 67 byte[] out = new byte[len >> 1]; 75 out[i] = (byte) (f & 0xFF); 78 return out; 110 char[] out = new char[l << 1]; local 114 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4 ]; 115 out[j++] = DIGITS[ 0x0F & data[i] ]; 118 return out;
|
/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/ |
BsPatchTest.java | 640 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 641 BsPatch.pipe(in, out, new byte[100], dataLength); 642 int actualLength = out.toByteArray().length; 723 FileOutputStream out = new FileOutputStream(oldFile); local 724 out.write(buffer); 725 out.flush(); 726 out.close(); 735 OutputStream out = new FileOutputStream(oldFile); local 737 out.write(0); 739 out.close() 762 ByteArrayOutputStream out = new ByteArrayOutputStream(); local [all...] |
/external/boringssl/src/crypto/cipher/ |
cipher_test.cc | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 119 const std::vector<uint8_t> *in, *out; local 122 out = &ciphertext; 125 out = &plaintext; 154 if (in->size() != out->size()) { 156 (unsigned)out->size()); 196 if (!t->ExpectBytesEqual(out->data(), out->size(), result.data(),
|
/external/boringssl/src/crypto/modes/ |
gcm_test.c | 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 241 static int from_hex(uint8_t *out, char in) { 243 *out = in - '0'; 247 *out = in - 'a' + 10; 251 *out = in - 'A' + 10; 258 static int decode_hex(uint8_t **out, size_t *out_len, const char *in, 264 *out = NULL; 292 *out = buf; 305 *nonce = NULL, *ciphertext = NULL, *tag = NULL, *out = NULL; local 319 goto out; [all...] |
/external/boringssl/win-x86_64/crypto/rand/ |
rdrand-x86_64.asm | 50 jz NEAR $L$out 61 $L$out:
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1Boolean.java | 172 ASN1OutputStream out) 175 out.writeEncoded(BERTags.BOOLEAN, value);
|
ASN1Enumerated.java | 121 ASN1OutputStream out) 124 out.writeEncoded(BERTags.ENUMERATED, bytes);
|
DERIA5String.java | 143 ASN1OutputStream out) 146 out.writeEncoded(BERTags.IA5_STRING, string);
|
DERNumericString.java | 137 ASN1OutputStream out) 140 out.writeEncoded(BERTags.NUMERIC_STRING, string);
|
DERPrintableString.java | 132 ASN1OutputStream out) 135 out.writeEncoded(BERTags.PRINTABLE_STRING, string);
|
DERUniversalString.java | 132 ASN1OutputStream out) 135 out.writeEncoded(BERTags.UNIVERSAL_STRING, this.getOctets());
|
/external/curl/docs/examples/ |
http2-download.c | 149 FILE *out; local 154 out = fopen(filename, "wb"); 157 curl_easy_setopt(hnd, CURLOPT_WRITEDATA, out);
|
/external/deqp/framework/qphelper/ |
qpDebugOut.c | 114 FILE* out = getOutFile(type); local 117 fprintf(out, "FATAL ERROR: "); 119 fputs(message, out); 123 putc('\n', out); 124 fflush(out); 130 FILE* out = getOutFile(type); local 133 fprintf(out, "FATAL ERROR: "); 135 vfprintf(out, format, args); 139 putc('\n', out); 140 fflush(out); [all...] |
/external/deqp/modules/egl/ |
teglInfoTests.cpp | 50 int out; local 51 strStream >> out; local 52 return out;
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
EncodedArrayItem.java | 95 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 99 encodedForm = out.toByteArray(); 105 protected void writeTo0(DexFile file, AnnotatedOutput out) { 106 boolean annotates = out.annotates(); 109 out.annotate(0, offsetString() + " encoded array"); 116 ValueEncoder encoder = new ValueEncoder(file, out); 119 out.write(encodedForm);
|
/external/e2fsprogs/debugfs/ |
lsdel.c | 87 FILE *out; local 185 out = open_pager(); 187 fprintf(out, " Inode Owner Mode Size Blocks Time deleted\n"); 193 fprintf(out, "%6u %6d %6o %6llu %6lld/%6lld %s", 199 fprintf(out, "%d deleted inodes found.\n", num_delarray); 200 close_pager(out);
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
IElement.java | 47 public void emit (final HTMLWriter out) 51 out.write ('<'); 52 out.write (tagName); 56 out.write (' '); 57 m_attrs.emit (out); 60 out.write ('>'); 65 content.emit (out); 68 out.write ("</"); 69 out.write (tagName); 70 out.write ('>') [all...] |
/external/emma/core/java12/com/vladium/util/ |
ByteArrayOStream.java | 124 public final void writeTo (final OutputStream out) 127 out.write (m_buf, 0, m_pos); 137 // System.out.println ("available = " + chunk); 156 // System.out.println ("reallocation");
|
/external/emma/core/java12/com/vladium/util/exception/ |
AbstractException.java | 226 * to System.out and (b) handle nested exceptions in JDKs prior to 1.4.<P> 232 // NOTE: unlike the JDK implementation, force the output to go to System.out: 233 ExceptionCommon.printStackTrace (this, System.out); 315 private void writeObject (final ObjectOutputStream out) 319 out.defaultWriteObject ();
|
AbstractRuntimeException.java | 226 * to System.out and (b) handle nested exceptions in JDKs prior to 1.4.<P> 232 // NOTE: unlike the JDK implementation, force the output to go to System.out: 233 ExceptionCommon.printStackTrace (this, System.out); 315 private void writeObject (final ObjectOutputStream out) 319 out.defaultWriteObject ();
|