HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 926 - 950 of 4560) sorted by null

<<31323334353637383940>>

  /frameworks/base/tests/SoundTriggerTests/src/android/hardware/soundtrigger/stubhal/
GenericSoundModelTest.java 166 DataOutputStream out = new DataOutputStream(socket.getOutputStream()); local
167 out.writeBytes("trig " + model.uuid.toString() + "\r\n");
168 out.flush();
242 DataOutputStream out = new DataOutputStream(socket.getOutputStream()); local
243 out.writeBytes("trig " + modelInfo.model.uuid + "\r\n");
244 out.flush();
  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
Hprof.java 134 System.out.println(e);
151 System.out.println("GetHprof.onEndFailure");
167 System.out.println("GetHprof.onSuccess");
183 System.out.println("GetHprof.onSuccess");
187 BufferedOutputStream out = local
189 out.write(arg0);
190 out.close();
212 System.out.println("Dump file is " + hprofLocalFile);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
OMAConstructed.java 141 public void marshal(OutputStream out, int level) throws IOException {
142 OMAConstants.indent(level, out);
143 OMAConstants.serializeString(getName(), out); local
145 out.write(String.format("(%s)", getContext()).getBytes(StandardCharsets.UTF_8));
147 out.write(new byte[] { '+', '\n' });
150 child.marshal(out, level + 1);
152 OMAConstants.indent(level, out);
153 out.write(".\n".getBytes(StandardCharsets.UTF_8));
  /frameworks/volley/src/main/java/com/android/volley/toolbox/
HurlStack.java 219 DataOutputStream out = new DataOutputStream(connection.getOutputStream()); local
220 out.write(postBody);
221 out.close();
264 DataOutputStream out = new DataOutputStream(connection.getOutputStream()); local
265 out.write(body);
266 out.close();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessManagerTest.java 39 OutputStream out = process.getOutputStream(); local
41 out.write(greeting.getBytes());
42 out.write('\n');
43 out.close();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
GZIPInputStreamTest.java 138 // System.out.println(orgBuf[i] + " " + outBuf[i]);
147 // line below fails on RI also, comment out.
161 GZIPOutputStream out = new GZIPOutputStream(bout); local
162 out.write(test);
163 out.close();
271 FileOutputStream out = new FileOutputStream(f); local
272 GZIPOutputStream gout = new GZIPOutputStream(out);
279 out.write(1);
280 out.close();
  /libcore/json/src/main/java/org/json/
JSONStringer.java 64 final StringBuilder out = new StringBuilder(); field in class:JSONStringer
175 if (stack.isEmpty() && out.length() > 0) {
180 out.append(openBracket);
198 out.append(closeBracket);
246 out.append(value);
249 out.append(JSONObject.numberToString((Number) value));
268 out.append(value);
284 out.append(JSONObject.numberToString(value));
298 out.append(value);
303 out.append("\"")
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 66 PipedOutputStream out = new PipedOutputStream(); local
67 PipedInputStream in = new PipedInputStream(out);
72 PipedOutputStream out = new PipedOutputStream(); local
73 new PipedInputStream(out);
74 testInterruptOutputStream(out);
153 private void testInterruptOutputStream(final OutputStream out) throws Exception {
158 out.write(new byte[BUFFER_SIZE]);
  /libcore/luni/src/test/java/libcore/java/net/
OldUnixSocketTest.java 51 OutputStream out = worker.getOutputStream(); local
52 out.write(new byte[42]);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_AbstractTest.java 79 System.out.format("\ntest_dumpEncodableChars() for name %s => %s (class = %s)\n",
81 Charset_TestGenerator.Dumper out = new Charset_TestGenerator.Dumper1(16); local
86 out.consume(code);
93 out.consume(code);
97 System.out.println();
98 System.out.println("Encodable Chars dumped for Test Class " + getClass().getName());
106 System.out.format("\ntest_dumpEncoded() for name %s => %s (class = %s)\n",
108 Charset_TestGenerator.Dumper out = new Charset_TestGenerator.Dumper1(); local
115 out.consume(outputBB.get() & 0xff);
117 System.out.println()
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPInputStreamTest.java 198 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
202 out.write(buffer, 0, count);
205 byte[] outArray = out.toByteArray();
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherInputStreamTest.java 166 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
170 out.write(buffer, 0, count);
172 return out.toByteArray();
  /libcore/ojluni/src/main/java/sun/security/pkcs/
ContentInfo.java 177 public void encode(DerOutputStream out) throws IOException {
196 out.write(DerValue.tag_Sequence, seq);
212 String out = ""; local
214 out += "Content Info Sequence\n\tContent type: " + contentType + "\n";
215 out += "\tContent: " + content;
216 return out;