Searched defs:output (Results 51 - 58 of 58) sorted by relevance

123

/frameworks/base/core/java/android/view/
H A DWindowManager.java1565 public String debug(String output) { argument
1566 output += "Contents of " + this + ":";
1567 Log.d("Debug", output);
1568 output = super.debug("");
1569 Log.d("Debug", output);
H A DViewGroup.java4693 String output;
4696 output = debugIndent(depth);
4697 output += "mFocused";
4698 Log.d(VIEW_LOG_TAG, output);
4701 output = debugIndent(depth);
4702 output += "{";
4703 Log.d(VIEW_LOG_TAG, output);
4712 output = debugIndent(depth);
4713 output += "}";
4714 Log.d(VIEW_LOG_TAG, output);
5657 debug(String output) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java1264 public String debug(String output) { argument
1265 return output + "ViewGroup.LayoutParams={ width=" + sizeToString(width) +
/frameworks/base/core/jni/android/graphics/
H A DPaint.cpp260 static void toLanguageTag(char* output, size_t outSize, argument
262 if (output == NULL || outSize <= 0) {
266 output[0] = '\0';
280 uloc_toLanguageTag(likelyChars, output, outSize, FALSE, &uErr);
296 output[0] = '\0';
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.cpp317 void DisplayList::output(OpenGLRenderer& renderer, uint32_t level) { function in class:android::uirenderer::DisplayList
864 * in the output() function, since that function processes the same list of opcodes for the
/frameworks/base/core/java/android/hardware/
H A DCamera.java2196 * video output; otherwise, null is returned.
3312 * @param output focus distances in meters. output must be a float
3319 public void getFocusDistances(float[] output) { argument
3320 if (output == null || output.length != 3) {
3322 "output must be a float array with three elements.");
3324 splitFloat(get(KEY_FOCUS_DISTANCES), output);
3482 * output. This should be called before starting preview for the best
3608 private void splitInt(String str, int[] output) { argument
3620 splitFloat(String str, float[] output) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java371 FullBackupParams(ParcelFileDescriptor output, boolean saveApks, boolean saveShared, argument
373 fd = output;
2188 // renaming *all* the output state files (see below) until that happens.
2347 BackupDataOutput output = new BackupDataOutput(
2356 output);
2360 writeApkToBackup(mPackage, output);
2735 private void writeApkToBackup(PackageInfo pkg, BackupDataOutput output) { argument
2740 apkDir, appSourceDir, output);
2756 obbDirName, obb.getAbsolutePath(), output);
3365 // send it to the output pip
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp115 // allow less retry attempts on direct output thread.
450 audio_io_handle_t output,
471 PlaybackThread *thread = checkPlaybackThread_l(output);
474 ALOGE("unknown output thread");
484 // output thread and move it here.
487 if (mPlaybackThreads.keyAt(i) != output) {
508 // move effect chain to this output thread if an effect on same session was waiting
547 uint32_t AudioFlinger::sampleRate(audio_io_handle_t output) const
550 PlaybackThread *thread = checkPlaybackThread_l(output);
552 ALOGW("sampleRate() unknown thread %d", output);
441 createTrack( pid_t pid, audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, int frameCount, IAudioFlinger::track_flags_t flags, const sp<IMemory>& sharedBuffer, audio_io_handle_t output, pid_t tid, int *sessionId, status_t *status) argument
770 setStreamVolume(audio_stream_type_t stream, float value, audio_io_handle_t output) argument
1543 PlaybackThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device, type_t type) argument
2190 AudioStreamOut *output = mOutput; local
2255 MixerThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device, type_t type) argument
3695 DirectOutputThread(const sp<AudioFlinger>& audioFlinger, AudioStreamOut* output, audio_io_handle_t id, audio_devices_t device) argument
7000 AudioStreamOut *output = new AudioStreamOut(outHwDev, outStream); local
7058 closeOutput(audio_io_handle_t output) argument
7063 closeOutput_nonvirtual(audio_io_handle_t output) argument
7102 suspendOutput(audio_io_handle_t output) argument
7117 restoreOutput(audio_io_handle_t output) argument
7247 setStreamOutput(audio_stream_type_t stream, audio_io_handle_t output) argument
7392 AudioStreamOut *output = thread->getOutput(); local
[all...]

Completed in 1543 milliseconds

123