Searched refs:dump (Results 176 - 200 of 380) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/os/
H A DHandler.java679 public final void dump(Printer pw, String prefix) { method in class:Handler
684 mLooper.dump(pw, prefix + " ");
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java343 public void dump(Printer pw, String prefix) { method in class:InputMethodInfo
349 mService.dump(pw, prefix + " ");
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsRecorder.java371 getOrLoadCompleteLocked().dump(pw);
374 mSinceBoot.dump(pw);
/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowToken.java225 void dump(PrintWriter pw, String prefix) { method in class:AppWindowToken
226 super.dump(pw, prefix);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp298 status_t MediaPlayerService::AudioCache::dump(int fd, const Vector<String16>& args) const function in class:android::MediaPlayerService::AudioCache
320 status_t MediaPlayerService::AudioOutput::dump(int fd, const Vector<String16>& args) const function in class:android::MediaPlayerService::AudioOutput
339 mTrack->dump(fd, args);
344 status_t MediaPlayerService::Client::dump(int fd, const Vector<String16>& args) const function in class:android::MediaPlayerService::Client
355 mPlayer->dump(fd, args);
358 mAudioOutput->dump(fd, args);
364 status_t MediaPlayerService::dump(int fd, const Vector<String16>& args) function in class:android::MediaPlayerService
371 "can't dump MediaPlayerService from pid=%d, uid=%d\n",
379 if (c != 0) c->dump(fd, args);
391 c->dump(f
[all...]
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java236 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { method in class:BackStackRecord
237 dump(prefix, writer, true);
240 void dump(String prefix, PrintWriter writer, boolean full) { method in class:BackStackRecord
587 dump(" ", null, pw, null);
695 dump(" ", null, pw, null);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1044 * @param printer The printer to receive the dump, not null.
1045 * @param verbose True to dump more verbose information.
1047 public void dump(Printer printer, boolean verbose) { method in class:SQLiteConnection
1062 * @param printer The printer to receive the dump, not null.
1063 * @param verbose True to dump more verbose information.
1073 mRecentOperations.dump(printer);
1076 mPreparedStatementCache.dump(printer);
1257 public void dump(Printer printer) { method in class:SQLiteConnection.PreparedStatementCache
1402 public void dump(Printer printer) { method in class:SQLiteConnection.OperationLog
H A DSQLiteConnectionPool.java998 * @param printer The printer to receive the dump, not null.
999 * @param verbose True to dump more verbose information.
1001 public void dump(Printer printer, boolean verbose) { method in class:SQLiteConnectionPool
1010 mAvailablePrimaryConnection.dump(indentedPrinter, verbose);
1019 mAvailableNonPrimaryConnections.get(i).dump(indentedPrinter, verbose);
/frameworks/base/services/input/
H A DInputDispatcher.h278 virtual void dump(String8& dump) = 0;
370 virtual void dump(String8& dump);
1059 void dumpDispatchStateLocked(String8& dump);
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java54 f.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), " ");
90 f.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), " ");
137 filter.dump(printer, fprefix + " ");
144 public boolean dump(PrintWriter out, String title, String prefix, String packageName, method in class:IntentResolver
652 src.dump(printer, "");
H A DNotificationManagerService.java338 void dump(PrintWriter pw, String prefix, Context baseContext) { method in class:NotificationManagerService.NotificationRecord
390 void dump(PrintWriter pw, String prefix) { method in class:NotificationManagerService.ToastRecord
1433 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:NotificationManagerService
1436 pw.println("Permission Denial: can't dump NotificationManager from from pid="
1451 mToastQueue.get(i).dump(pw, " ");
1463 mNotificationList.get(i).dump(pw, " ", mContext);
1472 mLights.get(i).dump(pw, " ", mContext);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp542 // stack.dump("");
750 if (mFbDev && mFbDev->common.version >= 1 && mFbDev->dump) {
753 mFbDev->dump(mFbDev, buffer, SIZE);
912 void HWComposer::dump(String8& result, char* buffer, size_t SIZE) const { function in class:android::HWComposer
981 if (mHwc && mHwc->dump) {
982 mHwc->dump(mHwc, buffer, SIZE);
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java236 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { method in class:BackStackRecord
237 dump(prefix, writer, true);
240 public void dump(String prefix, PrintWriter writer, boolean full) { method in class:BackStackRecord
587 dump(" ", null, pw, null);
695 dump(" ", null, pw, null);
H A DFragmentActivity.java640 * @param fd The raw file descriptor that the dump is being sent to.
641 * @param writer The PrintWriter to which you should dump your state. This will be
643 * @param args additional arguments to the dump request.
645 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { method in class:FragmentActivity
648 //ActivityCompatHoneycomb.dump(this, prefix, fd, writer, args);
665 mLoaderManager.dump(prefix + " ", fd, writer, args);
667 mFragments.dump(prefix, fd, writer, args);
/frameworks/av/services/camera/libcameraservice/
H A DCameraHardwareInterface.h430 status_t dump(int fd, const Vector<String16>& args) const function in class:android::CameraHardwareInterface
433 if (mDevice->ops->dump)
434 return mDevice->ops->dump(mDevice, fd);
435 return OK; // It's fine if the HAL doesn't implement dump()
H A DCameraService.cpp463 status_t CameraService::dump(int fd, const Vector<String16>& args) { function in class:android::CameraService
467 "can't dump CameraService from pid=%d, uid=%d\n",
533 result = String8::format(" Device is open. Client instance dump:\n");
535 client->dump(fd, args);
/frameworks/av/services/camera/libcameraservice/camera2/
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 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/native/services/sensorservice/
H A DSensorService.cpp191 status_t SensorService::dump(int fd, const Vector<String16>& args) function in class:android::SensorService
198 "can't dump SurfaceFlinger from pid=%d, uid=%d\n",
219 SensorFusion::getInstance().dump(result, buffer, SIZE);
220 SensorDevice::getInstance().dump(result, buffer, SIZE);
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp707 void Layer::dump(String8& result, char* buffer, size_t SIZE) const function in class:android::Layer
709 LayerBaseClient::dump(result, buffer, SIZE);
729 mSurfaceTexture->dump(result, " ", buffer, SIZE);
/frameworks/av/camera/
H A DCameraParameters.cpp452 void CameraParameters::dump() const function in class:android::CameraParameters
454 ALOGD("dump: mMap.size = %d", mMap.size());
463 status_t CameraParameters::dump(int fd, const Vector<String16>& args) const function in class:android::CameraParameters
468 snprintf(buffer, 255, "CameraParameters::dump: mMap.size = %d\n", mMap.size());
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPlayer.cpp560 status_t VideoEditorPlayer::VeAudioOutput::dump(int fd, const Vector<String16>& args) const function in class:android::VideoEditorPlayer::VeAudioOutput
575 mTrack->dump(fd, args);
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp570 status_t AudioPolicyService::dump(int fd, const Vector<String16>& args) function in class:android::AudioPolicyService
583 mAudioCommandThread->dump(fd);
586 mTonePlaybackThread->dump(fd);
590 mpAudioPolicy->dump(mpAudioPolicy, fd);
604 "can't dump AudioPolicyService from pid=%d, uid=%d\n",
748 status_t AudioPolicyService::AudioCommandThread::dump(int fd) function in class:android::AudioPolicyService::AudioCommandThread
768 mAudioCommands[i]->dump(buffer, SIZE);
772 mLastCommand.dump(buffer, SIZE);
994 void AudioPolicyService::AudioCommandThread::AudioCommand::dump(char* buffer, size_t size) function in class:android::AudioPolicyService::AudioCommandThread::AudioCommand
/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 + " ");

Completed in 2451 milliseconds

1234567891011>>