HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1026 - 1050 of 5424) sorted by null

<<41424344454647484950>>

  /external/conscrypt/common/src/main/java/org/conscrypt/
FileClientSessionCache.java 203 FileOutputStream out; local
205 out = new FileOutputStream(file);
222 out.write(sessionData);
229 out.close();
  /external/emma/core/java12/com/vladium/emma/rt/
InstrClassLoader.java 110 // if the class was on the forced delegation list, error out:
202 murle.printStackTrace (System.out);
304 public void debugDump (final PrintWriter out)
306 if (out != null)
308 out.println (this + ": " + m_cacheHits + " class cache hits, " + m_cacheMisses + " misses");
391 private static void readFully (final InputStream in, final ByteArrayOStream out, final byte [] buf)
396 out.write (buf, 0, read);
  /external/emma/tools/java/com/vladium/tools/
ClassDep.java 88 final FileOutputStream out = new FileOutputStream (outFile); local
93 result.store (out, "this file is auto-generated, do not edit");
95 out.close ();
  /external/guava/guava-tests/test/com/google/common/hash/
FunnelsTest.java 130 OutputStream out = Funnels.asOutputStream(sink); local
132 out.write(255);
133 out.write(bytes);
134 out.write(bytes, 1, 2);
  /external/guava/guava-tests/test/com/google/common/io/
ByteSourceTester.java 134 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
135 source.copyTo(out);
136 assertExpectedBytes(out.toByteArray());
140 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
145 return out;
148 assertExpectedBytes(out.toByteArray());
171 final ByteArrayOutputStream out = new ByteArrayOutputStream();
175 out.write(buf, off, len);
181 return out.toByteArray();
  /external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/
CoverageTransformerTest.java 241 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
245 out.write(buffer, 0, len);
248 return out.toByteArray();
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/
ExecFileLoaderTest.java 86 final OutputStream out = new FileOutputStream(file); local
87 out.write("invalid".getBytes());
88 out.close();
118 final FileOutputStream out = new FileOutputStream(file); local
119 final ExecutionDataWriter writer = new ExecutionDataWriter(out);
124 out.close();
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
ByteBuddyCrossClassLoaderSerializationSupport.java 174 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
175 ObjectOutputStream objectOutputStream = new MockitoMockObjectOutputStream(out);
180 out.close();
183 this.serializedMock = out.toByteArray();
347 public MockitoMockObjectOutputStream(ByteArrayOutputStream out) throws IOException {
348 super(out);
  /external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
ClassDefinitionUtils.java 182 BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(fileName)); local
184 out.write(bytes);
187 out.close();
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/framed/
FramedServer.java 119 System.out.println(e.getMessage());
130 BufferedSink out = Okio.buffer(stream.getSink()); local
131 out.writeUtf8("Not found: " + path);
132 out.close();
142 BufferedSink out = Okio.buffer(stream.getSink()); local
145 out.writeUtf8("<a href='" + target + "'>" + target + "</a><br>");
147 out.close();
159 BufferedSink out = Okio.buffer(stream.getSink()); local
160 out.writeAll(source);
161 out.close()
    [all...]
  /external/okhttp/okio/okio/src/test/java/okio/
RealBufferedSinkTest.java 33 OutputStream out = sink.outputStream(); local
34 out.close();
SegmentSharingTest.java 67 Buffer out = new Buffer(); local
68 byteString.write(out.outputStream());
69 assertEquals(xs + ys + zs, out.readUtf8());
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
AbstractMessageLite.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
55 final ByteString.CodedBuilder out = local
57 writeTo(out.getCodedOutput());
58 return out.build();
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
HttpFacade.java 60 private void inputStreamToOutputStream(InputStream in, OutputStream out) throws IOException {
65 if (out == null) {
73 out.write(bytes, 0, read);
79 out.close();
156 // Try to figure out the name of the file being downloaded.
  /external/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();
  /frameworks/base/core/java/android/app/timezone/
RulesState.java 216 public void writeToParcel(Parcel out, int flags) {
217 out.writeString(mSystemRulesVersion);
218 out.writeParcelable(mDistroFormatVersionSupported, 0);
219 out.writeByte(mOperationInProgress ? BYTE_TRUE : BYTE_FALSE);
220 out.writeByte((byte) mStagedOperationType);
221 out.writeParcelable(mStagedDistroRulesVersion, 0);
222 out.writeByte((byte) mDistroStatus);
223 out.writeParcelable(mInstalledDistroRulesVersion, 0);
  /frameworks/base/core/java/android/gesture/
GestureStore.java 226 DataOutputStream out = null; local
236 out = new DataOutputStream((stream instanceof BufferedOutputStream) ? stream :
239 out.writeShort(FILE_FORMAT_VERSION);
241 out.writeInt(maps.size());
249 out.writeUTF(key);
251 out.writeInt(count);
254 examples.get(i).serialize(out);
258 out.flush();
267 if (closeStream) GestureUtils.closeStream(out);
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 146 public void writeToParcel(Parcel out, int flags) {
147 out.writeString(user);
148 out.writeString(interfaze);
149 out.writeString(session);
150 out.writeInt(mtu);
151 out.writeTypedList(addresses);
152 out.writeTypedList(routes);
153 out.writeStringList(dnsServers);
154 out.writeStringList(searchDomains);
155 out.writeStringList(allowedApplications)
    [all...]
  /frameworks/base/core/tests/utiltests/src/com/android/internal/util/
FileRotatorTest.java 190 public void write(OutputStream out) throws IOException {
191 new DataOutputStream(out).writeUTF("bar");
384 final OutputStream out = new FileOutputStream(new File(mBasePath, name)); local
385 out.close();
390 final DataOutputStream out = new DataOutputStream( local
392 out.writeUTF(value);
393 out.close();
398 public void write(OutputStream out) throws IOException {
399 new DataOutputStream(out).writeUTF(value);
  /frameworks/base/media/java/android/media/
AmrInputStream.java 140 ByteBuffer out = mCodec.getOutputBuffer(index); local
141 out.get(mBuf, 0 /* offset */, mBufIn /* length */);
  /frameworks/base/obex/javax/obex/
HeaderSet.java 30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
577 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
580 out.write(COUNT);
583 out.write(NAME);
586 out.write(TYPE);
589 out.write(LENGTH);
592 out.write(TIME_ISO_8601);
595 out.write(TIME_4_BYTE);
598 out.write(DESCRIPTION);
601 out.write(TARGET)
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
OMAConstructed.java 138 public void marshal(OutputStream out, int level) throws IOException {
139 OMAConstants.indent(level, out);
140 OMAConstants.serializeString(getName(), out); local
142 out.write(String.format("(%s)", getContext()).getBytes(StandardCharsets.UTF_8));
144 out.write(new byte[]{'+', '\n'});
147 child.marshal(out, level + 1);
149 OMAConstants.indent(level, out);
150 out.write(".\n".getBytes(StandardCharsets.UTF_8));
  /frameworks/base/services/backup/java/com/android/server/backup/
KeyValueAdbRestoreEngine.java 126 private void copyKeysInLexicalOrder(BackupDataInput in, BackupDataOutput out)
144 out.writeEntityHeader(key, value.length);
145 out.writeEntityData(value, value.length);
  /frameworks/base/services/core/java/com/android/server/pm/
ShortcutPackageInfo.java 154 public void saveToXml(XmlSerializer out) throws IOException {
156 out.startTag(null, TAG_ROOT);
158 ShortcutService.writeAttr(out, ATTR_VERSION, mVersionCode);
159 ShortcutService.writeAttr(out, ATTR_LAST_UPDATE_TIME, mLastUpdateTime);
160 ShortcutService.writeAttr(out, ATTR_SHADOW, mIsShadow);
163 out.startTag(null, TAG_SIGNATURE);
165 ShortcutService.writeAttr(out, ATTR_SIGNATURE_HASH, encoded);
166 out.endTag(null, TAG_SIGNATURE);
168 out.endTag(null, TAG_ROOT);
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
ShortcutManagerTest7.java 63 final File out = File.createTempFile("shellout-", ".tmp", local
66 try (final ParcelFileDescriptor fd = ParcelFileDescriptor.open(out,
74 return readAll(out);
76 out.delete();

Completed in 484 milliseconds

<<41424344454647484950>>