Searched defs:out (Results 51 - 75 of 145) sorted by relevance

123456

/frameworks/base/media/libstagefright/codecs/amrnb/enc/
H A DAMRNBEncoder.cpp147 MediaBuffer **out, const ReadOptions *options) {
150 *out = NULL;
229 *out = buffer;
146 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/amrwb/
H A DAMRWBDecoder.cpp132 MediaBuffer **out, const ReadOptions *options) {
135 *out = NULL;
219 *out = buffer;
131 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/
H A DM4vH263Decoder.cpp175 MediaBuffer **out, const ReadOptions *options) {
176 *out = NULL;
224 *out = mFrames[mNumSamplesOutput & 0x01];
225 (*out)->add_ref();
229 (*out)->meta_data()->setInt64(kKeyTime, timeUs);
174 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/media/libstagefright/codecs/vorbis/dec/
H A DVorbisDecoder.cpp155 int VorbisDecoder::decodePacket(MediaBuffer *packet, MediaBuffer *out) { argument
183 mState, (int16_t *)out->data(), kMaxNumSamplesPerBuffer);
191 out->set_range(0, numFrames * sizeof(int16_t) * mNumChannels);
197 MediaBuffer **out, const ReadOptions *options) {
200 *out = NULL;
243 *out = outputBuffer;
196 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java230 public static boolean copyToFile(InputStream inputStream, FileOutputStream out) { argument
235 out.write(buffer, 0, bytesRead);
244 public static boolean copyToFile(File srcFile, FileOutputStream out) { argument
248 return copyToFile(inputStream, out);
/frameworks/base/packages/VpnServices/src/com/android/server/vpn/
H A DDaemonProxy.java82 OutputStream out = getControlSocketOutput();
83 for (String arg : args) outputString(out, arg);
84 out.write(END_OF_ARGUMENTS);
85 out.flush();
185 private void outputString(OutputStream out, String s) throws IOException { argument
187 out.write(bytes.length);
188 out.write(bytes);
189 out.flush();
/frameworks/base/services/java/com/android/server/am/
H A DDeviceMonitor.java113 OutputStream out = new FileOutputStream(
119 dump(new File(processDirectory, "stat"), out);
125 dump(file, out);
128 closeQuietly(out);
147 private void dump(File from, OutputStream out) throws IOException { argument
148 writeHeader(from, out);
155 out.write(buffer, 0, count);
165 private static void writeHeader(File file, OutputStream out) argument
168 out.write(header.getBytes());
/frameworks/base/tools/preload/
H A DMemoryUsage.java192 System.err.println("Timed out while measuring "
274 private static void copy(InputStream in, OutputStream out) { argument
279 out.write(buffer, 0, read);
/frameworks/base/cmds/runtime/
H A Dmain_runtime.cpp416 const char* out = NULL; local
418 //out = getenv("ANDROID_PRODUCT_OUT");
420 if (out == NULL)
421 out = "";
423 char* systemDir = (char*) malloc(strlen(out) + strlen(kSystemDir) +1);
424 char* dataDir = (char*) malloc(strlen(out) + strlen(kDataDir) +1);
426 sprintf(systemDir, "%s%s", out, kSystemDir);
427 sprintf(dataDir, "%s%s", out, kDataDir);
449 // directory out from under us. Preserve the behavior for now.
/frameworks/base/core/java/android/app/
H A DPendingIntent.java469 public void writeToParcel(Parcel out, int flags) { argument
470 out.writeStrongBinder(mTarget.asBinder());
491 * @param out Where to write the PendingIntent.
494 Parcel out) {
495 out.writeStrongBinder(sender != null ? sender.mTarget.asBinder()
493 writePendingIntentOrNullToParcel(PendingIntent sender, Parcel out) argument
/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.java206 public void writeToParcel(Parcel out, int flags) { argument
207 out.writeStrongBinder(mTarget.asBinder());
228 * @param out Where to write the IntentSender.
231 Parcel out) {
232 out.writeStrongBinder(sender != null ? sender.mTarget.asBinder()
230 writeIntentSenderOrNullToParcel(IntentSender sender, Parcel out) argument
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java403 public void writeToParcel(Parcel out, int flags) { argument
404 mFd.writeToParcel(out, flags);
405 out.writeLong(mStartOffset);
406 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/java/com/android/internal/view/
H A DBaseIWindow.java108 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
/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/graphics/java/android/graphics/
H A DRect.java551 * @param out The parcel to write the rectangle's coordinates into
553 public void writeToParcel(Parcel out, int flags) { argument
554 out.writeInt(left);
555 out.writeInt(top);
556 out.writeInt(right);
557 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/audioflinger/
H A DAudioHardwareGeneric.cpp79 AudioStreamOutGeneric* out = new AudioStreamOutGeneric(); local
80 status_t lStatus = out->set(this, mFd, devices, format, channels, sampleRate);
85 mOutput = out;
87 delete out;
92 void AudioHardwareGeneric::closeOutputStream(AudioStreamOut* out) { argument
93 if (mOutput && out == mOutput) {
H A DAudioHardwareStub.cpp48 AudioStreamOutStub* out = new AudioStreamOutStub(); local
49 status_t lStatus = out->set(format, channels, sampleRate);
54 return out;
55 delete out;
59 void AudioHardwareStub::closeOutputStream(AudioStreamOut* out) argument
61 delete out;

Completed in 1582 milliseconds

123456