Searched defs:out (Results 76 - 100 of 185) sorted by relevance

12345678

/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java359 public void writePoliciesToXml(XmlSerializer out) argument
361 out.attribute(null, "flags", Integer.toString(mUsesPolicies));
/frameworks/base/core/java/android/content/
H A DIntentSender.java226 public void writeToParcel(Parcel out, int flags) { argument
227 out.writeStrongBinder(mTarget.asBinder());
248 * @param out Where to write the IntentSender.
251 Parcel out) {
252 out.writeStrongBinder(sender != null ? sender.mTarget.asBinder()
250 writeIntentSenderOrNullToParcel(IntentSender sender, Parcel out) argument
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java407 public void writeToParcel(Parcel out, int flags) { argument
408 mFd.writeToParcel(out, flags);
409 out.writeLong(mStartOffset);
410 out.writeLong(mLength);
/frameworks/base/core/java/android/speech/srec/
H A DWaveHeader.java226 * @param out {@link java.io.OutputStream} to receive the header.
230 public int write(OutputStream out) throws IOException { argument
232 writeId(out, "RIFF");
233 writeInt(out, 36 + mNumBytes);
234 writeId(out, "WAVE");
237 writeId(out, "fmt ");
238 writeInt(out, 16);
239 writeShort(out, mFormat);
240 writeShort(out, mNumChannels);
241 writeInt(out, mSampleRat
253 writeId(OutputStream out, String id) argument
257 writeInt(OutputStream out, int val) argument
264 writeShort(OutputStream out, short val) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java140 * Clear out all children from the list
158 * Figure out the dimensions of this Spinner. The width comes from
380 public void writeToParcel(Parcel out, int flags) { argument
381 super.writeToParcel(out, flags);
382 out.writeLong(selectedId);
383 out.writeInt(position);
443 // System.out.print("Looking for " + position);
446 // System.out.println(" HIT");
449 // System.out.println(" MISS");
H A DCompoundButton.java301 public void writeToParcel(Parcel out, int flags) { argument
302 super.writeToParcel(out, flags);
303 out.writeValue(checked);
/frameworks/base/core/java/com/android/internal/http/multipart/
H A DPart.java200 * @param out The output stream
203 protected void sendStart(OutputStream out) throws IOException { argument
204 LOG.trace("enter sendStart(OutputStream out)");
205 out.write(EXTRA_BYTES);
206 out.write(getPartBoundary());
207 out.write(CRLF_BYTES);
213 * @param out The output stream
216 protected void sendDispositionHeader(OutputStream out) throws IOException { argument
217 LOG.trace("enter sendDispositionHeader(OutputStream out)");
218 out
229 sendContentTypeHeader(OutputStream out) argument
251 sendTransferEncodingHeader(OutputStream out) argument
266 sendEndOfHeader(OutputStream out) argument
277 sendData(OutputStream out) argument
292 sendEnd(OutputStream out) argument
305 send(OutputStream out) argument
358 sendParts(OutputStream out, final Part[] parts) argument
374 sendParts(OutputStream out, Part[] parts, byte[] partBoundary) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_EventLog.cpp24 // The size of the tag number comes out of the payload size.
152 jobject out) {
153 if (tags == NULL || out == NULL) {
220 env->CallBooleanMethod(out, gCollectionAddID, event);
150 android_util_EventLog_readEvents(JNIEnv* env, jobject clazz, jintArray tags, jobject out) argument
H A Dcom_android_internal_os_ZygoteInit.cpp109 jobject clazz, jobject in, jobject out, jobject errfd)
124 fd = jniGetFDFromFileDescriptor(env, out);
108 com_android_internal_os_ZygoteInit_reopenStdio(JNIEnv* env, jobject clazz, jobject in, jobject out, jobject errfd) argument
/frameworks/base/core/tests/utillib/src/coretestutils/http/
H A DMockWebServer.java156 OutputStream out = new BufferedOutputStream(s.getOutputStream());
170 writeResponse(out, response);
178 out.close();
277 private void writeResponse(OutputStream out, MockResponse response) throws IOException { argument
278 out.write((response.getStatus() + "\r\n").getBytes(ASCII));
284 out.write((header + "\r\n").getBytes(ASCII));
294 out.write(("\r\n").getBytes(ASCII));
320 out.write(currentBlock, 0, writeLength);
321 out.flush();
346 out
362 transfer(int length, InputStream in, OutputStream out) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DRect.java553 * @param out The parcel to write the rectangle's coordinates into
555 public void writeToParcel(Parcel out, int flags) { argument
556 out.writeInt(left);
557 out.writeInt(top);
558 out.writeInt(right);
559 out.writeInt(bottom);
H A DRectF.java392 * Set the dst integer Rect by rounding "out" this rectangle, choosing the
491 * @param out The parcel to write the rectangle's coordinates into
493 public void writeToParcel(Parcel out, int flags) { argument
494 out.writeFloat(left);
495 out.writeFloat(top);
496 out.writeFloat(right);
497 out.writeFloat(bottom);
/frameworks/base/graphics/java/android/renderscript/
H A DProgramStore.java101 public Builder(RenderScript rs, Element in, Element out) { argument
104 mOut = out;
/frameworks/base/libs/utils/
H A DDebug.cpp64 static char* appendhexnum(uint32_t val, char* out) argument
67 *out++ = makehexdigit( val>>i );
69 *out = 0;
70 return out;
78 static char* appendupperhexnum(uint32_t val, char* out) argument
81 *out++ = makeupperhexdigit( val>>i );
83 *out = 0;
84 return out;
87 static char* appendcharornum(char c, char* out, bool skipzero = true) argument
89 if (skipzero && c == 0) return out;
103 typetostring(uint32_t type, char* out, bool fullContext = true, bool strict = false) argument
[all...]
/frameworks/base/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp67 void AudioBiquadFilter::process(const audio_sample_t in[], audio_sample_t out[], argument
69 (this->*mCurProcessFunc)(in, out, frameCount);
142 audio_sample_t * out,
145 if (UNLIKELY(in != out)) {
146 memcpy(out, in, frameCount * mNumChannels * sizeof(audio_sample_t));
151 audio_sample_t * out,
176 (*out++) = y0;
185 audio_sample_t * out,
190 process_normal_mono(in, out, frameCount);
194 audio_sample_t * out,
141 process_bypass(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
150 process_normal_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
184 process_transition_normal_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
193 process_transition_bypass_mono(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
202 process_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
242 process_transition_normal_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
251 process_transition_bypass_multi(const audio_sample_t * in, audio_sample_t * out, int frameCount) argument
[all...]
/frameworks/base/media/libstagefright/
H A DAMRExtractor.cpp211 MediaBuffer **out, const ReadOptions *options) {
212 *out = NULL;
271 *out = buffer;
210 read( MediaBuffer **out, const ReadOptions *options) argument
H A DAudioSource.cpp208 MediaBuffer **out, const ReadOptions *options) {
215 *out = NULL;
285 *out = buffer;
335 *out = buffer;
207 read( MediaBuffer **out, const ReadOptions *options) argument
H A DJPEGSource.cpp111 MediaBuffer **out, const ReadOptions *options) {
112 *out = NULL;
136 *out = buffer;
110 read( MediaBuffer **out, const ReadOptions *options) argument
H A Davc_utils.cpp243 uint8_t *out = csd->data(); local
245 *out++ = 0x01; // configurationVersion
246 memcpy(out, seqParamSet->data() + 1, 3); // profile/level...
247 out += 3;
248 *out++ = (0x3f << 2) | 1; // lengthSize == 2 bytes
249 *out++ = 0xe0 | 1;
251 *out++ = seqParamSet->size() >> 8;
252 *out++ = seqParamSet->size() & 0xff;
253 memcpy(out, seqParamSet->data(), seqParamSet->size());
254 out
[all...]
/frameworks/base/media/libstagefright/codecs/aacenc/src/
H A Dblock_switch.c303 Word32 out; local
310 out = accu3 - accu2;
313 states1 = out;
315 tempFiltered = extract_h(out);
342 Word32 out; local
347 out = accu3 - accu2;
350 states[1] = out;
352 return round16(out);
/frameworks/base/media/libstagefright/codecs/amrwbenc/
H A DAMRWBEncoder.cpp193 MediaBuffer **out, const ReadOptions *options) {
196 *out = NULL;
293 *out = buffer;
192 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/avc/enc/
H A DAVCEncoder.cpp334 MediaBuffer **out, const ReadOptions *options) {
337 *out = NULL;
381 *out = outputBuffer;
422 *out = outputBuffer;
426 // Don't accept out-of-order samples
465 *out = outputBuffer;
501 *out = outputBuffer;
333 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/
H A DM4vH263Decoder.cpp177 MediaBuffer **out, const ReadOptions *options) {
178 *out = NULL;
271 *out = new MediaBuffer(0);
273 *out = mFrames[mNumSamplesOutput & 0x01];
274 (*out)->add_ref();
275 (*out)->meta_data()->setInt64(kKeyTime, timeUs);
176 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/
H A DM4vH263Encoder.cpp269 MediaBuffer **out, const ReadOptions *options) {
271 *out = NULL;
287 *out = outputBuffer;
316 *out = outputBuffer;
322 // Don't accept out-of-order samples
367 *out = outputBuffer;
268 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dsad_inline.h348 register int32 out; local
357 : "=&r"(out),
362 return out;
367 register int32 out; local
381 : "=&r"(out),
392 register int32 out; local
405 : "=&r"(out),
411 return (out);

Completed in 385 milliseconds

12345678