Searched defs:dump (Results 76 - 100 of 278) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/power/
H A DPowerUI.java287 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:PowerUI
/frameworks/av/include/media/
H A DMediaPlayerInterface.h197 virtual status_t dump(int fd, const Vector<String16> &args) const { function in class:android::MediaPlayerBase
/frameworks/av/media/libmedia/
H A DJetPlayer.cpp464 void JetPlayer::dump() function in class:android::JetPlayer
466 ALOGE("JetPlayer dump: JET file=%s", mEasJetFileLoc->path);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp328 status_t MediaRecorderClient::dump(int fd, const Vector<String16>& args) const { function in class:android::MediaRecorderClient
330 return mRecorder->dump(fd, args);
H A DStagefrightPlayer.cpp216 status_t StagefrightPlayer::dump(int fd, const Vector<String16> &args) const { function in class:android::StagefrightPlayer
217 return mPlayer->dump(fd, args);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp332 status_t NuPlayerDriver::dump(int fd, const Vector<String16> &args) const { function in class:android::NuPlayerDriver
/frameworks/av/media/libstagefright/
H A DSurfaceMediaSource.cpp99 void SurfaceMediaSource::dump(String8& result) const function in class:android::SurfaceMediaSource
102 dump(result, "", buffer, 1024);
105 void SurfaceMediaSource::dump(String8& result, const char* prefix, function in class:android::SurfaceMediaSource
111 mBufferQueue->dump(result);
/frameworks/av/services/camera/libcameraservice/camera2/
H A DCameraMetadata.cpp253 void CameraMetadata::dump(int fd, int verbosity, int indentation) const { function in class:android::camera2::CameraMetadata
H A DCaptureSequencer.cpp131 void CaptureSequencer::dump(int fd, const Vector<String16>& args) { function in class:android::camera2::CaptureSequencer
136 mCaptureRequest.dump(fd, 2, 6);
145 mNewFrame.dump(fd, 2, 6);
H A DJpegProcessor.cpp167 void JpegProcessor::dump(int fd, const Vector<String16>& args) const { function in class:android::camera2::JpegProcessor
H A DStreamingProcessor.cpp631 status_t StreamingProcessor::dump(int fd, const Vector<String16>& args) { function in class:android::camera2::StreamingProcessor
638 mPreviewRequest.dump(fd, 2, 6);
647 mRecordingRequest.dump(fd, 2, 6);
H A DZslProcessor.cpp370 void ZslProcessor::dump(int fd, const Vector<String16>& args) const { function in class:android::camera2::ZslProcessor
375 mLatestCapturedRequest.dump(fd, 2, 6);
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java391 public void dump(Printer pw, String prefix) { method in class:ApplicationErrorReport.CrashInfo
448 public void dump(Printer pw, String prefix) { method in class:ApplicationErrorReport.AnrInfo
509 public void dump(Printer pw, String prefix) { method in class:ApplicationErrorReport.BatteryInfo
556 public void dump(Printer pw, String prefix) { method in class:ApplicationErrorReport.RunningServiceInfo
580 public void dump(Printer pw, String prefix) { method in class:ApplicationErrorReport
590 crashInfo.dump(pw, prefix);
593 anrInfo.dump(pw, prefix);
596 batteryInfo.dump(pw, prefix);
599 runningServiceInfo.dump(pw, prefix);
H A DDialogFragment.java545 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { method in class:DialogFragment
546 super.dump(prefix, fd, writer, args);
H A DService.java671 * named system services and which invokes the {@link IBinder#dump} method
674 * @param fd The raw file descriptor that the dump is being sent to.
675 * @param writer The PrintWriter to which you should dump your state. This will be
677 * @param args additional arguments to the dump request.
679 protected void dump(FileDescriptor fd, PrintWriter writer, String[] args) { method in class:Service
680 writer.println("nothing to dump");
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java432 public void dump(Printer pw, String prefix) { method in class:DeviceAdminInfo
434 mReceiver.dump(pw, prefix + " ");
/frameworks/base/core/java/android/content/
H A DCursorLoader.java235 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { method in class:CursorLoader
236 super.dump(prefix, fd, writer, args);
H A DLoader.java508 * @param fd The raw file descriptor that the dump is being sent to.
509 * @param writer A PrintWriter to which the dump is to be set.
510 * @param args Additional arguments to the dump request.
512 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { method in class:Loader
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java166 public void dump(FileDescriptor fd, PrintWriter fout, String[] args, int userId) { method in class:RegisteredServicesCache
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java116 // Need a valid reference to the inputMethod for everything except a dump.
130 target.dump((FileDescriptor)args.arg1,
200 @Override protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { method in class:IInputMethodWrapper
208 fout.println("Permission Denial: can't dump InputMethodManager from from pid="
219 fout.println("Timeout waiting for dump");
222 fout.println("Interrupted waiting for dump");
/frameworks/base/core/java/android/net/http/
H A DRequestQueue.java134 StringBuilder dump = new StringBuilder();
136 dump.append(mThreads[i] + "\n");
138 HttpLog.v(dump.toString());
340 // dump();
419 synchronized void dump() { method in class:RequestQueue
420 HttpLog.v("dump()");
421 StringBuilder dump = new StringBuilder();
425 // mActivePool.log(dump);
440 dump.append(line);
441 dump
[all...]
/frameworks/base/core/java/android/os/
H A DBinder.java236 dump(fd.getFileDescriptor(), args);
258 * {@link #dump(FileDescriptor, PrintWriter, String[])}.
260 public void dump(FileDescriptor fd, String[] args) { method in class:Binder
264 dump(fd, pw, args);
271 * Like {@link #dump(FileDescriptor, String[])}, but ensures the target
280 dump(fd, pw, args);
292 * @param fd The raw file descriptor that the dump is being sent to.
293 * @param fout The file to which you should dump your state. This will be
295 * @param args additional arguments to the dump request.
297 protected void dump(FileDescripto method in class:Binder
387 public void dump(FileDescriptor fd, String[] args) throws RemoteException { method in class:BinderProxy
[all...]
/frameworks/base/core/java/android/server/search/
H A DSearchables.java454 void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:Searchables
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java327 public void dump(Printer pw, String prefix) { method in class:EditorInfo
H A DInputMethodInfo.java343 public void dump(Printer pw, String prefix) { method in class:InputMethodInfo
349 mService.dump(pw, prefix + " ");

Completed in 418 milliseconds

1234567891011>>