Searched refs:out (Results 351 - 375 of 722) sorted by relevance

<<11121314151617181920>>

/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DCertificateRequest.java130 * @param out
133 public void send(HandshakeIODataStream out) { argument
135 out.writeUint8(certificate_types.length);
137 out.write(certificate_types[i]);
143 out.writeUint16(authoritiesLength);
145 out.writeUint16(encoded_principals[i].length);
146 out.write(encoded_principals[i]);
H A DClientKeyExchange.java124 * @param out
127 public void send(HandshakeIODataStream out) { argument
130 out.writeUint16(exchange_keys.length);
132 out.write(exchange_keys);
H A DHelloRequest.java57 * @param out
60 public void send(HandshakeIODataStream out) { argument
H A DMessage.java52 * @param out
54 abstract void send(HandshakeIODataStream out); argument
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DRuntime.java110 System.out.println("Runtime paths:");
118 System.out.println(" " + mLibPaths[i]);
341 // Get out of here finally...
455 System.out.println("Trying " + mLibPaths[i] + filename);
712 // Get out of here...
749 ByteArrayOutputStream out = new ByteArrayOutputStream(256); field in class:ReaderInputStream
762 writer = new OutputStreamWriter(out, encoding);
789 bytes = out.toByteArray();
807 private PipedOutputStream out; field in class:WriterOutputStream
821 out
[all...]
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DCharset_AbstractTest.java96 System.out.format("\ntest_dumpEncodableChars() for name %s => %s (class = %s)\n",
98 Charset_TestGenerator.Dumper out = new Charset_TestGenerator.Dumper1(16);
103 out.consume(code);
110 out.consume(code);
114 System.out.println();
115 System.out.println("Encodable Chars dumped for Test Class " + getClass().getName());
128 System.out.format("\ntest_dumpEncoded() for name %s => %s (class = %s)\n",
130 Charset_TestGenerator.Dumper out = new Charset_TestGenerator.Dumper1();
137 out.consume(outputBB.get() & 0xff);
139 System.out
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DOFBBlockCipher.java121 * the out array.
125 * @param out the array the output data will be copied into.
126 * @param outOff the offset into the out array the output will start at.
128 * space in out.
135 byte[] out,
144 if ((outOff + blockSize) > out.length)
157 out[outOff + i] = (byte)(ofbOutV[i] ^ in[inOff + i]);
132 processBlock( byte[] in, int inOff, byte[] out, int outOff) argument
/dalvik/libcore/xml/src/test/java/tests/xml/
H A DDeclarationTest.java64 OutputStream out = new FileOutputStream(file);
65 out.write(contents.getBytes("UTF-8"));
66 out.close();
/dalvik/dx/src/com/android/dx/dex/code/
H A DZeroSizeInsn.java47 public final void writeTo(AnnotatedOutput out) { argument
/dalvik/hit/src/com/android/hit/
H A DStackTrace.java61 System.out.println(mFrames[i].toString());
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DPack200.java215 * @param out
220 void pack(JarFile in, OutputStream out) throws IOException; argument
228 * @param out
233 void pack(JarInputStream in, OutputStream out) throws IOException; argument
296 * @param out
301 void unpack(InputStream in, JarOutputStream out) throws IOException; argument
309 * @param out
314 void unpack(File in, JarOutputStream out) throws IOException; argument
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DElemFallback.java106 System.out.println(
/dalvik/tests/003-omnibus-opcodes/src/
H A DArray.java73 System.out.println("Array.checkRange32");
128 System.out.println("Array.checkRange64");
175 System.out.println("Array.checkNegAlloc");
195 System.out.println("Array check...");
/dalvik/vm/
H A DMisc.h46 union { u4 in; float out; } conv; member in union:__anon43
48 return conv.out;
51 union { float in; u4 out; } conv; member in union:__anon44
53 return conv.out;
139 bool expandable; /* expand bitmap if we run out? */
149 * dvmAllocBit always allocates the first possible bit. If we run out of
/dalvik/dx/src/com/android/dx/command/dump/
H A DDotDumper.java127 System.out.println("digraph " + name + "{");
129 System.out.println("\tfirst -> n"
141 System.out.println("\tn" + Hex.u2(label) + " -> returns;");
143 System.out.println("\tn" + Hex.u2(label) + " -> n"
146 System.out.print("\tn" + Hex.u2(label) + " -> {");
151 System.out.print(" n" + Hex.u2(successor) + " ");
155 System.out.println("};");
157 System.out.println("\tn" + Hex.u2(label) + " -> n"
165 System.out.println("}");
/dalvik/libcore/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java118 FileOutputStream out = new FileOutputStream(dest);
122 out.write(buf, 0, result);
125 out.close();
168 * @param out - OutputStream to write to.
169 * @return - number of bytes written to out.
171 public static int writeResourceToStream(String name, OutputStream out) { argument
179 out.write(buffer, 0, count);
210 File f = File.createTempFile("out", ".xml");
212 FileOutputStream out = new FileOutputStream(f);
217 out
[all...]
/dalvik/libcore/security/src/test/java/tests/api/javax/security/auth/
H A DSubjectDomainCombinerTest.java216 System.out.println("=========== c_pd");
218 System.out.println("=========== a_pd");
220 System.out.println("=========== r_pd");
222 System.out.println("===========");
312 System.out.println("=========== c_pd");
314 System.out.println("=========== a_pd");
316 System.out.println("=========== r_pd");
318 System.out.println("===========");
394 System.out.println("=========== c_pd");
396 System.out
[all...]
/dalvik/tools/hprof-conv/
H A DHprofConv.c18 * Strip Android-specific records out of hprof data, back-converting from
247 static int ebWriteData(ExpandBuf* pBuf, FILE* out) argument
254 actual = fwrite(pBuf->storage, 1, pBuf->curLen, out);
424 * data to "out".
426 static int processHeapDump(ExpandBuf* pBuf, FILE* out) argument
560 if (ebWriteData(pOutBuf, out) != 0)
573 static int filterData(FILE* in, FILE* out) argument
595 if (ebWriteData(pBuf, out) != 0)
605 if (ebWriteData(pBuf, out) != 0)
647 if (processHeapDump(pBuf, out) !
671 FILE* out = stdout; local
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DUtil.java231 public static String convertUTF8WithBuf(byte[] buf, char[] out, int offset, argument
235 if ((out[s] = (char) buf[offset + count++]) < '\u0080')
237 else if (((a = out[s]) & 0xe0) == 0xc0) {
247 out[s++] = (char) (((a & 0x1F) << 6) | (b & 0x3F));
259 out[s++] = (char) (((a & 0x0F) << 12) | ((b & 0x3F) << 6) | (c & 0x3F));
265 return new String(out, 0, s);
296 ByteArrayOutputStream out = new ByteArrayOutputStream();
302 out.reset();
313 out.write((byte) ((d1 << 4) + d2));
317 result.append(out
[all...]
/dalvik/dx/src/com/android/dx/dex/code/form/
H A DForm10t.java87 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
90 write(out, opcodeUnit(insn, (offset & 0xff)));
H A DForm11x.java78 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
80 write(out, opcodeUnit(insn, regs.get(0).getReg()));
H A DForm20t.java87 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
90 write(out, opcodeUnit(insn, 0), (short) offset);
H A DForm21t.java92 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
96 write(out,
H A DForm22x.java80 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
82 write(out,
H A DForm23x.java82 public void writeTo(AnnotatedOutput out, DalvInsn insn) { argument
84 write(out,

Completed in 901 milliseconds

<<11121314151617181920>>