/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,
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/ |
PsdFile.java | 68 DataOutputStream out = new DataOutputStream(new BufferedOutputStream(stream)); local 70 mHeader.write(out); 71 out.flush(); 73 mColorMode.write(out); 74 mImageResources.write(out); 75 mLayersMasksInfo.write(out); 76 mLayersInfo.write(out); 77 out.flush(); 79 mLayersInfo.writeImageData(out); 80 out.flush() [all...] |
/system/extras/ext4_utils/ |
ext2simg.c | 121 const char *out = NULL; local 158 out = argv[optind++]; 179 if (strcmp(out, "-")) { 180 outfd = open(out, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, 0644);
|
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/ |
AdoptableHostTest.java | 153 CollectingOutputReceiver out = new CollectingOutputReceiver(); local 154 getDevice().executeShellCommand("pm move-primary-storage " + vol.uuid, out, 2, 156 assertSuccess(out.getOutput()); 173 out = new CollectingOutputReceiver(); 174 getDevice().executeShellCommand("pm move-primary-storage internal", out, 2, 176 assertSuccess(out.getOutput());
|
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/ |
DocumentsClientTestCase.java | 114 OutputStream out = getInstrumentation().getContext().getContentResolver() local 117 out.write(data); 119 out.close();
|