HomeSort by relevance Sort by last modified time
    Searched refs:HexDump (Results 1 - 25 of 68) sorted by null

1 2 3

  /art/runtime/base/
hex_dump_test.cc 33 TEST(HexDump, OneLine) {
36 oss << HexDump(test_text, strlen(test_text), false, "");
42 TEST(HexDump, MultiLine) {
45 oss << HexDump(test_text, strlen(test_text), false, "");
54 TEST(HexDump, ShowActualAddresses) {
57 oss << HexDump(&g16byte_aligned_number, 8, true, "");
63 TEST(HexDump, Prefix) {
66 oss << HexDump(test_text, strlen(test_text), false, "test prefix: ");
hex_dump.h 30 class HexDump {
32 HexDump(const void* address, size_t byte_count, bool show_actual_addresses, const char* prefix)
45 DISALLOW_COPY_AND_ASSIGN(HexDump);
48 inline std::ostream& operator<<(std::ostream& os, const HexDump& rhs) {
hex_dump.cc 25 void HexDump::Dump(std::ostream& os) const {
  /frameworks/native/include/binder/
TextOutput.h 99 class HexDump
102 HexDump(const void *buf, size_t size, size_t bytesPerLine=16);
103 inline ~HexDump();
105 inline HexDump& setBytesPerLine(size_t bytesPerLine);
106 inline HexDump& setSingleLineCutoff(int32_t bytes);
107 inline HexDump& setAlignment(size_t alignment);
108 inline HexDump& setCArrayStyle(bool enabled);
126 TextOutput& operator<<(TextOutput& to, const HexDump& val);
170 inline HexDump::~HexDump() { }
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
HexDumpTest.java 23 assertEquals("abcdef", HexDump.toHexString(
25 assertEquals("ABCDEF", HexDump.toHexString(
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
DrmReceiver.java 24 import com.android.internal.util.HexDump;
44 Log.d(LOG_TAG, HexDump.dumpHexString(header));
46 Log.d(LOG_TAG, HexDump.dumpHexString(body));
ReceiverActivity.java 24 import com.android.internal.util.HexDump;
45 Log.d(LOG_TAG, HexDump.dumpHexString(header));
47 Log.d(LOG_TAG, HexDump.dumpHexString(body));
ReceiverService.java 25 import com.android.internal.util.HexDump;
54 Log.d(LOG_TAG, HexDump.dumpHexString(header));
56 Log.d(LOG_TAG, HexDump.dumpHexString(body));
DataVerify.java 25 import com.android.internal.util.HexDump;
ClientTest.java 37 import com.android.internal.util.HexDump;
129 HexDump.hexStringToByteArray(pdu.getText().toString()));
131 HexDump.hexStringToByteArray(pdu.getText().toString()));
137 //HexDump.hexStringToByteArray(pdu.getText().toString()), 0, 6, 5, 5);
  /frameworks/base/core/tests/utiltests/src/com/android/internal/util/
BitwiseStreamsTest.java 21 import com.android.internal.util.HexDump;
36 byte[] inBuf = HexDump.hexStringToByteArray("FFDD");
45 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup));
51 byte[] inBuf = HexDump.hexStringToByteArray("11d4f29c0e9ad3c36e72584e064d9b53");
59 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup));
65 byte[] inBuf = HexDump.hexStringToByteArray("00031040900112488ea794e0");
73 assertEquals(HexDump.toHexString(inBuf), HexDump.toHexString(inBufDup))
    [all...]
  /external/sfntly/cpp/src/test/
test_font_utils.h 37 void HexDump(const unsigned char* byte_data, size_t length);
  /frameworks/base/services/net/java/android/net/netlink/
NetlinkConstants.java 20 import com.android.internal.util.HexDump;
59 return HexDump.toHexString(bytes);
64 return HexDump.toHexString(
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
InboundSmsTrackerTest.java 22 import com.android.internal.util.HexDump;
52 mc.addRow(new Object[]{HexDump.toHexString(FAKE_PDU),
55 mc.addRow(new Object[]{HexDump.toHexString(FAKE_PDU),
GsmSmsTest.java 24 import com.android.internal.util.HexDump;
33 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
40 sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
54 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
70 sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
88 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
103 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
112 sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
122 SmsMessage sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu));
133 sms = SmsMessage.createFromPdu(HexDump.hexStringToByteArray(pdu))
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlWireAdapter.java 20 import com.google.polo.pairing.HexDump;
78 debug(HexDump.dumpHexString(outerMessage.serializeToByteArray()));
133 debug(HexDump.dumpHexString(message.serializeToByteArray()));
  /frameworks/base/services/tests/servicestests/src/android/net/dhcp/
DhcpPacketTest.java 25 import com.android.internal.util.HexDump;
286 final ByteBuffer packet = ByteBuffer.wrap(HexDump.hexStringToByteArray(
316 final ByteBuffer packet = ByteBuffer.wrap(HexDump.hexStringToByteArray(
348 final byte[] packet = HexDump.hexStringToByteArray(
363 final byte[] packet = HexDump.hexStringToByteArray(
382 final byte[] packet = HexDump.hexStringToByteArray(
411 final byte[] packet = HexDump.hexStringToByteArray(
442 final byte[] packet = HexDump.hexStringToByteArray(
477 final byte[] packet = HexDump.hexStringToByteArray(
519 fail("bad packet: " + HexDump.toHexString(packet))
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
HexDump.java 32 * @version $Id: HexDump.java 596667 2007-11-20 13:50:14Z niallp $
34 public class HexDump {
39 public HexDump() {
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
CdmaSmsTest.java 26 import com.android.internal.util.HexDump;
120 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
127 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
134 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
141 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
269 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
316 BearerData bearerData = BearerData.decode(HexDump.hexStringToByteArray(pdu));
474 BearerData bd1 = BearerData.decode(HexDump.hexStringToByteArray(pdu1));
481 BearerData bd2 = BearerData.decode(HexDump.hexStringToByteArray(pdu2));
488 BearerData bd3 = BearerData.decode(HexDump.hexStringToByteArray(pdu3))
    [all...]
  /art/compiler/
cfi_test.h 43 HexDump(f, actual_asm);
46 HexDump(f, actual_cfi);
137 static void HexDump(FILE* f, const std::vector<uint8_t>& data) {
  /frameworks/native/libs/binder/
TextOutput.cpp 148 HexDump::HexDump(const void *buf, size_t size, size_t bytesPerLine)
161 TextOutput& operator<<(TextOutput& to, const HexDump& val)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
UserData.java 22 import com.android.internal.util.HexDump;
159 builder.append(", payload='" + HexDump.toHexString(payload) + "'");
CdmaSmsAddress.java 23 import com.android.internal.util.HexDump;
106 builder.append(", origBytes=" + HexDump.toHexString(origBytes));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
InboundSmsTracker.java 22 import com.android.internal.util.HexDump;
132 mPdu = HexDump.hexStringToByteArray(cursor.getString(InboundSmsHandler.PDU_COLUMN));
185 values.put("pdu", HexDump.toHexString(mPdu));
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
HexDump.java 19 public class HexDump

Completed in 800 milliseconds

1 2 3