Searched refs:out (Results 101 - 125 of 5513) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityOutputStream.java58 private final SessionOutputBuffer out; field in class:IdentityOutputStream
63 public IdentityOutputStream(final SessionOutputBuffer out) { argument
65 if (out == null) {
68 this.out = out;
79 this.out.flush();
84 this.out.flush();
91 this.out.write(b, off, len);
102 this.out.write(b);
H A DChunkedOutputStream.java58 private final SessionOutputBuffer out; field in class:ChunkedOutputStream
72 * @param out the session output buffer to wrap
76 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize) argument
80 this.out = out;
87 * @param out the output buffer to wrap
90 public ChunkedOutputStream(final SessionOutputBuffer out) argument
92 this(out, 2048);
97 * Writes the cache out onto the underlying stream
102 this.out
[all...]
/external/chromium_org/net/data/ssl/scripts/
H A Dgenerate-weak-test-chains.sh33 try rm -rf out
34 try mkdir out
37 try /bin/sh -c "echo 01 > out/2048-rsa-root-serial"
40 try /bin/sh -c "echo 01 > out/$key_type-intermediate-serial"
44 try openssl genrsa -out out/2048-rsa-root.key 2048
47 CA_DIR=out \
54 -key out/2048-rsa-root.key \
56 -out out/204
[all...]
H A Dgenerate-duplicate-cn-certs.sh22 try rm -rf out
23 try mkdir out
26 try /bin/sh -c "echo 01 > out/B-serial"
27 try touch out/B-index.txt
30 try openssl genrsa -out out/A.key 2048
31 try openssl genrsa -out out/B.key 2048
38 -key out/B.key \
39 -out ou
[all...]
H A Dgenerate-test-certs.sh15 try rm -rf out
16 try mkdir out
18 try /bin/sh -c "echo 01 > out/2048-sha256-root-serial"
19 touch out/2048-sha256-root-index.txt
22 try openssl genrsa -out out/2048-sha256-root.key 2048
28 -key out/2048-sha256-root.key \
29 -out out/2048-sha256-root.req \
35 -in out/204
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/modes/
H A Dcbc.c59 void CRYPTO_cbc128_encrypt(const uint8_t *in, uint8_t *out, size_t len, argument
65 assert(in && out && key && ivec);
68 ((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
71 out[n] = in[n] ^ iv[n];
73 (*block)(out, out, key);
74 iv = out;
77 out += 16;
82 *(size_t *)(out + n) = *(size_t *)(in + n) ^ *(size_t *)(iv + n);
84 (*block)(out, ou
112 CRYPTO_cbc128_decrypt(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], block128_f block) argument
[all...]
/external/openssl/crypto/modes/
H A Dcbc128.c66 void CRYPTO_cbc128_encrypt(const unsigned char *in, unsigned char *out, argument
73 assert(in && out && key && ivec);
77 ((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) {
80 out[n] = in[n] ^ iv[n];
81 (*block)(out, out, key);
82 iv = out;
85 out += 16;
90 *(size_t*)(out+n) =
92 (*block)(out, ou
115 CRYPTO_cbc128_decrypt(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], block128_f block) argument
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_prefixed_buffer_reader.cc25 bool SpdyPrefixedBufferReader::ReadN(size_t count, char* out) { argument
31 std::copy(prefix_, prefix_ + count, out);
37 out = std::copy(prefix_, prefix_ + prefix_length_, out);
44 std::copy(suffix_, suffix_ + count, out);
51 SpdyPinnableBufferPiece* out) {
55 out->storage_.reset();
56 out->length_ = count;
60 out->buffer_ = prefix_;
67 out
50 ReadN(size_t count, SpdyPinnableBufferPiece* out) argument
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Drealpath.c36 char* out = resolved_path; local
40 *out = 0;
44 strcat(out, "/");
46 out++;
49 if (getcwd(out, out_end - out) == NULL)
52 out += strlen(out);
80 out = prev_slash;
83 ++out;
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DSectionAnnotator.java62 protected abstract void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity); argument
65 * Write out annotations for this section
67 * @param out The AnnotatedBytes object to annotate to
69 public void annotateSection(@Nonnull AnnotatedBytes out) { argument
70 out.moveTo(sectionOffset);
71 annotateSectionInner(out, itemCount);
74 protected void annotateSectionInner(@Nonnull AnnotatedBytes out, int itemCount) { argument
78 out.annotate(0, "");
79 out.annotate(0, "-----------------------------");
80 out
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DOutputHLSL.cpp280 TInfoSinkBase &out = mHeader; local
316 out << mStructureHLSL->structsHeader();
318 out << mUniformHLSL->uniformsHeader(mOutputType, mReferencedUniforms);
319 out << mUniformHLSL->interfaceBlocksHeader(mReferencedInterfaceBlocks);
323 out << "#define ANGLE_USES_DISCARD_REWRITING" << "\n";
328 out << "#define ANGLE_USES_NESTED_BREAK" << "\n";
336 out << "// Varyings\n";
337 out << varyings;
338 out << "\n";
347 out << "stati
1370 TInfoSinkBase &out = mBody; local
1474 TInfoSinkBase &out = mBody; local
1817 TInfoSinkBase &out = mBody; local
2280 TInfoSinkBase &out = mBody; local
2366 TInfoSinkBase &out = mBody; local
2432 TInfoSinkBase &out = mBody; local
2528 TInfoSinkBase &out = mBody; local
2730 TInfoSinkBase &out = mBody; local
2806 TInfoSinkBase &out = mBody; local
2826 TInfoSinkBase &out = mBody; local
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DClassFilePrinter.java32 print(cf, new PrintWriter(System.out, true));
38 public static void print(ClassFile cf, PrintWriter out) { argument
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
92 printAttributes(List list, PrintWriter out, char kind) argument
[all...]
/external/owasp/sanitizer/
H A DMakefile11 @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/chromium_org/tools/json_schema_compiler/
H A Dutil.cc12 bool GetItemFromList(const base::ListValue& from, int index, int* out) { argument
13 return from.GetInteger(index, out);
16 bool GetItemFromList(const base::ListValue& from, int index, bool* out) { argument
17 return from.GetBoolean(index, out);
20 bool GetItemFromList(const base::ListValue& from, int index, double* out) { argument
21 return from.GetDouble(index, out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out) { argument
25 return from.GetString(index, out);
30 linked_ptr<base::Value>* out) {
34 *out
28 GetItemFromList(const base::ListValue& from, int index, linked_ptr<base::Value>* out) argument
38 GetItemFromList(const base::ListValue& from, int index, linked_ptr<base::DictionaryValue>* out) argument
47 AddItemToList(const int from, base::ListValue* out) argument
51 AddItemToList(const bool from, base::ListValue* out) argument
55 AddItemToList(const double from, base::ListValue* out) argument
59 AddItemToList(const std::string& from, base::ListValue* out) argument
63 AddItemToList(const linked_ptr<base::Value>& from, base::ListValue* out) argument
68 AddItemToList(const linked_ptr<base::DictionaryValue>& from, base::ListValue* out) argument
[all...]
/external/libcxx/test/re/re.results/re.results.form/
H A Dform1.pass.cpp16 // format(OutputIter out, const char_type* fmt_first, const char_type* fmt_last,
31 char out[100] = {0}; local
33 char* r = m.format(output_iterator<char*>(out),
35 assert(r == out + 58);
36 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
43 char out[100] = {0}; local
45 char* r = m.format(output_iterator<char*>(out),
48 assert(r == out + 59);
49 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
56 char out[10 local
70 wchar_t out[100] = {0}; local
82 wchar_t out[100] = {0}; local
95 wchar_t out[100] = {0}; local
[all...]
H A Dform2.pass.cpp16 // format(OutputIter out, const basic_string<char_type, ST, SA>& fmt,
36 char out[100] = {0}; local
38 char* r = m.format(output_iterator<char*>(out), fmt).base();
39 assert(r == out + 58);
40 assert(std::string(out) == "prefix: ab, match: cdefghi, suffix: jk, m[1]: efg, m[2]: e");
47 char out[100] = {0}; local
49 char* r = m.format(output_iterator<char*>(out),
51 assert(r == out + 59);
52 assert(std::string(out) == "prefix: $`, match: $cdefghi, suffix: $', m[1]: $1, m[2]: $2");
59 char out[10 local
72 wchar_t out[100] = {0}; local
83 wchar_t out[100] = {0}; local
95 wchar_t out[100] = {0}; local
[all...]
/external/okhttp/okio/src/main/java/okio/
H A DBase64.java41 byte[] out = new byte[(int) (limit * 6L / 8L)];
81 out[outCount++] = (byte) (word >> 16);
82 out[outCount++] = (byte) (word >> 8);
83 out[outCount++] = (byte) word;
94 out[outCount++] = (byte) (word >> 16);
98 out[outCount++] = (byte) (word >> 16);
99 out[outCount++] = (byte) (word >> 8);
102 // If we sized our out array perfectly, we're done.
103 if (outCount == out.length) return out;
[all...]
/external/openssl/crypto/lhash/
H A Dlh_stats.c35 * The word 'cryptographic' can be left out if the rouines from the library
73 void lh_stats(LHASH *lh, FILE *out) argument
75 fprintf(out,"num_items = %lu\n",lh->num_items);
76 fprintf(out,"num_nodes = %u\n",lh->num_nodes);
77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes);
78 fprintf(out,"num_expands = %lu\n",lh->num_expands);
79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs);
80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts);
81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs);
82 fprintf(out,"num_hash_call
99 lh_node_stats(LHASH *lh, FILE *out) argument
112 lh_node_usage_stats(LHASH *lh, FILE *out) argument
180 lh_stats_bio(const _LHASH *lh, BIO *out) argument
208 lh_node_stats_bio(const _LHASH *lh, BIO *out) argument
221 lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) argument
[all...]
/external/chromium_org/third_party/icu/source/samples/citer/
H A Dciter.cpp18 static UFILE *out; variable
22 u_fprintf(out, "%S", &s);
28 u_fprintf(out, "%C", (UChar) ch);
30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]");
32 u_fprintf(out, "[%X]", ch);
53 u_fprintf(out, "testText = %s", testChars);
56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n");
64 u_fprintf(out, "iter.getText() != clone.getText()\n");
67 u_fprintf(out, "\n");
70 u_fprintf(out, "Forwar
[all...]
/external/chromium_org/ui/compositor/
H A Ddebug_utils.cc31 std::wostringstream* out) {
38 *out << UTF8ToWide(indent_str);
40 *out << L'*';
42 *out << L' ';
44 *out << UTF8ToWide(layer->name()) << L' ' << layer;
48 *out << L" not_drawn";
51 *out << L" textured";
53 *out << L" opaque";
56 *out << L" solid";
59 *out <<
28 PrintLayerHierarchyImp(const Layer* layer, int indent, gfx::Point mouse_location, std::wostringstream* out) argument
114 std::wostringstream out; local
[all...]
/external/icu/icu4c/source/samples/citer/
H A Dciter.cpp18 static UFILE *out; variable
22 u_fprintf(out, "%S", &s);
28 u_fprintf(out, "%C", (UChar) ch);
30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]");
32 u_fprintf(out, "[%X]", ch);
53 u_fprintf(out, "testText = %s", testChars);
56 u_fprintf(out, "clone() or equals() failed: Two clones tested unequal\n");
64 u_fprintf(out, "iter.getText() != clone.getText()\n");
67 u_fprintf(out, "\n");
70 u_fprintf(out, "Forwar
[all...]
/external/valgrind/main/none/tests/x86/
H A Daad_aam.c19 unsigned short i,out; local
28 out=i;
35 :"=r"(out), "=r"(flags) /* outputs */
36 :"r"(out) /* input */
46 // printf("%d, %d, %d, ",i,(out>>8)&0xff,out&0xff);
50 if (zf && ((out&0xff)!=0)) {
53 if (pf != parity(out&0xff)) {
56 if (sf != !!(out&0x80)) {
61 if ( ((out>>
[all...]
/external/chromium_org/media/filters/
H A Din_memory_url_protocol_unittest.cc16 uint8 out[sizeof(kData)]; local
17 EXPECT_EQ(4, protocol.Read(sizeof(out), out));
18 EXPECT_EQ(0, memcmp(out, kData, sizeof(out)));
24 uint8 out[sizeof(kData)]; local
25 EXPECT_EQ(AVERROR(EIO), protocol.Read(-2, out));
31 uint8 out; local
32 EXPECT_EQ(0, protocol.Read(0, &out));
41 uint8 out; local
[all...]
/external/chromium_org/third_party/ots/src/
H A Dmaxp.cc77 bool ots_maxp_serialise(OTSStream *out, OpenTypeFile *file) { argument
80 if (!out->WriteU32(maxp->version_1 ? 0x00010000 : 0x00005000) ||
81 !out->WriteU16(maxp->num_glyphs)) {
87 if (!out->WriteU16(maxp->max_points) ||
88 !out->WriteU16(maxp->max_contours) ||
89 !out->WriteU16(maxp->max_c_points) ||
90 !out->WriteU16(maxp->max_c_contours)) {
95 if (!out->WriteU16(maxp->max_zones) ||
96 !out->WriteU16(maxp->max_t_points) ||
97 !out
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Djson.h30 bool GetIntFromJson(const Json::Value& in, int* out);
31 bool GetUIntFromJson(const Json::Value& in, unsigned int* out);
32 bool GetStringFromJson(const Json::Value& in, std::string* out);
33 bool GetBoolFromJson(const Json::Value& in, bool* out);
34 bool GetDoubleFromJson(const Json::Value& in, double* out);
36 // Pull values out of a JSON array.
38 Json::Value* out);
40 int* out);
42 unsigned int* out);
44 std::string* out);
[all...]

Completed in 1371 milliseconds

1234567891011>>