HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 826 - 850 of 5424) sorted by null

<<31323334353637383940>>

  /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/base64/
base64_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
135 uint8_t *out = out_vec.data(); local
136 size_t len = EVP_EncodeBlock(out, (const uint8_t *)t.decoded, decoded_len);
139 EXPECT_EQ(Bytes(encoded), Bytes(out, len));
152 uint8_t *out = out_vec.data(); local
155 int ok = EVP_DecodeBase64(out, &len, out_vec.size(),
162 EXPECT_EQ(Bytes(t.decoded), Bytes(out, len));
175 uint8_t *out = out_vec.data(); local
179 EVP_DecodeBlock(out, (const uint8_t *)encoded.data(), encoded.size());
187 EXPECT_EQ(Bytes(t.decoded), Bytes(out, static_cast<size_t>(ret)))
204 uint8_t *out = out_vec.data(); local
221 uint8_t *out = out_vec.data(); local
    [all...]
  /external/boringssl/src/crypto/cipher_extra/
cipher_test.cc 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
121 const std::vector<uint8_t> *in, *out; local
124 out = &ciphertext;
127 out = &plaintext;
150 ASSERT_EQ(in->size(), out->size());
183 EXPECT_EQ(Bytes(*out), Bytes(result));
  /external/boringssl/src/crypto/digest_extra/
digest_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
186 uint8_t *out = test->md.one_shot_func((const uint8_t *)test->input, local
189 EXPECT_EQ(digest.get(), out);
  /external/boringssl/src/fipstools/
cavp_test_util.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
79 bool CipherOperation(const EVP_CIPHER *cipher, std::vector<uint8_t> *out,
93 *out = std::vector<uint8_t>(in.size());
98 !EVP_CipherUpdate(ctx.get(), out->data(), &result_len1, in.data(),
100 !EVP_CipherFinal_ex(ctx.get(), out->data() + result_len1, &result_len2)) {
103 out->resize(result_len1 + result_len2);
120 std::vector<uint8_t> out; local
121 out.resize(pt.size() + EVP_AEAD_max_overhead(aead));
123 if (!EVP_AEAD_CTX_seal(ctx.get(), out.data(), &out_len, out.size(), iv.data()
    [all...]
  /external/boringssl/src/ssl/
d1_pkt.cc 47 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
89 * The word 'cryptographic' can be left out if the rouines from the library
104 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
331 * alerts also aren't delivered reliably, so we may even time out because the
380 uint8_t *out; local
382 if (!ssl_write_buffer_init(ssl, &out, max_out) ||
383 !dtls_seal_record(ssl, out, &ciphertext_len, max_out, type, buf, len,
  /external/boringssl/win-x86_64/crypto/fipsmodule/
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 132 ASN1OutputStream out)
135 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/conscrypt/openjdk/src/test/java/org/conscrypt/
SSLUtilsTest.java 103 String[] out = new String[numProtocols]; local
105 out[i] = new String(protocols[i], UTF_8);
107 return out;
  /external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/
TestTrustManager.java 37 private static final PrintStream out = LOG ? System.out : new NullPrintStream(); field in class:TestTrustManager
60 out.println("TestTrustManager.<init> extendedTrustManager=" + trustManager);
66 out.println("TestTrustManager.<init> trustManager=" + trustManager);
74 out.print("TestTrustManager.checkClientTrusted "
80 out.println("OK");
82 e.printStackTrace(out);
91 out.print("(fallback to X509TrustManager) ");
95 out.print("TestTrustManager.checkClientTrusted "
102 out.println("OK")
    [all...]
  /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/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
BufferCallbackTimes.java 130 Bundle out = new Bundle(); local
131 out.putIntArray("mTimeStamps", mTimeStamps);
132 out.putShortArray("mCallbackDurations", mCallbackDurations);
133 out.putShort("mExpectedBufferPeriod", mExpectedBufferPeriod);
134 out.putBoolean("mExceededCapacity", mExceededCapacity);
135 out.putInt("mIndex", mIndex);
136 dest.writeBundle(out);
  /external/e2fsprogs/debugfs/
lsdel.c 88 FILE *out; local
190 out = open_pager();
192 fprintf(out, " Inode Owner Mode Size Blocks Time deleted\n");
198 fprintf(out, "%6u %6d %6o %6llu %6lld/%6lld %s",
204 fprintf(out, "%d deleted inodes found.\n", num_delarray);
205 close_pager(out);
  /external/e2fsprogs/e2fsck/
readahead.c 87 blk64_t start, end, out; local
93 err = ext2fs_find_first_set_block_bitmap2(ra_map, start, end, &out);
95 start = out;
97 &out);
99 out = end;
104 err = io_channel_cache_readahead(fs->io, start, out - start);
107 start = out;
109 &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");

Completed in 62 milliseconds

<<31323334353637383940>>