Home
last modified time | relevance | path

Searched refs:HexDump (Results 1 – 11 of 11) sorted by relevance

/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/
DDhcpPacketTest.java55 import com.android.internal.util.HexDump;
333 final ByteBuffer packet = ByteBuffer.wrap(HexDump.hexStringToByteArray( in testOffer1()
365 final ByteBuffer packet = ByteBuffer.wrap(HexDump.hexStringToByteArray( in testOffer2()
399 final byte[] packet = HexDump.hexStringToByteArray( in testBadIpPacket()
414 final byte[] packet = HexDump.hexStringToByteArray( in testBadDhcpPacket()
433 final byte[] packet = HexDump.hexStringToByteArray( in testBadTruncatedOffer()
462 final byte[] packet = HexDump.hexStringToByteArray( in testBadOfferWithoutACookie()
493 final byte[] packet = HexDump.hexStringToByteArray( in testOfferWithBadCookie()
529 final byte[] packet = HexDump.hexStringToByteArray( in testTruncatedOfferPackets()
572 fail("bad packet: " + HexDump.toHexString(packet)); in testRandomPackets()
[all …]
/packages/modules/NetworkStack/src/com/android/networkstack/metrics/
DDataStallDetectionStats.java24 import com.android.internal.util.HexDump;
93 .append(HexDump.toHexString(mWifiInfo)) in toString()
95 .append(HexDump.toHexString(mCellularInfo)) in toString()
97 .append(HexDump.toHexString(mDns)); in toString()
DDataStallStatsUtils.java24 import com.android.internal.util.HexDump;
63 + ", dns: " + HexDump.toHexString(stats.mDns)); in write()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DHexDump.java34 public class HexDump { class
39 public HexDump() { in HexDump() method in HexDump
/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpLease.java25 import com.android.internal.util.HexDump;
140 return HexDump.toHexString(bytes); in clientIdToString()
DDhcpClient.java65 import com.android.internal.util.HexDump;
397 Log.d(TAG, HexDump.dumpHexString(mPacket, 0, length)); in run()
689 HexDump.toHexString(packet.getClientMac()) + ", expected " + in isValidPacket()
690 HexDump.toHexString(packet.getClientMac())); in isValidPacket()
DDhcpServer.java63 import com.android.internal.util.HexDump;
598 + HexDump.dumpHexString(packet.getClientMac()); in getMacAddr()
/packages/modules/NetworkStack/src/android/net/ip/
DConnectivityPacketTracker.java37 import com.android.internal.util.HexDump;
123 addLogEntry(summary + "\n[" + HexDump.toHexString(recvbuf, 0, length) + "]"); in handlePacket()
/packages/modules/NetworkStack/tests/unit/src/android/net/apf/
DApfTest.java66 import com.android.internal.util.HexDump;
189 "\nexpected: " + HexDump.toHexString(expected) + in assertProgramEquals()
190 "\nactual: " + HexDump.toHexString(program)); in assertProgramEquals()
202 "\nprogram: " + HexDump.toHexString(program) + in assertDataMemoryContents()
203 "\ndata memory: " + HexDump.toHexString(data) + in assertDataMemoryContents()
204 "\nexpected: " + HexDump.toHexString(expected_data)); in assertDataMemoryContents()
919 Log.i(TAG, "testApfFilterPcapFile(): Data counters: " + HexDump.toHexString(data, false)); in testApfFilterPcapFile()
922 HexDump.toHexString(data, false), result); in testApfFilterPcapFile()
2038 throw new Exception("bad packet: " + HexDump.toHexString(packet), e); in testRaParsing()
2058 throw new Exception("bad packet: " + HexDump.toHexString(packet), e); in testRaProcessing()
/packages/modules/NetworkStack/src/android/net/apf/
DApfFilter.java64 import com.android.internal.util.HexDump;
557 return HexDump.toHexString(mPacket.array(), 0, mPacket.capacity(), in getLastMatchingPacket()
1621 log(msg + HexDump.toHexString(packet, 0, length, false /* lowercase */)); in hexDump()
1908 pw.println(HexDump.toHexString(mLastInstalledProgram, false /* lowercase */)); in dump()
1933 pw.println(HexDump.dumpHexString(mDataSnapshot)); in dump()
/packages/services/Telephony/src/com/android/phone/
DPhoneInterfaceManager.java163 import com.android.internal.util.HexDump;
4082 if (DBG) log("nvWriteCdmaPrl: value: " + HexDump.toHexString(preferredRoamingList)); in nvWriteCdmaPrl()