HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 701 - 725 of 3019) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/java/android/ddm/
DdmHandleThread.java 160 ByteBuffer out = ByteBuffer.allocate(bufferSize); local
161 out.putInt(0);
162 out.putInt(threadId);
163 out.putInt(trace.length);
165 out.putInt(elem.getClassName().length());
166 putString(out, elem.getClassName());
167 out.putInt(elem.getMethodName().length());
168 putString(out, elem.getMethodName());
170 out.putInt(elem.getFileName().length());
171 putString(out, elem.getFileName())
    [all...]
  /frameworks/base/core/java/android/os/
FileUtils.java 186 FileOutputStream out = new FileOutputStream(destFile); local
191 out.write(buffer, 0, bytesRead);
194 out.flush();
196 out.getFD().sync();
199 out.close();
287 FileWriter out = new FileWriter(filename); local
289 out.write(string);
291 out.close();
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 140 CharSequence out = super.filter(source, start, end, dest, dstart, dend); local
143 return out;
146 if (out != null) {
147 source = out;
149 end = out.length();
157 * Find out if the existing text has a sign or decimal point characters.
180 * If it does, we must strip them out from the source.
223 } else if (out != null) {
224 return out;
  /frameworks/base/core/java/com/android/internal/app/
HeavyWeightSwitcherActivity.java 87 TypedValue out = new TypedValue(); local
88 getTheme().resolveAttribute(android.R.attr.alertDialogIcon, out, true);
90 out.resourceId);
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePart.java 189 * @param out The output stream
194 protected void sendDispositionHeader(OutputStream out)
196 LOG.trace("enter sendDispositionHeader(OutputStream out)");
197 super.sendDispositionHeader(out);
200 out.write(FILE_NAME_BYTES);
201 out.write(QUOTE_BYTES);
202 out.write(EncodingUtils.getAsciiBytes(filename));
203 out.write(QUOTE_BYTES);
209 * @param out The output stream.
214 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 309 ZipOutputStream out = null; local
314 out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(tmp)));
319 out.putNextEntry(classesDex);
324 out.write(buffer, 0, length);
327 out.closeEntry();
329 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);

Completed in 348 milliseconds

<<21222324252627282930>>