Searched refs:dump (Results 276 - 300 of 576) sorted by relevance

<<11121314151617181920>>

/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES20RenderEngine.cpp318 void GLES20RenderEngine::dump(String8& result) { function in class:android::GLES20RenderEngine
319 RenderEngine::dump(result);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DSupplicantStateTracker.java408 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:SupplicantStateTracker
409 super.dump(fd, pw, args);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcController.java434 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:DcController
435 super.dump(fd, pw, args);
/frameworks/native/libs/ui/
H A DRegion.cpp553 reg.dump(name);
652 lhs.dump("lhs");
653 rhs.dump("rhs");
654 dst.dump("dst");
809 void Region::dump(String8& out, const char* what, uint32_t flags) const function in class:android::Region
829 void Region::dump(const char* what, uint32_t flags) const function in class:android::Region
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java1051 * @param printer The printer to receive the dump, not null.
1052 * @param verbose True to dump more verbose information.
1054 public void dump(Printer printer, boolean verbose) { method in class:SQLiteConnection
1069 * @param printer The printer to receive the dump, not null.
1070 * @param verbose True to dump more verbose information.
1080 mRecentOperations.dump(printer, verbose);
1083 mPreparedStatementCache.dump(printer);
1264 public void dump(Printer printer) { method in class:SQLiteConnection.PreparedStatementCache
1409 public void dump(Printer printer, boolean verbose) { 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/core/java/com/android/server/
H A DIntentResolver.java54 f.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), " ");
198 f.dump(new LogPrinter(Log.VERBOSE, TAG, Log.LOG_ID_SYSTEM), " ");
245 filter.dump(printer, fprefix + " ");
252 public boolean dump(PrintWriter out, String title, String prefix, String packageName, method in class:IntentResolver
696 filter.dump(logPrinter, " ");
/frameworks/native/services/inputflinger/
H A DInputDispatcher.h278 virtual void dump(String8& dump) = 0;
370 virtual void dump(String8& dump);
1081 void dumpDispatchStateLocked(String8& dump);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.cpp135 void CaptureSequencer::dump(int fd, const Vector<String16>& /*args*/) { function in class:android::camera2::CaptureSequencer
140 mCaptureRequest.dump(fd, 2, 6);
149 mNewFrame.dump(fd, 2, 6);
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.h439 status_t dump(int fd, const Vector<String16>& /*args*/) const function in class:android::CameraHardwareInterface
442 if (mDevice->ops->dump)
443 return mDevice->ops->dump(mDevice, fd);
444 return OK; // It's fine if the HAL doesn't implement dump()
/frameworks/base/services/core/java/com/android/server/dreams/
H A DDreamManagerService.java140 public void dump(PrintWriter pw) {
141 mController.dump(pw);
464 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:DreamManagerService.BinderService
467 pw.println("Permission Denial: can't dump DreamManager from from pid="
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCard.java625 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:UiccCard
659 app.dump(fd, pw, args);
668 ir.dump(fd, pw, args);
/frameworks/support/v4/java/android/support/v4/app/
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/camera/
H A DCameraParameters.cpp458 void CameraParameters::dump() const function in class:android::CameraParameters
460 ALOGD("dump: mMap.size = %zu", mMap.size());
469 status_t CameraParameters::dump(int fd, const Vector<String16>& /*args*/) const function in class:android::CameraParameters
474 snprintf(buffer, 255, "CameraParameters::dump: mMap.size = %zu\n", mMap.size());
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h121 virtual status_t dump(int fd, const Vector<String16>& args);
168 virtual status_t dump(int fd, const Vector<String16>& args) = 0;
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp157 status_t Camera2Device::dump(int fd, const Vector<String16>& args) { function in class:android::Camera2Device
170 result.appendFormat(" Camera2Device[%d] dump (detail level %d):\n",
176 mRequestQueue.dump(fd, args);
180 mFrameQueue.dump(fd, args);
186 (*s)->dump(fd, args);
189 result = " HAL device dump:\n";
193 res = mHal2Device->ops->dump(mHal2Device, fd);
858 status_t Camera2Device::MetadataQueue::dump(int fd, function in class:android::Camera2Device::MetadataQueue
1267 status_t Camera2Device::StreamAdapter::dump(int fd, function in class:android::Camera2Device::StreamAdapter
1506 status_t Camera2Device::ReprocessStreamAdapter::dump(in function in class:android::Camera2Device::ReprocessStreamAdapter
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java448 public void dump(Printer pw, String prefix) { method in class:DeviceAdminInfo
450 mReceiver.dump(pw, prefix + " ");
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java430 public void dump(Printer pw, String prefix) { method in class:InputMethodInfo
436 mService.dump(pw, prefix + " ");
/frameworks/base/services/core/java/com/android/server/am/
H A DProviderMap.java255 r.dump(pw, " ", dumpAll);
390 r.dump(pw, innerPrefix, true);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecController.java603 void dump(final IndentingPrintWriter pw) { method in class:HdmiCecController
607 mLocalDevices.valueAt(i).dump(pw);
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java382 public void dump(String prefix, PrintWriter pw) { method in class:TaskStack
405 token.dump(pw, " ");
/frameworks/base/services/print/java/com/android/server/print/
H A DRemotePrintSpooler.java317 public void dump(FileDescriptor fd, PrintWriter pw, String prefix) { method in class:RemotePrintSpooler
327 getRemoteInstanceLazy().asBinder().dump(fd, new String[]{prefix});
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLTextureViewActivity.java70 File dump = new File(Environment.getExternalStorageDirectory(), "out.png");
71 out = new BufferedOutputStream(new FileOutputStream(dump));
/frameworks/native/libs/gui/
H A DBufferQueueConsumer.cpp519 void BufferQueueConsumer::dump(String8& result, const char* prefix) const { function in class:android::BufferQueueConsumer
520 mCore->dump(result, prefix);
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp493 void DisplayDevice::dump(String8& result) const { function in class:DisplayDevice
514 mDisplaySurface->dump(surfaceDump);

Completed in 551 milliseconds

<<11121314151617181920>>