HomeSort by relevance Sort by last modified time
    Searched defs:dump (Results 126 - 150 of 981) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/native/services/sensorservice/
SensorFusion.cpp 140 void SensorFusion::dump(String8& result) { function in class:android::SensorFusion
  /frameworks/native/services/surfaceflinger/DisplayHardware/
FramebufferSurface.cpp 166 // void dump(FrameBufferSurface* fbs, String8& s) {
167 // // calls FramebufferSurface::dump()
168 // fbs->dump(s);
170 // // calls ConsumerBase::dump() since it is non-virtual
171 // static_cast<ConsumerBase*>(fbs)->dump(s);
173 // // calls FramebufferSurface::dump() since it is virtual
174 // static_cast<DisplaySurface*>(fbs)->dump(s);
177 // to ConsumerBase::dump() here. It will take the internal lock, and then call
179 void FramebufferSurface::dump(String8& result) const { function in class:android::FramebufferSurface
180 ConsumerBase::dump(result)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
HexDump.java 44 * Dump an array of bytes to an OutputStream.
59 public static void dump(byte[] data, long offset, method in class:HexDump
81 dump(buffer, display_offset).append(' ');
84 dump(buffer, data[k + j]); method
121 * Dump a long value into a StringBuffer.
123 * @param _lbuffer the StringBuffer to dump the value in
127 private static StringBuffer dump(StringBuffer _lbuffer, long value) { method in class:HexDump
136 * Dump a byte value into a StringBuffer.
138 * @param _cbuffer the StringBuffer to dump the value in
142 private static StringBuffer dump(StringBuffer _cbuffer, byte value) { method in class:HexDump
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 83 def dump(node, annotate_fields=True, include_attributes=False): function
85 Return a formatted dump of the tree in *node*. This is mainly useful for
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 27 >>> json.dump(['streaming API'], io)
102 'dump', 'dumps', 'load', 'loads',
122 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True, function
203 the return value may be a ``unicode`` instance. See ``dump`` for details.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 83 def dump(node, annotate_fields=True, include_attributes=False): function
85 Return a formatted dump of the tree in *node*. This is mainly useful for
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 27 >>> json.dump(['streaming API'], io)
102 'dump', 'dumps', 'load', 'loads',
122 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True, function
203 the return value may be a ``unicode`` instance. See ``dump`` for details.
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattDebugUtils.java 88 svc.mClientMap.dump();
91 svc.mServerMap.dump();
94 svc.mHandleMap.dump();
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 17 package com.android.dx.command.dump;
47 * Utility to dump basic block info from methods in a human-friendly form.
56 * becomes non-null during {@link #dump}
74 * @param out {@code non-null;} where to dump to
80 public static void dump(byte[] bytes, PrintStream out, method in class:BlockDumper
84 bd.dump();
89 * Use {@link #dump}.
105 public void dump() { method in class:BlockDumper
162 // Reset the dump cursor to the start of the method.
205 * Does a regular basic block dump
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCard.java 358 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { method in class:UiccCard
388 app.dump(fd, pw, args);
397 ir.dump(fd, pw, args);
  /build/tools/zipalign/
ZipEntry.cpp 54 //mCDE.dump();
73 //mLFH.dump();
505 * Dump the contents of a LocalFileHeader object.
507 void ZipEntry::LocalFileHeader::dump(void) const function in class:ZipEntry::LocalFileHeader
674 * Dump the contents of a CentralDirEntry object.
676 void ZipEntry::CentralDirEntry::dump(void) const function in class:ZipEntry::CentralDirEntry
  /dalvik/dexgen/src/com/android/dexgen/util/
Hex.java 236 * Formats a hex dump of a portion of a {@code byte[]}. The result
241 * @param offset {@code >= 0;} offset to the part to dump
242 * @param length {@code >= 0;} number of bytes to dump
247 * @return {@code non-null;} a string of the dump
249 public static String dump(byte[] arr, int offset, int length, method in class:Hex
  /dalvik/dx/src/com/android/dx/util/
Hex.java 236 * Formats a hex dump of a portion of a {@code byte[]}. The result
241 * @param offset {@code >= 0;} offset to the part to dump
242 * @param length {@code >= 0;} number of bytes to dump
247 * @return {@code non-null;} a string of the dump
249 public static String dump(byte[] arr, int offset, int length, method in class:Hex
  /dalvik/vm/
IndirectRefTable.cpp 308 void IndirectRefTable::dump(const char* descr) const function in class:IndirectRefTable
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyNetworkMonitor.java 100 public void dump() { method in class:MonkeyNetworkMonitor
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Mem.cpp 376 status_t MemPool::dump(int fd, const Vector<String16>& args) const function in class:android::MemPool
382 snprintf(buffer, 255, "QualcommCameraHardware::AshmemPool::dump\n");
  /external/chromium_org/chrome/browser/resources/quota_internals/
event_handler.js 464 * Dump |treeViewObject| or subtree to a object.
466 * @return {Object} Dump result object from |treeViewObject|.
487 * Dump |statistics| to a object.
488 * @return {Object} Dump result object from |statistics|.
498 * Event handler for 'dump-button' 'click'ed.
499 * Dump and show all data from WebUI page to 'dump-field' element.
501 function dump() { function
504 $('dump-field').textContent =
533 $('dump-button').addEventListener('click', dump, false)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
SymbolTable.cpp 127 // Dump functions.
130 void TVariable::dump(TInfoSink& infoSink) const function in class:TVariable
139 void TFunction::dump(TInfoSink &infoSink) const function in class:TFunction
144 void TSymbolTableLevel::dump(TInfoSink &infoSink) const function in class:TSymbolTableLevel
148 (*it).second->dump(infoSink);
151 void TSymbolTable::dump(TInfoSink &infoSink) const function in class:TSymbolTable
155 table[level]->dump(infoSink);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
chatroommodule_unittest.cc 178 std::stringstream dump; local
  /external/chromium_org/third_party/openssl/openssl/
check-all-builds.sh 18 # Dump message is $VERBOSE >= $1
28 # Dump a message unless --quiet is used.
30 dump () { function
34 # Dump a message if --verbose is used only.
604 dump "Generating Makefile"
608 dump "Building libraries with $NUM_JOBS jobs"
609 dump "For the following builds:"
611 dump " $BUILD"
620 dump "All OK, congratulations!"
623 dump "Error, try doing the following to inspect the issues:
    [all...]
  /external/chromium_org/third_party/simplejson/
__init__.py 27 >>> json.dump(['streaming API'], io)
102 'dump', 'dumps', 'load', 'loads',
145 def dump(obj, fp, skipkeys=False, ensure_ascii=True, check_circular=True, function
385 parse_float=decimal.Decimal for parity with ``dump``.
441 parse_float=decimal.Decimal for parity with ``dump``.
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateBase.cpp 74 void SkAnimateBase::dump(SkAnimateMaker* maker) { function in class:SkAnimateBase
SkDisplayList.cpp 137 void SkDisplayList::dump(SkAnimateMaker* maker) { function in class:SkDisplayList
145 fDrawList[fDumpIndex]->dump(maker);
SkDisplayTypes.cpp 40 void SkDisplayBoolean::dump(SkAnimateMaker* maker){ function in class:SkDisplayBoolean
61 void SkDisplayInt::dump(SkAnimateMaker* maker){ function in class:SkDisplayInt
82 void SkDisplayFloat::dump(SkAnimateMaker* maker) { function in class:SkDisplayFloat
SkDrawBitmap.cpp 67 void SkDrawBitmap::dump(SkAnimateMaker* maker) { function in class:SkDrawBitmap

Completed in 1208 milliseconds

1 2 3 4 56 7 8 91011>>