Searched defs:out (Results 26 - 50 of 260) sorted by relevance

1234567891011

/frameworks/base/core/java/android/app/
H A DResultInfo.java53 public void writeToParcel(Parcel out, int flags) { argument
54 out.writeString(mResultWho);
55 out.writeInt(mRequestCode);
56 out.writeInt(mResultCode);
58 out.writeInt(1);
59 mData.writeToParcel(out, 0);
61 out.writeInt(0);
/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/net/
H A DNetworkQuotaInfo.java66 public void writeToParcel(Parcel out, int flags) { argument
67 out.writeLong(mEstimatedBytes);
68 out.writeLong(mSoftLimitBytes);
69 out.writeLong(mHardLimitBytes);
/frameworks/base/core/java/android/os/
H A DMessenger.java87 public void writeToParcel(Parcel out, int flags) { argument
88 out.writeStrongBinder(mTarget.asBinder());
109 * @param out Where to write the Messenger.
112 Parcel out) {
113 out.writeStrongBinder(messenger != null ? messenger.mTarget.asBinder()
111 writeMessengerOrNullToParcel(Messenger messenger, Parcel out) argument
H A DRemoteCallback.java91 public void writeToParcel(Parcel out, int flags) { argument
92 out.writeStrongBinder(mTarget.asBinder());
H A DResultReceiver.java106 public void writeToParcel(Parcel out, int flags) { argument
111 out.writeStrongBinder(mReceiver.asBinder());
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java40 * @param out the OutputStream to write the encoded data to
44 public Base64OutputStream(OutputStream out, int flags) { argument
45 this(out, flags, true);
53 * @param out the OutputStream to write the encoded data to
60 public Base64OutputStream(OutputStream out, int flags, boolean encode) { argument
61 super(out);
80 // internal buffer full; write it out.
115 out.close();
117 out.flush();
141 out
[all...]
/frameworks/base/core/java/android/webkit/
H A DViewStateSerializer.java70 public static void dumpLayerHierarchy(int baseLayer, OutputStream out, int level) { argument
71 nativeDumpLayerHierarchy(baseLayer, level, out,
77 OutputStream out, byte[] storage);
76 nativeDumpLayerHierarchy(int baseLayer, int level, OutputStream out, byte[] storage) argument
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DStringPart.java121 * @param out the OutputStream to write to
125 protected void sendData(OutputStream out) throws IOException { argument
127 out.write(getContent());
H A DFilePart.java184 * @param out The output stream
189 protected void sendDispositionHeader(OutputStream out) argument
191 LOG.trace("enter sendDispositionHeader(OutputStream out)");
192 super.sendDispositionHeader(out);
195 out.write(FILE_NAME_BYTES);
196 out.write(QUOTE_BYTES);
197 out.write(EncodingUtils.getAsciiBytes(filename));
198 out.write(QUOTE_BYTES);
204 * @param out The output stream.
209 protected void sendData(OutputStream out) throw argument
[all...]
H A DMultipartEntity.java189 public void writeTo(OutputStream out) throws IOException { argument
190 Part.sendParts(out, parts, getMultipartBoundary());
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.java67 RandomAccessFile out = null;
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 { argument
88 out.write(block);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
H A DForwarder.java82 private Socket in, out; field in class:Forwarder.SocketPipe
84 public SocketPipe(Socket in, Socket out) { argument
86 this.out = out;
93 OutputStream os = out.getOutputStream();
106 return "SocketPipe{" + in + "=>" + out + "}";
/frameworks/av/cmds/stagefright/
H A DSineSource.cpp61 MediaBuffer **out, const ReadOptions *options) {
62 *out = NULL;
97 *out = buffer;
60 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/av/libvideoeditor/lvpp/
H A DDummyAudioSource.cpp119 MediaBuffer **out, const MediaSource::ReadOptions *options) {
137 *out = NULL;
158 *out = buffer;
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
H A DDummyVideoSource.cpp119 MediaBuffer **out,
137 *out = NULL;
167 *out = buffer;
118 read( MediaBuffer **out, const MediaSource::ReadOptions *options) argument
/frameworks/av/media/libeffects/testlibs/
H A DAudioPeakingFilter.h31 // when they are out of supported range.
102 // out Output buffer.
104 void process(const audio_sample_t in[], audio_sample_t out[], argument
105 int frameCount) { mBiquad.process(in, out, frameCount); }
H A DAudioShelvingFilter.h31 // when they are out of supported range.
96 // out Output buffer.
98 void process(const audio_sample_t in[], audio_sample_t out[], argument
99 int frameCount) { mBiquad.process(in, out, frameCount); }
H A DEffectsMath.c114 int32_t out = 0; local
123 out = 0x4000;
133 tmp = (out << i) + (1 << ((i - 1)*2));
136 out += 1 << (i-1);
141 return out;
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_imdct_synth.cpp243 int32 * out = in + (band * FILTERBANK_BANDS); local
250 pvmp3_mdct_18(out, history, normal_win);
256 pvmp3_mdct_18(out, history, start_win);
262 pvmp3_mdct_18(out, history, stop_win);
273 Scratch_mem[i ] = out[(i*3)];
274 Scratch_mem[6 +i] = out[(i*3) + 1];
275 Scratch_mem[12 +i] = out[(i*3) + 2];
288 out[i] = temp;
293 out[i+6] = fxp_mul32_Q32(Scratch_mem[i] << 1, short_win[i]);
294 out[
334 int32 * out = in + (band * FILTERBANK_BANDS); local
[all...]
/frameworks/av/media/libstagefright/foundation/
H A Dbase64.cpp43 uint8_t *out = buffer->data(); local
72 out[j++] = (accum >> 16);
74 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; }
75 if (j < outLen) { out[j++] = accum & 0xff; }
99 const void *_data, size_t size, AString *out) {
100 out->clear();
110 out->append(encode6Bit(x1 >> 2));
111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f));
112 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f));
113 out
98 encodeBase64( const void *_data, size_t size, AString *out) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioResamplerCubic.cpp35 void AudioResamplerCubic::resample(int32_t* out, size_t outFrameCount, argument
44 resampleMono16(out, outFrameCount, provider);
47 resampleStereo16(out, outFrameCount, provider);
52 void AudioResamplerCubic::resampleStereo16(int32_t* out, size_t outFrameCount, argument
81 out[outputIndex++] += vl * interp(&left, x);
82 out[outputIndex++] += vr * interp(&right, x);
83 // out[outputIndex++] += vr * in[inputIndex*2];
118 void AudioResamplerCubic::resampleMono16(int32_t* out, size_t outFrameCount, argument
148 out[outputIndex++] += vl * sample;
149 out[outputInde
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthAppConfiguration.java159 public void writeToParcel(Parcel out, int flags) { argument
160 out.writeString(mName);
161 out.writeInt(mDataType);
162 out.writeInt(mRole);
163 out.writeInt(mChannelType);
/frameworks/base/core/java/android/content/pm/
H A DProviderInfo.java120 @Override public void writeToParcel(Parcel out, int parcelableFlags) { argument
121 super.writeToParcel(out, parcelableFlags);
122 out.writeString(authority);
123 out.writeString(readPermission);
124 out.writeString(writePermission);
125 out.writeInt(grantUriPermissions ? 1 : 0);
126 out.writeTypedArray(uriPermissionPatterns, parcelableFlags);
127 out.writeTypedArray(pathPermissions, parcelableFlags);
128 out.writeInt(multiprocess ? 1 : 0);
129 out
[all...]
/frameworks/base/core/java/com/android/internal/net/
H A DLegacyVpnInfo.java51 public void writeToParcel(Parcel out, int flags) { argument
52 out.writeString(key);
53 out.writeInt(state);
54 out.writeParcelable(intent, flags);

Completed in 1643 milliseconds

1234567891011