HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 726 - 750 of 3043) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePart.java 184 * @param out The output stream
189 protected void sendDispositionHeader(OutputStream out)
191 LOG.trace("enter sendDispositionHeader(OutputStream out)");
192 super.sendDispositionHeader(out);
195 out.write(FILE_NAME_BYTES);
196 out.write(QUOTE_BYTES);
197 out.write(EncodingUtils.getAsciiBytes(filename));
198 out.write(QUOTE_BYTES);
204 * @param out The output stream.
209 protected void sendData(OutputStream out) throws IOException
    [all...]
  /frameworks/base/core/java/com/android/internal/net/
LegacyVpnInfo.java 51 public void writeToParcel(Parcel out, int flags) {
52 out.writeString(key);
53 out.writeInt(state);
54 out.writeParcelable(intent, flags);
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarIcon.java 75 public void writeToParcel(Parcel out, int flags) {
76 out.writeString(this.iconPackage);
77 out.writeParcelable(this.user, 0);
78 out.writeInt(this.iconId);
79 out.writeInt(this.iconLevel);
80 out.writeInt(this.visible ? 1 : 0);
81 out.writeInt(this.number);
82 out.writeCharSequence(this.contentDescription);
  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 64 FileDescriptor[] out = ls1.getAncillaryFileDescriptors(); local
66 assertEquals(1, out.length);
85 // Try various array-out-of-bound cases
SSLTest.java 34 OutputStream out = ssl.getOutputStream(); local
35 assertNotNull(out);
42 // System.out.println("going for write...");
43 out.write(get.getBytes());
46 // System.out.println("going for read...");
49 // System.out.println(new String(b));
  /frameworks/base/libs/hwui/
TreeInfo.h 82 // textures if we run out of cache space.
101 struct Out {
102 Out()
122 } out; member in class:android::uirenderer::TreeInfo
  /frameworks/base/media/mca/filterfw/native/core/
geometry.cpp 46 Point out; local
47 out.x_ = x_ + other.x_;
48 out.y_ = y_ + other.y_;
49 return out;
53 Point out; local
54 out.x_ = x_ - other.x_;
55 out.y_ = y_ - other.y_;
56 return out;
60 Point out; local
61 out.x_ = factor * x_
    [all...]
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.cpp 45 Point out; local
46 out.x_ = x_ + other.x_;
47 out.y_ = y_ + other.y_;
48 return out;
52 Point out; local
53 out.x_ = x_ - other.x_;
54 out.y_ = y_ - other.y_;
55 return out;
59 Point out; local
60 out.x_ = factor * x_
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DurableUtils.java 33 final ByteArrayOutputStream out = new ByteArrayOutputStream(); local
34 d.write(new DataOutputStream(out));
35 return out.toByteArray();
85 public static void writeNullableString(DataOutputStream out, String value) throws IOException {
87 out.write(1);
88 out.writeUTF(value);
90 out.write(0);
  /frameworks/base/services/core/java/com/android/server/
RandomBlock.java 67 RandomAccessFile out = null; local
69 out = new RandomAccessFile(filename, sync ? "rws" : "rw");
70 toDataOut(out);
71 truncateIfPossible(out);
73 close(out);
87 private void toDataOut(DataOutput out) throws IOException {
88 out.write(block);
  /frameworks/base/services/core/java/com/android/server/accounts/
AccountAuthenticatorCache.java 84 public void writeAsXml(AuthenticatorDescription item, XmlSerializer out)
86 out.attribute(null, "type", item.type);
  /frameworks/base/telecomm/java/android/telecom/
StatusHints.java 94 public void writeToParcel(Parcel out, int flags) {
95 out.writeParcelable(mPackageName, flags);
96 out.writeCharSequence(mLabel);
97 out.writeInt(mIconResId);
98 out.writeParcelable(mExtras, 0);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 56 return "Out of memory when create DataLayout during compilation.";
173 // FIXME: Figure out which passes should be executed.
306 llvm::raw_ostream *out = pResult.dup(); local
307 if (out == NULL) {
312 enum Compiler::ErrorCode err = compile(pScript, *out, IRStream);
315 delete out;
  /frameworks/multidex/library/src/android/support/multidex/
MultiDexExtractor.java 289 ZipOutputStream out = null; local
294 out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(tmp)));
299 out.putNextEntry(classesDex);
304 out.write(buffer, 0, length);
307 out.closeEntry();
309 out.close();
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
idct8x8_test.cc 85 double out[64], out2[64]; local
93 out[j + i*8] = temp_out[j];
99 temp_in[j] = out[j*8 + i];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
EbmlWriter.c 125 signed long out = ((val & 0x003FFFFF) | 0x00200000) << 8; local
126 Ebml_Serialize(glob, &out, sizeof(out), 3);
  /hardware/libhardware_legacy/audio/
AudioHardwareStub.cpp 48 AudioStreamOutStub* out = new AudioStreamOutStub(); local
49 status_t lStatus = out->set(format, channels, sampleRate);
54 return out;
55 delete out;
59 void AudioHardwareStub::closeOutputStream(AudioStreamOut* out)
61 delete out;
  /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/java/io/
ByteArrayOutputStream.java 223 * {@code out}.
225 * @param out
228 * if an error occurs while writing to {@code out}.
230 public synchronized void writeTo(OutputStream out) throws IOException {
231 out.write(buf, 0, count);
CharArrayWriter.java 222 * @param out
225 * if {@code out} is {@code null}.
227 * if an error occurs attempting to write out the contents.
229 public void writeTo(Writer out) throws IOException {
231 out.write(buf, 0, count);
FileDescriptor.java 40 public static final FileDescriptor out = new FileDescriptor(); field in class:FileDescriptor
55 out.descriptor = STDOUT_FILENO;
67 * is written out to the appropriate device before returning.
PipedInputStream.java 40 * range {@code [out, in)} and written to the range {@code [in, out)}.
45 * out in</pre>
50 * in out</pre>
53 * {@code in == out}. Writing when the buffer is full will block until free
66 protected int out; field in class:PipedInputStream
87 * {@link PipedOutputStream} {@code out}. Any data written to the output
90 * @param out
93 * if this stream or {@code out} are already connected.
95 public PipedInputStream(PipedOutputStream out) throws IOException
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
XMLParser.java 150 BufferedWriter out = new BufferedWriter(new OutputStreamWriter(stream, "UTF-8")); local
151 out.write(HEADER);
152 out.newLine();
153 out.newLine();
155 out.write(DOCTYPE);
156 out.write(" '");
157 out.write(PREFS_DTD_NAME);
158 out.write("'>");
159 out.newLine();
160 out.newLine()
480 BufferedWriter out = null; local
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 83 out.write(Deflater.DEFLATED);
84 out.write(0); // flags
86 out.write(0); // extra flags
87 out.write(0); // operating system
91 * Indicates to the stream that all data has been written out, and any GZIP
115 // Write out the long value as an unsigned int
117 out.write(unsigned & 0xFF);
118 out.write((unsigned >> 8) & 0xFF);
119 out.write((unsigned >> 16) & 0xFF);
120 out.write((unsigned >> 24) & 0xFF)
    [all...]

Completed in 104 milliseconds

<<21222324252627282930>>