Searched refs:output (Results 51 - 75 of 98) sorted by relevance

1234

/frameworks/base/core/java/android/app/backup/
H A DFullBackup.java63 String linkdomain, String rootpath, String path, BackupDataOutput output);
72 * If the {@code mode} argument is negative, then the resulting output file will not
75 * @param data Socket supplying the data to be copied to the output file. If the
76 * output is a directory, this may be {@code null}.
82 * the output file or directory. If this parameter is negative then neither
85 * last modification time of the output file. if the {@code mode} parameter is
101 // Pull the data from the pipe, copying it to the output file, until we're done
62 backupToTar(String packageName, String domain, String linkdomain, String rootpath, String path, BackupDataOutput output) argument
/frameworks/base/services/audioflinger/
H A DAudioFlinger.cpp77 // allow less retry attempts on direct output thread.
386 int output,
405 PlaybackThread *thread = checkPlaybackThread_l(output);
408 LOGE("unknown output thread");
426 if (mPlaybackThreads.keyAt(i) != output) {
427 // prevent same audio session on different output threads
452 // move effect chain to this output thread if an effect on same session was waiting
476 uint32_t AudioFlinger::sampleRate(int output) const
479 PlaybackThread *thread = checkPlaybackThread_l(output);
481 LOGW("sampleRate() unknown thread %d", output);
377 createTrack( pid_t pid, int streamType, uint32_t sampleRate, uint32_t format, uint32_t channelMask, int frameCount, uint32_t flags, const sp<IMemory>& sharedBuffer, int output, int *sessionId, status_t *status) argument
652 setStreamVolume(int stream, float value, int output) argument
886 getRenderPosition(uint32_t *halFrames, uint32_t *dspFrames, int output) argument
1365 PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device) argument
1805 AudioStreamOut *output = mOutput; local
1833 MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device) argument
2471 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, int id, uint32_t device) argument
4946 AudioStreamOut *output = new AudioStreamOut(outHwDev, outStream); local
4993 closeOutput(int output) argument
5030 suspendOutput(int output) argument
5045 restoreOutput(int output) argument
5171 setStreamOutput(uint32_t stream, int output) argument
5353 AudioStreamOut *output = thread->getOutput(); local
[all...]
H A DAudioMixer.h131 typedef void (*hook_t)(track_t* t, int32_t* output, size_t numOutFrames, int32_t* temp, int32_t* aux);
/frameworks/base/tests/DumpRenderTree/assets/
H A Drun_reliability_tests.py97 output = ("%-70s%-10d%-10d%-12.2f%-12.2f%s\n" %
100 log_handle.write(output)
/frameworks/compile/linkloader/
H A Dmain.cpp103 time_t stub_time(time_t *output) { argument
104 return time(output);
/frameworks/ex/carousel/
H A DAndroid.mk29 # Include this library in the build server's output directory
/frameworks/ex/common/
H A DAndroid.mk28 # Include this library in the build server's output directory
/frameworks/support/v13/
H A DAndroid.mk45 # Include this library in the build server's output directory
/frameworks/base/opengl/libagl/
H A Dprimitives.cpp870 // output lists (we need 2, which we use back and forth)
879 // 3 input vertices, 0 in the output list, first plane
894 // pointers to our output list (head and current)
896 vertex_t** output = ovl; local
910 *output++ = p;
916 *output++ = buf++;
927 *output++ = buf++;
932 *output++ = p;
941 // output list become the new input list
960 // pointers to our output lis
962 vertex_t** output = ovl; local
[all...]
/frameworks/base/core/java/android/view/
H A DView.java5239 * @param outViews The output list of matching Views.
6961 * Return the visible drawing bounds of your view. Fills in the output
11150 String output = "";
11153 output += "TAKES_FOCUS";
11160 output += " ";
11162 output += "INVISIBLE";
11167 output += " ";
11169 output += "GONE";
11175 return output;
11186 String output
[all...]
H A DWindowManager.java1416 public String debug(String output) { argument
1417 output += "Contents of " + this + ":";
1418 Log.d("Debug", output);
1419 output = super.debug("");
1420 Log.d("Debug", output);
/frameworks/base/tests/CoreTests/android/core/
H A DMiscRegressionTest.java92 // Regression test for #1045939: Different output for Method.toString()
405 byte[] output = new byte[DATA_SIZE];
411 inflater.inflate(output);
413 assertEquals(input, output);
/frameworks/base/core/java/android/util/
H A DEventLog.java189 * @param output container to add events into
192 public static native void readEvents(int[] tags, Collection<Event> output) argument
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaImageItem.java850 String output = null;
855 output = mMANativeHelper.generateKenBurnsClip(editSettings, this);
856 setGeneratedImageClip(output);
858 clipSettings.clipPath = output;
/frameworks/base/core/java/android/hardware/
H A DCamera.java1981 * video output; otherwise, null is returned.
3062 * @param output focus distances in meters. output must be a float
3069 public void getFocusDistances(float[] output) { argument
3070 if (output == null || output.length != 3) {
3072 "output must be an float array with three elements.");
3074 splitFloat(get(KEY_FOCUS_DISTANCES), output);
3232 * output. This should be called before starting preview for the best
3354 private void splitInt(String str, int[] output) { argument
3366 splitFloat(String str, float[] output) argument
[all...]
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp832 uint8_t* output = dest + y * width; local
862 *output = (uint8_t)blurredPixel;
863 output ++;
875 uint8_t* output = dest + y * width; local
907 *output = (uint8_t) blurredPixel;
908 output ++;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DSMSDispatcher.java620 ByteArrayOutputStream output = new ByteArrayOutputStream();
623 output.write(pdus[i], 0, pdus[i].length);
625 byte[] datagram = output.toByteArray();
644 ByteArrayOutputStream output = new ByteArrayOutputStream();
648 output.write(data, 0, data.length);
651 return mWapPush.dispatchWapPdu(output.toByteArray());
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java954 ByteArrayOutputStream output = new ByteArrayOutputStream();
956 output.write(mEnvelope.teleService);
957 output.write(mEnvelope.origAddress.origBytes, 0, mEnvelope.origAddress.origBytes.length);
958 output.write(mEnvelope.bearerData, 0, mEnvelope.bearerData.length);
959 output.write(mEnvelope.origSubaddress.origBytes, 0,
962 return output.toByteArray();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DVideoEditorPerformance.java104 Writer output = new BufferedWriter(new FileWriter(outFile, true));
105 output.write(testCaseName + "\n\t");
107 output.write(information[i]);
109 output.write("\n\n");
110 output.close();
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java613 DataOutputStream output = new DataOutputStream(new FileOutputStream(file));
632 output.write(randomData);
641 output.close();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DVideoEditorStressTest.java127 Writer output = new BufferedWriter(new FileWriter(outFile, true));
129 output.write(information[i]);
131 output.close();
137 Writer output = new BufferedWriter(new FileWriter(outFile, true));
138 output.write("\n\n" + testCaseName + "\n");
139 output.close();
/frameworks/support/v4/
H A DAndroid.mk88 # Include this library in the build server's output directory
/frameworks/base/include/media/
H A DAudioTrack.h355 /* returns a handle on the audio output used by this AudioTrack.
361 * handle on audio hardware output
376 /* Attach track auxiliary output to specified effect. Used effectId = 0
448 audio_io_handle_t output,
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dmp4dec_lib.h286 void PostFilter(VideoDecData *video, int filer_type, uint8 *output);
/frameworks/base/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
H A Dh264bsdFillRow7.s24 ; Input / output registers

Completed in 452 milliseconds

1234