Searched refs:out (Results 251 - 275 of 652) sorted by relevance

<<11121314151617181920>>

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiApConfigStore.java181 DataOutputStream out = null;
183 out = new DataOutputStream(new BufferedOutputStream(
186 out.writeInt(AP_CONFIG_FILE_VERSION);
187 out.writeUTF(config.SSID);
189 out.writeInt(authType);
191 out.writeUTF(config.preSharedKey);
196 if (out != null) {
198 out.close();
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A Dthreshold.rs80 uchar4 out;
94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
95 out.w = 0xff;
96 return out;
H A Dshadows.rs91 ushort3 out;
92 out.x = rv;
93 out.y = rs;
94 out.z = rh;
95 return out;
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A Dthreshold.fs80 uchar4 out;
94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
95 out.w = 0xff;
96 return out;
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A Dthreshold.rs80 uchar4 out;
94 out.xyz = convert_uchar3(clamp(blurredPixel, 0.f, 255.f));
95 out.w = 0xff;
96 return out;
H A Dshadows.rs91 ushort3 out;
92 out.x = rv;
93 out.y = rs;
94 out.z = rh;
95 return out;
/frameworks/base/obex/javax/obex/
H A DClientOperation.java419 ByteArrayOutputStream out = new ByteArrayOutputStream();
479 out.write(headerArray);
503 out.write(0x49);
506 out.write(0x48);
510 out.write((byte)(bodyLength >> 8));
511 out.write((byte)bodyLength);
514 out.write(body);
521 out.write(0x48);
523 out.write(0x49);
529 out
[all...]
H A DServerOperation.java97 * @param out the output stream to write to
286 ByteArrayOutputStream out = new ByteArrayOutputStream();
341 out.write(headerArray);
370 out.write(0x49);
372 out.write((byte)(bodyLength >> 8));
373 out.write((byte)bodyLength);
374 out.write(body);
378 out.write(0x48);
380 out.write((byte)(bodyLength >> 8));
381 out
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.h60 Int AppVCA1_dct(Int block[], Int out[ ], approxDCT *function);
61 Int AppVCA2_dct(Int block[], Int out[ ], approxDCT *function);
62 Int AppVCA3_dct(Int block[], Int out[ ], approxDCT *function);
63 Int AppVCA4_dct(Int block[], Int out[ ], approxDCT *function);
64 Int AppVCA5_dct(Int block[], Int out[ ], approxDCT *function);
/frameworks/av/media/libstagefright/rtsp/
H A DAPacketSource.cpp79 uint8_t *out = buffer->data(); local
98 *out++ = accum;
174 uint8_t *out = csd->data(); local
176 *out++ = 0x01; // configurationVersion
178 memcpy(out, profileLevelID->data(), 3);
179 out += 3;
181 *out++ = 0x42; // Baseline profile
182 *out++ = 0xE0; // Common subset for all profiles
183 *out++ = 0x0A; // Level 1
186 *out
[all...]
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp320 sp<ABuffer> out = new ABuffer(kMaxUDPPacketSize); local
335 if (outBytesUsed + bytesNeeded > out->capacity()) {
339 && outBytesUsed + nalSize <= out->capacity()) {
344 memcpy(out->data() + outBytesUsed, nalStart, nalSize);
351 out->setRange(0, outBytesUsed);
352 packets.push_back(out);
353 out = new ABuffer(kMaxUDPPacketSize);
362 if (outBytesUsed + bytesNeeded <= out->capacity()) {
363 uint8_t *dst = out->data() + outBytesUsed;
387 size_t copy = out
422 sp<ABuffer> out = *packets.begin(); local
[all...]
/frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
H A DHugeAgent.java128 // out of the buffering stream object and send it off.
190 * Write out the new state file: the version number, followed by the
195 DataOutputStream out = new DataOutputStream(outstream);
197 out.writeInt(AGENT_VERSION);
198 out.writeInt(mFilling);
199 out.writeBoolean(mAddMayo);
200 out.writeBoolean(mAddTomato);
207 * be running while we change its data out from under it. That, in
208 * turn, means that there is no need to send out any sort of notification
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextureViewActivity.java58 BufferedOutputStream out = null;
60 File dump = new File(Environment.getExternalStorageDirectory(), "out.png");
61 out = new BufferedOutputStream(new FileOutputStream(dump));
62 b.compress(Bitmap.CompressFormat.PNG, 100, out);
66 if (out != null) try {
67 out.close();
/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java136 public void writeToParcel(Parcel out, int flags) { argument
137 out.writeLong(bucketDuration);
138 writeLongArray(out, bucketStart, bucketCount);
139 writeLongArray(out, activeTime, bucketCount);
140 writeLongArray(out, rxBytes, bucketCount);
141 writeLongArray(out, rxPackets, bucketCount);
142 writeLongArray(out, txBytes, bucketCount);
143 writeLongArray(out, txPackets, bucketCount);
144 writeLongArray(out, operations, bucketCount);
145 out
190 writeToStream(DataOutputStream out) argument
701 writeVarLong(DataOutputStream out, long value) argument
724 writeVarLongArray(DataOutputStream out, long[] values, int size) argument
755 writeLongArray(Parcel out, long[] values, int size) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java215 boolean dumpMap(PrintWriter out, String titlePrefix, String title, argument
244 out.print(titlePrefix); out.println(title);
248 out.print(eprefix); out.print(map.keyAt(mapi)); out.println(":");
252 dumpFilterLabel(out, fprefix, found.keyAt(i), found.valueAt(i).value);
260 out.print(titlePrefix); out.println(title);
264 out
281 dump(PrintWriter out, String title, String prefix, String packageName, boolean printFilter, boolean collapseDuplicates) argument
507 dumpFilter(PrintWriter out, String prefix, F filter) argument
515 dumpFilterLabel(PrintWriter out, String prefix, Object label, int count) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java346 public void writeToParcel(Parcel out, int flags) { argument
347 mFd.writeToParcel(out, flags);
348 out.writeLong(mStartOffset);
349 out.writeLong(mLength);
351 out.writeInt(1);
352 out.writeBundle(mExtras);
354 out.writeInt(0);
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java237 public void writeToParcel(Parcel out, int flags) { argument
238 out.writeString(mTag);
239 out.writeLong(mTimeMillis);
241 out.writeInt(mFlags & ~HAS_BYTE_ARRAY); // Clear bit just to be safe
242 mFileDescriptor.writeToParcel(out, flags);
244 out.writeInt(mFlags | HAS_BYTE_ARRAY);
245 out.writeByteArray(mData);
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java358 StringBuilder out = new StringBuilder("[OperationScheduler:");
366 out.append(" ").append(key.substring(PREFIX.length(), key.length() - 10));
367 out.append("=").append(time.format("%Y-%m-%d/%H:%M:%S"));
369 out.append(" ").append(key.substring(PREFIX.length()));
372 out.append("=(null)");
374 out.append("=").append(v.toString());
379 return out.append("]").toString();
/frameworks/multidex/library/test/src/android/support/multidex/
H A DZipUtilTest.java50 "out/target/common/obj/JAVA_LIBRARIES/android-support-multidex_intermediates/javalib.jar");
62 System.out.println("crc is " + crc);
121 OutputStream out = new FileOutputStream(tmp);
124 out.write(buffer, 0, read);
128 out.close();
151 OutputStream out = new FileOutputStream(tmp);
154 out.write(buffer, 0, read);
158 out.close();
/frameworks/wilhelm/tools/permute/
H A Dpermute.c141 goto out;
156 goto out;
169 goto out;
184 goto out;
198 goto out;
206 goto out;
248 goto out;
265 goto out;
299 out:
/frameworks/base/core/java/android/content/
H A DSyncAdaptersCache.java80 public void writeAsXml(SyncAdapterType item, XmlSerializer out) throws IOException { argument
81 out.attribute(null, "authority", item.authority);
82 out.attribute(null, "accountType", item.accountType);
/frameworks/base/core/java/android/print/
H A DPrintFileDocumentAdapter.java118 OutputStream out = new FileOutputStream(mDestination.getFileDescriptor());
130 out.write(buffer, 0, readByteCount);
138 IoUtils.closeQuietly(out);
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DCookiesTest.java56 ByteArrayOutputStream out = new ByteArrayOutputStream();
58 StreamHandler handler = new StreamHandler(out, new SimpleFormatter());
65 String log = out.toString("UTF-8");
/frameworks/base/core/tests/coretests/src/android/os/
H A DFileObserverTest.java80 FileOutputStream out = new FileOutputStream(mTestFile);
82 out.write(0x20);
95 out.close();
/frameworks/base/graphics/java/android/graphics/
H A DPointF.java126 * @param out The parcel to write the point's coordinates into
129 public void writeToParcel(Parcel out, int flags) { argument
130 out.writeFloat(x);
131 out.writeFloat(y);

Completed in 6046 milliseconds

<<11121314151617181920>>