Searched refs:out (Results 176 - 200 of 1293) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/net/metrics/
H A DDhcpClientEvent.java48 public void writeToParcel(Parcel out, int flags) { argument
49 out.writeString(msg);
50 out.writeInt(durationMs);
/frameworks/base/core/java/android/os/
H A DCpuUsageInfo.java72 public void writeToParcel(Parcel out, int flags) { argument
73 out.writeLong(mActive);
74 out.writeLong(mTotal);
H A DStatsDimensionsValue.java284 public void writeToParcel(Parcel out, int flags) { argument
285 out.writeInt(mField);
286 out.writeInt(mValueType);
287 writeValueToParcel(mValueType, mValue, out, flags);
291 private static boolean writeValueToParcel(int valueType, Object value, Parcel out, int flags) { argument
295 out.writeString((String) value);
298 out.writeInt((Integer) value);
301 out.writeLong((Long) value);
304 out.writeBoolean((Boolean) value);
307 out
[all...]
H A DIBatteryPropertiesRegistrar.aidl29 int getProperty(in int id, out BatteryProperty prop);
/frameworks/base/core/java/android/os/health/
H A DTimerStat.java84 public void writeToParcel(Parcel out, int flags) { argument
85 out.writeInt(mCount);
86 out.writeLong(mTime);
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderResponse.java54 public void writeToParcel(Parcel out, int flags) { argument
55 out.writeTypedObject(packageInfo, flags);
56 out.writeInt(status);
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DBitmapFactoryTest.java35 ByteArrayOutputStream out = new ByteArrayOutputStream();
36 bitmap1.compress(Bitmap.CompressFormat.PNG, 100, out);
37 ParcelFileDescriptor pfd = ParcelFileDescriptor.fromData(out.toByteArray(), null);
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.cpp47 Point out; local
48 out.x_ = x_ + other.x_;
49 out.y_ = y_ + other.y_;
50 return out;
54 Point out; local
55 out.x_ = x_ - other.x_;
56 out.y_ = y_ - other.y_;
57 return out;
61 Point out; local
62 out
[all...]
/frameworks/base/tools/aapt2/io/
H A DFileStream_test.cpp92 FileOutputStream out(file.fd, 10u);
93 ASSERT_FALSE(out.HadError());
94 EXPECT_THAT(out.ByteCount(), Eq(0u));
98 ASSERT_TRUE(out.Next(reinterpret_cast<void**>(&buffer), &size));
101 EXPECT_THAT(out.ByteCount(), Eq(10u));
104 ASSERT_TRUE(out.Next(reinterpret_cast<void**>(&buffer), &size));
107 EXPECT_THAT(out.ByteCount(), Eq(20u));
110 ASSERT_TRUE(out.Next(reinterpret_cast<void**>(&buffer), &size));
113 EXPECT_THAT(out.ByteCount(), Eq(30u));
115 out
[all...]
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/util/
H A DSerializableImageImpl.java40 private void writeObject(ObjectOutputStream out) throws IOException { argument
41 out.defaultWriteObject();
42 ImageIO.write(mBufferedImage, "png", out);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNetworkHistory.java137 public void onWriteCalled(DataOutputStream out) throws IOException {
182 out.writeUTF(CONFIG_KEY + SEPARATOR + config.configKey() + NL);
185 out.writeUTF(SSID_KEY + SEPARATOR + config.SSID + NL);
188 out.writeUTF(CONFIG_BSSID_KEY + SEPARATOR + config.BSSID + NL);
190 out.writeUTF(CONFIG_BSSID_KEY + SEPARATOR + "null" + NL);
193 out.writeUTF(FQDN_KEY + SEPARATOR + config.FQDN + NL);
196 out.writeUTF(PRIORITY_KEY + SEPARATOR + Integer.toString(config.priority) + NL);
197 out.writeUTF(NETWORK_ID_KEY + SEPARATOR
199 out.writeUTF(SELF_ADDED_KEY + SEPARATOR
201 out
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dsad_halfpel_inline.h83 register int32 out; local
92 : "=&r"(out),
97 return out;
103 register int32 out; local
112 : "=&r"(out),
117 return out;
/frameworks/base/core/java/android/hardware/location/
H A DNanoAppMessage.java125 public void writeToParcel(Parcel out, int flags) { argument
126 out.writeLong(mNanoAppId);
127 out.writeInt(mIsBroadcasted ? 1 : 0);
128 out.writeInt(mMessageType);
130 out.writeInt(mMessageBody.length);
131 out.writeByteArray(mMessageBody);
/frameworks/base/libs/androidfw/tests/
H A DConfigLocale_test.cpp32 char out[4] = {1, 1, 1, 1}; local
33 config.unpackLanguage(out);
34 EXPECT_EQ('e', out[0]);
35 EXPECT_EQ('n', out[1]);
36 EXPECT_EQ(0, out[2]);
37 EXPECT_EQ(0, out[3]);
39 memset(out, 1, sizeof(out));
41 config.unpackLanguage(out);
42 EXPECT_EQ(0, out[
55 char out[4] = {1, 1, 1, 1}; local
71 char out[4] = {1, 1, 1, 1}; local
95 char out[4] = {1, 1, 1, 1}; local
107 char out[4] = {1, 1, 1, 1}; local
115 fillIn(const char* lang, const char* country, const char* script, const char* variant, ResTable_config* out) argument
203 char out[4] = {1, 1, 1, 1}; local
326 char out[RESTABLE_MAX_LOCALE_LEN]; local
340 char out[RESTABLE_MAX_LOCALE_LEN]; local
354 char out[RESTABLE_MAX_LOCALE_LEN]; local
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
H A DHSOsuProvidersElementTest.java57 ByteArrayOutputStream out = new ByteArrayOutputStream();
58 out.write((byte) osuSsidBytes.length);
59 out.write(osuSsidBytes);
60 out.write((byte) TEST_PROVIDER_LIST.size());
61 out.write(OsuProviderInfoTestUtil.TEST_OSU_PROVIDER_INFO_RAW_BYTES);
62 return out.toByteArray();
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicLUT.cpp55 uchar *out = (uchar *)info->outPtr[0]; local
66 out[0] = tr[in[0]];
67 out[1] = tg[in[1]];
68 out[2] = tb[in[2]];
69 out[3] = ta[in[3]];
71 out += 4;
/frameworks/rs/tests/java_api/SampleTest/src/com/android/rs/sample/
H A Dsample.rs31 void root(uchar4 *out, uint32_t x, uint32_t y) {
40 out->xyz = convert_uchar3(rsSample(sourceAlloc, allocSampler, uv * 2.0f).xyz * 255.0f);
41 out->w = 0xff;
/frameworks/rs/tests/lldb/java/SingleSource/src/rs/
H A Drs_single_source.rs48 void script_invoke_1(rs_allocation out, rs_allocation in1, rs_allocation in2)
51 rsForEach(kernel_1, out, in1);
56 rsForEach(kernel_2, out, in1, in2);
/frameworks/av/media/libeffects/testlibs/
H A DAudioCoefInterpolator.h26 // This class provides support for out-of-range indexes.
53 // out An array for the output value. Should be of size nOutDims.
54 void getCoef(const int intCoord[], uint32_t fracCoord[], audio_coef_t out[]);
82 // out Where the output should be written. Needs to be of size
87 audio_coef_t out[], size_t dim);
/frameworks/base/cmds/incident_helper/src/parsers/
H A DBatteryTypeParser.cpp27 BatteryTypeParser::Parse(const int in, const int out) const
54 if (!proto.flush(out)) {
/frameworks/base/core/java/android/app/admin/
H A DDnsEvent.java126 public void writeToParcel(Parcel out, int flags) { argument
128 out.writeInt(PARCEL_TOKEN_DNS_EVENT);
129 out.writeString(mHostname);
130 out.writeStringArray(mIpAddresses);
131 out.writeInt(mIpAddressesCount);
132 out.writeString(mPackageName);
133 out.writeLong(mTimestamp);
134 out.writeLong(mId);
/frameworks/base/core/java/android/app/job/
H A DJobWorkItem.java198 public void writeToParcel(Parcel out, int flags) { argument
200 out.writeInt(1);
201 mIntent.writeToParcel(out, 0);
203 out.writeInt(0);
205 out.writeLong(mNetworkDownloadBytes);
206 out.writeLong(mNetworkUploadBytes);
207 out.writeInt(mDeliveryCount);
208 out.writeInt(mWorkId);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java368 public void writeToParcel(Parcel out, int flags) { argument
369 out.writeTypedObject(this.provider, flags);
370 out.writeInt(this.minWidth);
371 out.writeInt(this.minHeight);
372 out.writeInt(this.minResizeWidth);
373 out.writeInt(this.minResizeHeight);
374 out.writeInt(this.updatePeriodMillis);
375 out.writeInt(this.initialLayout);
376 out.writeInt(this.initialKeyguardLayout);
377 out
[all...]
/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlob.java52 public void writeToParcel(Parcel out, int flags) { argument
53 out.writeByteArray(blob);
H A DKeymasterDateArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeLong(date.getTime());

Completed in 490 milliseconds

1234567891011>>