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

<<21222324252627282930>>

  /external/javassist/src/test/test/javassist/proxy/
ProxySerializationTest.java 37 ObjectOutputStream out = new ObjectOutputStream(bos); local
38 out.writeObject(proxy);
39 out.close();
64 ProxyObjectOutputStream out = new ProxyObjectOutputStream(bos); local
65 out.writeObject(proxy);
66 out.close();
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AbstractStoreFileCommandHandler.java 78 OutputStream out = file.createOutputStream(appendToOutputFile()); local
80 out.write(contents);
88 out.close();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
Spdy3ConnectionTest.java 81 BufferedSink out = Okio.buffer(stream.getSink()); local
82 out.writeUtf8("c3po");
83 out.close();
402 BufferedSink out = Okio.buffer(stream.getSink());
403 out.writeUtf8("square");
404 out.flush();
406 out.close();
408 out.writeUtf8("round");
445 BufferedSink out = Okio.buffer(stream.getSink());
448 out.writeUtf8("square")
    [all...]
  /external/okhttp/okio/okio/src/test/java/okio/
SocketTimeoutTest.java 123 private static void writeFully(OutputStream out, int byteCount) throws IOException {
124 out.write(new byte[byteCount]);
125 out.flush();
  /external/sl4a/Common/src/com/googlecode/android_scripting/event/
EventServer.java 98 if (!listener.out.checkError()) {
99 listener.out.write(result + "\n");
100 listener.out.flush();
111 private PrintWriter out; field in class:EventServer.Listener
116 out = new PrintWriter(l.getOutputStream(), true);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
ClassDataItem.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49 @Override public void annotateSection(@Nonnull AnnotatedBytes out) {
51 super.annotateSection(out);
60 protected void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
61 DexReader reader = dexFile.readerAt(out.getCursor());
64 out.annotateTo(reader.getOffset(), "static_fields_size = %d", staticFieldsSize);
67 out.annotateTo(reader.getOffset(), "instance_fields_size = %d", instanceFieldsSize);
70 out.annotateTo(reader.getOffset(), "direct_methods_size = %d", directMethodsSize);
73 out.annotateTo(reader.getOffset(), "virtual_methods_size = %d", virtualMethodsSize);
77 out.annotate(0, "static_fields:")
    [all...]
DebugInfoItem.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
52 public void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity) {
53 DexReader reader = dexFile.readerAt(out.getCursor());
56 out.annotateTo(reader.getOffset(), "line_start = %d", lineStart);
59 out.annotateTo(reader.getOffset(), "parameters_size = %d", parametersSize);
62 out.annotate(0, "parameters:");
63 out.indent();
66 out.annotateTo(reader.getOffset(), "%s",
69 out.deindent();
72 out.annotate(0, "debug opcodes:")
    [all...]
EncodedValue.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
41 public static void annotateEncodedValue(@Nonnull AnnotatedBytes out, @Nonnull DexReader reader) {
49 out.annotate(1, "valueArg = %d, valueType = 0x%x: byte", valueArg, valueType);
51 out.annotate(1, "value = 0x%x", intValue);
54 out.annotate(1, "valueArg = %d, valueType = 0x%x: short", valueArg, valueType);
56 out.annotate(valueArg + 1, "value = 0x%x", intValue);
59 out.annotate(1, "valueArg = %d, valueType = 0x%x: char", valueArg, valueType);
61 out.annotate(valueArg+1, "value = 0x%x", intValue);
64 out.annotate(1, "valueArg = %d, valueType = 0x%x: int", valueArg, valueType);
66 out.annotate(valueArg+1, "value = 0x%x", intValue)
    [all...]
SectionAnnotator.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 protected abstract void annotateItem(@Nonnull AnnotatedBytes out, int itemIndex, @Nullable String itemIdentity);
65 * Write out annotations for this section
67 * @param out The AnnotatedBytes object to annotate to
69 public void annotateSection(@Nonnull AnnotatedBytes out) {
70 out.moveTo(sectionOffset);
71 annotateSectionInner(out, itemCount);
74 protected void annotateSectionInner(@Nonnull AnnotatedBytes out, int itemCount) {
78 out.annotate(0, "");
79 out.annotate(0, "-----------------------------")
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/utils/
TypeReference.java 369 private static void toString(Type type, StringBuilder out) {
374 out.append(((TypeVariable<?>)type).getName());
378 out.append(klass.getName());
379 toString(klass.getTypeParameters(), out); local
384 out.append(((Class<?>)p.getRawType()).getName());
385 toString(p.getActualTypeArguments(), out); local
389 toString(gat.getGenericComponentType(), out); local
390 out.append("[]");
393 out.append(type.toString());
397 private static void toString(Type[] types, StringBuilder out) {
    [all...]
  /frameworks/base/core/java/android/net/
ScoredNetwork.java 114 * the scorer may choose to issue an out-of-band update at any time.
129 * the scorer may choose to issue an out-of-band update at any time.
146 * the scorer may choose to issue an out-of-band update at any time.
176 public void writeToParcel(Parcel out, int flags) {
177 networkKey.writeToParcel(out, flags);
179 out.writeByte((byte) 1);
180 rssiCurve.writeToParcel(out, flags);
182 out.writeByte((byte) 0);
184 out.writeByte((byte) (meteredHint ? 1 : 0));
185 out.writeBundle(attributes)
208 StringBuilder out = new StringBuilder( local
    [all...]
  /frameworks/base/core/java/android/print/
PrintFileDocumentAdapter.java 118 OutputStream out = new FileOutputStream(mDestination.getFileDescriptor()); local
130 out.write(buffer, 0, readByteCount);
138 IoUtils.closeQuietly(out);
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 103 OutputStream out = getContext().openFileOutput(DATA_FILE, Context.MODE_PRIVATE); local
104 out.write(TEST_BLOB);
105 out.close();
  /frameworks/base/core/tests/coretests/src/android/os/
FileObserverTest.java 80 FileOutputStream out = new FileOutputStream(mTestFile); local
82 out.write(0x20);
95 out.close();
  /frameworks/base/core/tests/utiltests/src/com/android/internal/util/
MessageUtilsTest.java 57 SparseArray<String> out = new SparseArray<>(); local
59 out.put(keys[i], values[i]);
61 return out;
  /frameworks/base/sax/tests/saxtests/src/android/sax/
ExpatPerformanceTest.java 46 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
50 out.write(buffer, 0, length);
52 mXmlBytes = out.toByteArray();
  /frameworks/base/services/core/java/com/android/server/pm/
PackageUsage.java 60 BufferedOutputStream out = new BufferedOutputStream(f); local
67 out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
80 out.write(sb.toString().getBytes(StandardCharsets.US_ASCII));
82 out.flush();
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
Owners.java 537 final XmlSerializer out = new FastXmlSerializer(); local
538 out.setOutput(outputStream, StandardCharsets.UTF_8.name());
541 out.startDocument(null, true);
542 out.startTag(null, TAG_ROOT);
545 writeInner(out);
548 out.endTag(null, TAG_ROOT);
549 out.endDocument();
550 out.flush();
615 abstract void writeInner(XmlSerializer out) throws IOException;
633 void writeInner(XmlSerializer out) throws IOException
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserManagerServiceUserInfoTest.java 78 DataOutputStream out = new DataOutputStream(baos); local
79 mUserManagerService.writeUserLP(data, out);
92 Parcel out = Parcel.obtain(); local
93 info.writeToParcel(out, 0);
94 byte[] data = out.marshall();
95 out.recycle();
  /frameworks/base/tests/testables/src/android/testing/
TestableSettingsProvider.java 78 Bundle out = new Bundle(); local
84 out.putString(Settings.NameValueTable.VALUE, value);
106 return out;
  /frameworks/base/tests/utils/testutils/java/com/android/internal/util/test/
FakeSettingsProvider.java 109 Bundle out = new Bundle(); local
119 out.putString(Settings.NameValueTable.VALUE, value);
138 return out;
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ComputeThresholdAction.java 139 PrintWriter out = new PrintWriter(f); local
141 out.println(s);
143 out.close();
  /frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/
DrawableUtils.java 36 FileOutputStream out = null; local
61 out = new FileOutputStream(outputFile, false);
62 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out);
67 if (out != null) {
68 out.close();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 72 ObjectOutputStream out = null; local
76 out = new ObjectOutputStream(bytes);
87 out.writeObject(dattribute);
89 out.writeObject(attribute);
109 if (out != null)
110 out.close();
DataFormatFieldTest.java 175 ObjectOutputStream out = null; local
179 out = new ObjectOutputStream(bytes);
190 out.writeObject(dfield);
191 out.writeObject(field);
215 if (out != null)
216 out.close();

Completed in 880 milliseconds

<<21222324252627282930>>