/frameworks/native/include/gui/ |
BufferQueue.h | 230 // dump our state in a String 231 virtual void dump(String8& result) const; 232 virtual void dump(String8& result, const char* prefix, char* buffer, size_t SIZE) const;
|
/frameworks/native/libs/binder/ |
Binder.cpp | 132 status_t BBinder::dump(int fd, const Vector<String16>& args) function in class:android::BBinder 201 return dump(fd, args);
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
FramebufferSurface.cpp | 161 // void dump(FrameBufferSurface* fbs, String8& s) { 162 // // calls FramebufferSurface::dump() 163 // fbs->dump(s); 165 // // calls ConsumerBase::dump() since it is non-virtual 166 // static_cast<ConsumerBase*>(fbs)->dump(s); 168 // // calls FramebufferSurface::dump() since it is virtual 169 // static_cast<DisplaySurface*>(fbs)->dump(s); 172 // to ConsumerBase::dump() here. It will take the internal lock, and then call 174 void FramebufferSurface::dump(String8& result) const { function in class:android::FramebufferSurface 175 ConsumerBase::dump(result) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
UiccController.java | 225 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:UiccController 239 mUiccCard.dump(fd, pw, args);
|
/frameworks/rs/ |
rsObjectBase.cpp | 46 mDH->dump(); 122 mDH->dump();
|
/frameworks/support/v4/java/android/support/v4/content/ |
CursorLoader.java | 195 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { method in class:CursorLoader 196 super.dump(prefix, fd, writer, args);
|
/hardware/libhardware/include/hardware/ |
audio.h | 174 /** dump the state of the audio input/output device */ 175 int (*dump)(const struct audio_stream *stream, int fd); member in struct:audio_stream 417 int (*dump)(const struct audio_hw_device *dev, int fd); member in struct:audio_hw_device
|
/hardware/msm7k/libcamera/ |
QualcommCameraHardware.h | 36 virtual status_t dump(int fd, const Vector<String16>& args) const; 119 virtual status_t dump(int fd, const Vector<String16>& args) const;
|
/hardware/qcom/display/liboverlay/ |
overlayUtils.h | 182 void dump() const; 206 void dump() const; 402 void dump(const char* const s) const; 550 inline void Whf::dump() const { function in class:overlay::utils::Whf 551 ALOGE("== Dump WHF w=%d h=%d f=%d s=%d start/end ==", 555 inline void Dim::dump() const { function in class:overlay::utils::Dim 556 ALOGE("== Dump Dim x=%d y=%d w=%d h=%d start/end ==", x, y, w, h); 688 inline void ScreenInfo::dump(const char* const s) const { function in class:overlay::utils::ScreenInfo 689 ALOGE("== Dump %s ScreenInfo w=%d h=%d" 777 /* dump the state of the instance * 845 inline void OvFD::dump() const function in class:overlay::OvFD [all...] |
/ndk/build/tools/ |
build-host-awk.sh | 94 dump "Packaging: $ARCHIVE"
|
build-host-sed.sh | 84 dump "Packaging: $ARCHIVE"
|
build-host-toolbox.sh | 119 dump "Packaging : $ARCHIVE"
|
build-ndk-stack.sh | 107 dump "Packaging: $ARCHIVE"
|
deploy-host-mcld.sh | 113 dump "Done."
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
TestLoaderManager.java | 222 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { 223 mDelegate.dump(prefix, fd, writer, args);
|
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/ |
dic_node_priority_queue.h | 116 AK_FORCE_INLINE void dump() const { function in class:latinime::DicNodePriorityQueue 120 mDicNodesBuf[i].dump("QUEUE: "); 172 AKLOGI("Dump node availability, %d, %d, %d",
|
/bootable/diskinstaller/ |
installer.c | 53 fprintf(stderr, "\t-d - Dump the compiled in partition info.\n"); 387 int dump = 0; local 408 dump = 1; 418 if (inst_data_dev && !dump) { 446 if (dump) {
|
/cts/tests/tests/content/src/android/content/res/cts/ |
Resources_ThemeTest.java | 46 mResTheme.dump(1, "hello", "world");
|
/dalvik/dx/src/com/android/dx/command/ |
Main.java | 32 " [--keep-classes] [--output=<file>] [--dump-to=<file>] " + 33 "[--dump-width=<n>]\n" + 34 " [--dump-method=<name>[*]] [--verbose-dump] [--no-files] " + 45 " dx --dump [--debug] [--strict] [--bytes] [--optimize]\n" + 49 " Dump classfiles, or transformations thereof, in a " + 93 } else if (arg.equals("--dump")) { 94 com.android.dx.command.dump.Main.main(without(args, i));
|
/dalvik/dx/src/com/android/dx/command/dump/ |
BlockDumper.java | 17 package com.android.dx.command.dump; 49 * Utility to dump basic block info from methods in a human-friendly form. 58 * becomes non-null during {@link #dump} 76 * @param out {@code non-null;} where to dump to 82 public static void dump(byte[] bytes, PrintStream out, method in class:BlockDumper 86 bd.dump(); 91 * Use {@link #dump}. 107 public void dump() { method in class:BlockDumper 164 // Reset the dump cursor to the start of the method. 207 * Does a regular basic block dump [all...] |
/device/generic/goldfish/camera/ |
EmulatedCamera2.cpp | 201 int EmulatedCamera2::dump(int fd) { function in class:android::EmulatedCamera2 363 int EmulatedCamera2::dump(const camera2_device_t *d, int fd) { function in class:android::EmulatedCamera2 365 return ec->dump(fd); 407 EmulatedCamera2::dump
|
/external/harfbuzz/ |
Android.mk | 36 src/harfbuzz-dump.c \
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 477 LF->dump(); 489 F->dump(); 502 LF->dump(); 560 TheModule->dump();
|
/external/llvm/include/llvm/Analysis/ |
Trace.h | 111 /// dump - Debugger convenience method; writes trace to standard error 114 void dump() const;
|
/external/llvm/include/llvm/CodeGen/ |
ResourcePriorityQueue.h | 127 virtual void dump(ScheduleDAG* DAG) const;
|