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

<<71727374757677787980>>

  /frameworks/av/media/libstagefright/foundation/
MetaData.cpp 320 String8 out; local
324 out = String8::format("no type, size %zu)", mSize);
327 out = String8::format("(char*) %s", (const char *)data);
330 out = String8::format("(int32_t) %d", *(int32_t *)data);
333 out = String8::format("(int64_t) %" PRId64, *(int64_t *)data);
336 out = String8::format("(float) %f", *(float *)data);
339 out = String8::format("(void*) %p", *(void **)data);
344 out = String8::format("Rect(%d, %d, %d, %d)",
350 out = String8::format("(unknown type %d, size %zu)", mType, mSize);
354 out.append("\n")
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
APacketSource.cpp 79 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++ = (0x3f << 2) | 1; // lengthSize == 2 byte
    [all...]
  /frameworks/base/core/java/android/app/
AlertDialog.java 413 TypedValue out = new TypedValue(); local
414 mContext.getTheme().resolveAttribute(attrId, out, true);
415 mAlert.setIcon(out.resourceId);
598 TypedValue out = new TypedValue(); local
599 P.mContext.getTheme().resolveAttribute(attrId, out, true);
600 P.mIconId = out.resourceId;
    [all...]
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 311 public void writeToParcel(android.os.Parcel out, int flags) {
313 out.writeInt(1);
314 this.provider.writeToParcel(out, flags);
316 out.writeInt(0);
318 out.writeInt(this.minWidth);
319 out.writeInt(this.minHeight);
320 out.writeInt(this.minResizeWidth);
321 out.writeInt(this.minResizeHeight);
322 out.writeInt(this.updatePeriodMillis);
323 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);
333 * 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/hardware/radio/
ProgramSelector.java 257 List<Identifier> out = new ArrayList<>(); local
259 if (mPrimaryId.getType() == type) out.add(mPrimaryId);
261 if (id.getType() == type) out.add(id);
264 return out.toArray(new Identifier[out.size()]);
283 * @throws IllegalArgumentException if provided frequency is out of bounds.
318 * @throws IllegalArgumentException if provided frequency is out of bounds,
  /frameworks/base/core/java/android/metrics/
LogMaker.java 393 Object[] out = new Object[entries.size() * 2]; local
395 out[i * 2] = entries.keyAt(i);
396 out[i * 2 + 1] = entries.valueAt(i);
398 int size = out.toString().getBytes().length;
403 return out;
  /frameworks/base/core/java/android/net/
NetworkPolicy.java 225 DataOutputStream out = new DataOutputStream(baos); local
227 out.writeInt(VERSION_RULE);
228 out.write(template.getBytesForBackup());
229 cycleRule.writeToStream(out);
230 out.writeLong(warningBytes);
231 out.writeLong(limitBytes);
232 out.writeLong(lastWarningSnooze);
233 out.writeLong(lastLimitSnooze);
234 out.writeInt(metered ? 1 : 0);
235 out.writeInt(inferred ? 1 : 0)
    [all...]
  /frameworks/base/core/java/android/nfc/cardemulation/
NfcFServiceInfo.java 236 StringBuilder out = new StringBuilder("NfcFService: "); local
237 out.append(getComponent());
238 out.append(", description: " + mDescription);
239 out.append(", System Code: " + mSystemCode);
241 out.append(", dynamic System Code: " + mDynamicSystemCode);
243 out.append(", NFCID2: " + mNfcid2);
245 out.append(", dynamic NFCID2: " + mDynamicNfcid2);
247 out.append(", T3T PMM:" + mT3tPmm);
248 return out.toString();
  /frameworks/base/core/java/android/os/
VibrationEffect.java 259 public void writeToParcel(Parcel out, int flags) {
260 out.writeInt(PARCEL_TOKEN_ONE_SHOT);
261 out.writeLong(mTiming);
262 out.writeInt(mAmplitude);
371 public void writeToParcel(Parcel out, int flags) {
372 out.writeInt(PARCEL_TOKEN_WAVEFORM);
373 out.writeLongArray(mTimings);
374 out.writeIntArray(mAmplitudes);
375 out.writeInt(mRepeat);
463 public void writeToParcel(Parcel out, int flags)
    [all...]
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 341 CharSequence out = super.filter(source, start, end, dest, dstart, dend); local
344 return out;
347 if (out != null) {
348 source = out;
350 end = out.length();
358 * Find out if the existing text has a sign or decimal point characters.
381 * If it does, we must strip them out from the source.
424 } else if (out != null) {
425 return out;
  /frameworks/base/core/java/android/util/
AtomicFile.java 261 FileOutputStream out = null; local
263 out = startWrite();
264 writeContent.accept(out);
265 finishWrite(out);
267 failWrite(out);
270 IoUtils.closeQuietly(out);
  /frameworks/base/core/java/android/view/
ViewDebug.java 304 * @param out The output writer
307 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level);
507 BufferedWriter out = null; local
509 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024);
512 profileViewAndChildren(view, out);
514 out.write("-1 -1 -1");
515 out.newLine();
517 out.write("DONE.");
518 out.newLine();
522 if (out != null)
619 profileViewAndChildren(group.getChildAt(i), out, false); local
767 BufferedOutputStream out = null; local
818 BufferedWriter out = null; local
824 dumpViewHierarchy(group.getContext(), group, out, 0, local
867 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/core/tests/coretests/src/android/metrics/
LogMakerTest.java 27 Object[] out = builder.serialize(); local
28 assertEquals(1, out[0]);
29 assertEquals("one", out[1]);
30 assertEquals(2, out[2]);
31 assertEquals("two", out[3]);
55 Object[] out = builder.serialize(); local
56 LogMaker parsed = new LogMaker(out);
104 Object[] out = builder.serialize(); local
105 assertEquals("onetwothree", out[1]);
106 assertEquals(123, out[3])
113 Object[] out = builder.serialize(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/http/
CookiesTest.java 62 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
64 StreamHandler handler = new StreamHandler(out, new SimpleFormatter());
71 String log = out.toString("UTF-8");
  /frameworks/base/core/tests/coretests/src/android/provider/
FontsContractE2ETest.java 63 ArrayList<byte[]> out = new ArrayList<>(); external variable declarations
65 out.add(sig.toByteArray());
68 SIGNATURE.add(out); external variable declarations
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 365 OutputStream out = null; local
368 out = new ParcelFileDescriptor.AutoCloseOutputStream(
370 Streams.copy(in, out);
372 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/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/connectivity/
IpConnectivityEventBuilder.java 75 final IpConnectivityEvent out = toProto(in); local
76 if (out == null) {
79 eventsOut.add(out);
85 final IpConnectivityEvent out = buildEvent(ev.netId, ev.transports, ev.ifname); local
86 out.timeMs = ev.timestamp;
87 if (!setEvent(out, ev.data)) {
90 return out;
101 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); local
102 out.setConnectStatistics(stats);
103 return out;
114 final IpConnectivityEvent out = buildEvent(in.netId, in.transports, null); local
130 final IpConnectivityEvent out = buildEvent(0, 0, in.iface); local
301 final int[] out = new int[in.length]; local
    [all...]
  /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/pm/
UserRestrictionsUtilsTest.java 36 -r out/target/product/hammerhead/data/app/FrameworksServicesTests/FrameworksServicesTests.apk &&
44 Bundle out = UserRestrictionsUtils.nonNull(null); local
45 assertNotNull(out);
46 out.putBoolean("a", true); // Should not be Bundle.EMPTY.
60 Bundle out = UserRestrictionsUtils.clone(in); local
61 assertNotSame(in, out);
62 assertRestrictions(out, new Bundle());
64 out = UserRestrictionsUtils.clone(null);
65 assertNotNull(out);
66 out.putBoolean("a", true); // Should not be Bundle.EMPTY
    [all...]

Completed in 690 milliseconds

<<71727374757677787980>>