/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
HprofBinaryToAscii.java | 33 * java -classpath out/target/common/obj/JAVA_LIBRARIES/core_intermediates/classes.jar 65 System.out.println("Problem reading binary hprof data from " 76 System.out.println("Problem reading snapshot containing binary hprof data from " 163 AsciiHprofWriter.write(hprofData, System.out); 165 System.out.println("Problem writing ASCII hprof data: " + e.getMessage()); 175 System.out.print("ERROR: "); 176 System.out.println(error); 177 System.out.println(); 178 System.out.println("usage: HprofBinaryToAscii <binary-hprof-file>"); 179 System.out.println() [all...] |
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
ChunkHandler.java | 65 ByteBuffer out = ByteBuffer.allocate(8 + msg.length() * 2); local 66 out.order(ChunkHandler.CHUNK_ORDER); 67 out.putInt(errorCode); 68 out.putInt(msg.length()); 69 putString(out, msg); 71 return new Chunk(CHUNK_FAIL, out); 87 * Utility function to copy a String out of a ByteBuffer.
|
/libcore/luni/src/main/java/libcore/reflect/ |
Types.java | 93 * Appends the best {@link #toString} name for {@code c} to {@code out}. 99 public static void appendTypeName(StringBuilder out, Class<?> c) { 105 out.append(c.getName()); 107 out.append("[]"); 112 * Appends names of the {@code types} to {@code out} separated by commas. 114 public static void appendArrayGenericType(StringBuilder out, Type[] types) { 118 appendGenericType(out, types[0]); 120 out.append(','); 121 appendGenericType(out, types[i]); 125 public static void appendGenericType(StringBuilder out, Type type) [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
OldAndroidPipedStreamTest.java | 43 final PipedOutputStream out = new PipedOutputStream(in); local 80 out.write(toWrite); 82 out.close(); 110 final PipedOutputStream out = new PipedOutputStream(in); local 165 out.write(writeBytes, 0, writeBytes.length); 167 out.close(); 195 final PipedOutputStream out = new PipedOutputStream(in); local 236 out.write(writeBytes, 0, writeBytes.length); 237 out.close();
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldErrorManagerTest.java | 28 private final PrintStream out = System.out; field in class:OldErrorManagerTest 32 System.setOut(out);
|
/libcore/luni/src/test/java/libcore/util/ |
SerializationTester.java | 83 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 84 new ObjectOutputStream(out).writeObject(object); 85 return out.toByteArray();
|
/libcore/ojluni/src/main/java/java/io/ |
ByteArrayOutputStream.java | 148 * stream's write method using <code>out.write(buf, 0, count)</code>. 150 * @param out the output stream to which to write the data. 153 public synchronized void writeTo(OutputStream out) throws IOException { 154 out.write(buf, 0, count);
|
CharArrayWriter.java | 132 * @param out the output stream to write to 135 public void writeTo(Writer out) throws IOException { 137 out.write(buf, 0, count); 144 * <p> An invocation of this method of the form <tt>out.append(csq)</tt> 148 * out.write(csq.toString()) </pre> 174 * <p> An invocation of this method of the form <tt>out.append(csq, start, 179 * out.write(csq.subSequence(start, end).toString()) </pre> 212 * <p> An invocation of this method of the form <tt>out.append(c)</tt> 216 * out.write(c) </pre>
|
/libcore/ojluni/src/main/java/java/security/ |
UnresolvedPermissionCollection.java | 155 * Writes the contents of the perms field out as a Hashtable 159 private void writeObject(ObjectOutputStream out) throws IOException { 160 // Don't call out.defaultWriteObject() 182 // Write out serializable fields 183 ObjectOutputStream.PutField pfields = out.putFields(); 185 out.writeFields();
|
/libcore/ojluni/src/main/java/java/util/logging/ |
SocketHandler.java | 161 OutputStream out = sock.getOutputStream(); local 162 BufferedOutputStream bout = new BufferedOutputStream(out);
|
/libcore/ojluni/src/main/java/sun/security/ec/ |
ECPrivateKeyImpl.java | 89 DerOutputStream out = new DerOutputStream(); local 90 out.putInteger(1); // version 1 92 out.putOctetString(privBytes); 94 new DerValue(DerValue.tag_Sequence, out.toByteArray());
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
BuildStep.java | 54 * represents an unsuccessful path, so the certificate has been backed out 196 resultString = "Certificate backed out since path does not " 203 resultString = "Certificate backed out since path does not " 223 String out = "Internal Error\n"; local 227 out = resultToString(result); 228 out = out + vertex.throwableToString(); 233 out = resultToString(result); 236 out = "Internal Error: Invalid step result\n"; 238 return out; 249 String out = resultToString(getResult()); local [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
AccessDescription.java | 76 public void encode(DerOutputStream out) throws IOException { 80 out.write(DerValue.tag_Sequence, tmp);
|
GeneralNames.java | 111 * @param out the DerOutputStream to write the extension to. 114 public void encode(DerOutputStream out) throws IOException { 123 out.write(DerValue.tag_Sequence, temp);
|
GeneralSubtree.java | 190 * @params out the DerOutputStream to encode this object to. 192 public void encode(DerOutputStream out) throws IOException { 209 out.write(DerValue.tag_Sequence, seq);
|
InhibitAnyPolicyExtension.java | 98 DerOutputStream out = new DerOutputStream(); local 99 out.putInteger(skipCerts); 100 this.extensionValue = out.toByteArray(); 170 * @param out the DerOutputStream to encode the extension to. 172 public void encode(OutputStream out) throws IOException { 181 out.write(tmp.toByteArray());
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestTrustManager.java | 38 private static final PrintStream out = LOG ? System.out : new NullPrintStream(); field in class:TestTrustManager 61 out.println("TestTrustManager.<init> extendedTrustManager=" + trustManager); 67 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...] |
/libcore/support/src/test/java/tests/support/ |
Support_Exec.java | 76 * Starts the specified process, collects its output from standard out and 93 String out = ""; local 95 out = outFuture.get(30, TimeUnit.SECONDS); 106 "Failed to execute " + builder.command() + "; output was:\n" + out); 110 return out; 119 * 'expectedOut' on stdout and 'expectedErr' on stderr. Times out after
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_codecvt.h | 62 result out(state_type& __state, function 182 result out(state_type& __state, 279 result out(state_type& __state,
|
/packages/apps/Email/src/com/beetstra/jutf7/ |
UTF7StyleCharsetDecoder.java | 20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
72 if (!out.hasRemaining())
74 out.put((char)shift);
79 if (!out.hasRemaining())
81 CoderResult result = handleBase64(in, out, b);
94 if (!out.hasRemaining())
96 out.put((char)b);
115 * @param out The output buffer
120 private CoderResult handleBase64(ByteBuffer in, CharBuffer out, byte lastRead) { [all...] |
UTF7StyleCharsetEncoder.java | 20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
102 * @param out The output byte buffer
105 protected CoderResult implFlush(ByteBuffer out) {
107 if (out.remaining() < 2)
110 out.put(base64.getChar(sextet));
111 out.put(unshift);
141 * @param out The output byte buffer
144 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) {
146 if (out.remaining() < 4)
150 unshift(out, ch); [all...] |
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/ |
Romkan.java | 188 StrSegment[] out; local 190 out = new StrSegment[1]; 191 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 192 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 194 out = new StrSegment[2]; 195 out[0] = new StrSegment(match.substring(0, match.length() - 1), 197 out[1] = new StrSegment(match.substring(match.length() - 1), 199 text.replaceStrSegment(1, out, MAX_LENGTH - start);
|
RomkanFullKatakana.java | 192 StrSegment[] out; local 194 out = new StrSegment[1]; 195 out[0] = new StrSegment(match, str[start].from, str[MAX_LENGTH - 1].to); 196 text.replaceStrSegment(ComposingText.LAYER1, out, MAX_LENGTH - start); 198 out = new StrSegment[2]; 199 out[0] = new StrSegment(match.substring(0, match.length() - 1), 201 out[1] = new StrSegment(match.substring(match.length() - 1), 203 text.replaceStrSegment(1, out, MAX_LENGTH - start);
|
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
DataCollector.java | 315 OutputStream out = new FileOutputStream(file); local 316 saveProcessOutput(command, out); 317 out.close(); 325 public void saveProcessOutput(String command, OutputStream out) throws IOException { 338 out.write(buffer, 0, bytesRead); 344 if (out != null) { 345 out.flush();
|
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
_codecvt.h | 62 result out(state_type& __state, function 182 result out(state_type& __state, 279 result out(state_type& __state,
|