HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1526 - 1550 of 4549) sorted by null

<<61626364656667686970>>

  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 308 public void writeToParcel(android.os.Parcel out, int flags) {
310 out.writeInt(1);
311 this.provider.writeToParcel(out, flags);
313 out.writeInt(0);
315 out.writeInt(this.minWidth);
316 out.writeInt(this.minHeight);
317 out.writeInt(this.minResizeWidth);
318 out.writeInt(this.minResizeHeight);
319 out.writeInt(this.updatePeriodMillis);
320 out.writeInt(this.initialLayout)
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 143 public void writeToParcel(Parcel out, int flags) {
144 out.writeParcelable(new ParcelUuid(mUuid), 0);
145 out.writeInt(mInstanceId);
146 out.writeInt(mServiceType);
147 out.writeTypedList(mCharacteristics);
155 out.writeTypedList(includedServices);
334 * Returns a characteristic with a given UUID out of the list of
  /frameworks/base/core/java/android/hardware/location/
ContextHubInfo.java 391 public void writeToParcel(Parcel out, int flags) {
392 out.writeInt(mId);
393 out.writeString(mName);
394 out.writeString(mVendor);
395 out.writeString(mToolchain);
396 out.writeInt(mPlatformVersion);
397 out.writeInt(mToolchainVersion);
398 out.writeInt(mStaticSwVersion);
399 out.writeFloat(mPeakMips);
400 out.writeFloat(mStoppedPowerDrawMw)
    [all...]
  /frameworks/base/core/java/android/net/
NetworkPolicy.java 207 DataOutputStream out = new DataOutputStream(baos); local
209 out.writeInt(BACKUP_VERSION);
210 out.write(template.getBytesForBackup());
211 out.writeInt(cycleDay);
212 BackupUtils.writeString(out, cycleTimezone);
213 out.writeLong(warningBytes);
214 out.writeLong(limitBytes);
215 out.writeLong(lastWarningSnooze);
216 out.writeLong(lastLimitSnooze);
217 out.writeInt(metered ? 1 : 0)
    [all...]
  /frameworks/base/core/java/android/nfc/cardemulation/
NfcFServiceInfo.java 215 StringBuilder out = new StringBuilder("NfcFService: "); local
216 out.append(getComponent());
217 out.append(", description: " + mDescription);
218 out.append(", System Code: " + mSystemCode);
220 out.append(", dynamic System Code: " + mDynamicSystemCode);
222 out.append(", NFCID2: " + mNfcid2);
224 out.append(", dynamic NFCID2: " + mDynamicNfcid2);
226 return out.toString();
  /frameworks/base/core/java/android/view/
ViewDebug.java 302 * @param out The output writer
305 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level);
505 BufferedWriter out = null; local
507 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024);
510 profileViewAndChildren(view, out);
512 out.write("-1 -1 -1");
513 out.newLine();
515 out.write("DONE.");
516 out.newLine();
520 if (out != null)
617 profileViewAndChildren(group.getChildAt(i), out, false); local
765 BufferedOutputStream out = null; local
815 BufferedWriter out = null; local
821 dumpViewHierarchy(group.getContext(), group, out, 0, local
862 BufferedWriter out = null; local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/backup/
BackupDataTest.java 157 int out = 0; local
159 readAndVerifyDeletedEntity(bdi, KEYS[out]); out++;
161 readAndVerifyEntity(bdi, KEYS[out], DATA[out].getBytes()); out++;
163 readAndVerifyEntity(bdi, KEYS[out], DATA[out].getBytes()); out++;
165 readAndVerifyDeletedEntity(bdi, KEYS[out]); out++
    [all...]
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 383 OutputStream out = null; local
386 out = new ParcelFileDescriptor.AutoCloseOutputStream(
388 Streams.copy(in, out);
390 IoUtils.closeQuietly(out);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
OMAConstants.java 113 public static void serializeString(String s, OutputStream out) throws IOException {
116 out.write(prefix);
117 out.write(octets);
120 public static void indent(int level, OutputStream out) throws IOException {
121 out.write(INDENT, 0, level);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPRequest.java 76 //System.out.println("Tokens: " + Arrays.toString(tokens));
105 //System.out.println("Remaining tokens: " + itemMap);
169 //System.out.println("<Hash>");
174 //System.out.println("+= '" + object + "'");
178 //System.out.println("+= " + new String(octets, StandardCharsets.ISO_8859_1));
187 //System.out.println("</Hash>");
215 //System.out.println("HTTP Request:");
221 //System.out.println(sb2);
222 //System.out.println("End HTTP Request.");
227 public void send(OutputStream out) throws IOException
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
ViewFocusAnimator.java 54 TypedValue out = new TypedValue(); local
55 res.getValue(R.integer.unselected_scale, out, true);
56 mUnselectedScale = out.getFloat();
57 res.getValue(R.integer.selected_scale, out, true);
58 mSelectedScale = out.getFloat();
  /frameworks/base/services/core/java/com/android/server/
CertBlacklister.java 83 FileOutputStream out = null; local
90 out = new FileOutputStream(tmp);
91 out.write(blacklist.getBytes());
93 FileUtils.sync(out);
100 IoUtils.closeQuietly(out);
  /frameworks/base/services/core/java/com/android/server/updates/
ConfigUpdateInstallReceiver.java 179 FileOutputStream out = null; local
194 out = new FileOutputStream(tmp);
195 out.write(content);
197 out.getFD().sync();
206 IoUtils.closeQuietly(out);
  /frameworks/base/services/tests/servicestests/src/com/android/server/net/
NetworkStatsCollectionTest.java 227 OutputStream out = null; local
230 out = new FileOutputStream(file);
231 Streams.copy(in, out);
234 IoUtils.closeQuietly(out);
  /frameworks/base/tools/aapt2/
ResourceUtils.cpp 563 std::stringstream out; local
564 out << "res/" << resFile.name.type;
566 out << "-" << resFile.config;
568 out << "/";
571 out << NameMangler::mangleEntry(resFile.name.package, resFile.name.entry);
573 out << resFile.name.entry;
575 out << file::getExtension(resFile.source.path);
576 return out.str();
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer.cpp 83 std::u16string out; local
120 out.append(chunk);
123 out.append(mImpl->end());
125 out.append(mImpl->start());
131 return out;
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 198 TypedValue out = new TypedValue(); local
199 if (ResourceHelper.parseFloatAttribute("textSize", textSize.getValue(), out,
202 out.getDimension(bridgeContext.getResources().getDisplayMetrics()));
  /frameworks/base/tools/preload/
MemoryUsage.java 192 System.err.println("Timed out while measuring "
274 private static void copy(InputStream in, OutputStream out) {
279 out.write(buffer, 0, read);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 179 // FIXME: Figure out which passes should be executed.
304 llvm::raw_pwrite_stream *out = pResult.dup(); local
305 if (out == nullptr) {
310 enum Compiler::ErrorCode err = compile(pScript, *out, IRStream);
313 delete out;
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 120 int bitwidth, GeneratedFile &out) {
122 out.indent() << "// return byte array representation of the " << bitwidth
124 out.indent() << "public static byte[] getBitCode" << bitwidth << "()";
125 out.startBlock();
126 out.indent() << "return getBitCode" << bitwidth << "Internal();\n";
127 out.endBlock(true);
134 int seg_num, GeneratedFile &out) {
135 out.indent() << "private static byte[] getSegment" << bitwidth << "_"
137 out.startBlock();
138 out.indent() << "byte[] data = {"
276 GeneratedFile out; local
    [all...]
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 357 StringBuilder out = new StringBuilder("[OperationScheduler:"); local
365 out.append(" ").append(key.substring(PREFIX.length(), key.length() - 10));
366 out.append("=").append(time.format("%Y-%m-%d/%H:%M:%S"));
368 out.append(" ").append(key.substring(PREFIX.length()));
371 out.append("=(null)");
373 out.append("=").append(v.toString());
378 return out.append("]").toString();
  /frameworks/native/libs/binder/
Binder.cpp 64 status_t IBinder::shellCommand(const sp<IBinder>& target, int in, int out, int err,
70 send.writeFileDescriptor(out);
171 if (e == 0) return; // out of memory
228 int out = data.readFileDescriptor(); local
239 //return shellCommand(in, out, err, args, resultReceiver);
  /frameworks/native/services/surfaceflinger/
Transform.cpp 229 Region out; local
235 out.orSelf(transform(*it++));
238 out.set(transform(reg.bounds()));
243 out = reg.translate(xpos, ypos);
245 return out;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
OMAConstants.java 41 public static void serializeString(String s, OutputStream out) throws IOException {
44 out.write(prefix);
45 out.write(octets);
48 public static void indent(int level, OutputStream out) throws IOException {
49 out.write(INDENT, 0, level);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic3DLUT.cpp 66 uchar4 *out = (uchar4 *)info->outPtr[0]; local
90 rsdIntrinsic3DLUT_K(out, in, len,
94 out += len;
155 *out = ret;
159 out++;

Completed in 1404 milliseconds

<<61626364656667686970>>