HomeSort by relevance Sort by last modified time
    Searched defs:toHexString (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/native/cmds/lshal/
utils.cpp 22 std::string toHexString(uint64_t t) {
  /frameworks/support/compat/java/android/support/v4/util/
DebugUtils.java 45 out.append(Integer.toHexString(System.identityHashCode(cls)));
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
ByteArrays.java 35 public static String toHexString(byte[] bytes) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Hex.java 16 public static String toHexString(
19 return toHexString(data, 0, data.length);
22 public static String toHexString(
  /external/guava/guava-tests/benchmark/com/google/common/collect/
InternersBenchmark.java 30 interner.intern(Double.toHexString(Math.random()));
38 interner.intern(Double.toHexString(Math.random()));
46 Double.toHexString(Math.random()).intern();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ProfileLevelIndicationDescriptor.java 43 sb.append("{profileLevelIndicationIndex=").append(Integer.toHexString(profileLevelIndicationIndex));
  /frameworks/base/core/java/android/util/
ByteStringUtils.java 36 public static String toHexString(byte[] bytes) {
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
HexDump.java 36 result.append(toHexString(offset));
57 result.append(toHexString(i));
94 public static String toHexString(byte b)
96 return toHexString(toByteArray(b));
99 public static String toHexString(byte[] array)
101 return toHexString(array, 0, array.length);
104 public static String toHexString(byte[] array, int offset, int length)
119 public static String toHexString(int i)
121 return toHexString(toByteArray(i));
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
MessageDigestAlgorithm.java 183 return toHexString(digest.digest(data.getBytes()));
216 private static String toHexString(byte b[]) {
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDrm.h 49 String8 toHexString() const {
53 static String8 toHexString(const uint8_t uuid_in[UUID_SIZE]) {
  /frameworks/base/core/java/android/content/res/
ObbInfo.java 65 sb.append(Integer.toHexString(System.identityHashCode(this)));
ResourcesKey.java 145 builder.append(" mHash=").append(Integer.toHexString(mHash));
  /frameworks/base/services/core/java/com/android/server/am/
ConnectionRecord.java 44 + " flags=0x" + Integer.toHexString(flags));
64 sb.append(Integer.toHexString(System.identityHashCode(this)));
118 sb.append(Integer.toHexString(System.identityHashCode(conn.asBinder())));
BroadcastFilter.java 71 sb.append(Integer.toHexString(System.identityHashCode(this)));
IntentBindRecord.java 68 pw.print(Integer.toHexString(System.identityHashCode(a)));
96 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /libcore/ojluni/src/main/java/javax/net/ssl/
SNIServerName.java 184 return "type=host_name (0), value=" + toHexString(encoded);
186 return "type=(" + type + "), value=" + toHexString(encoded);
191 private static String toHexString(byte[] bytes) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 86 return toHexString();
93 public String toHexString(){
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/utils/
FingerprintUtils.java 56 sb.append(Integer.toHexString(num));
  /external/apache-http/src/org/apache/http/impl/conn/
Wire.java 73 buffer.append(Integer.toHexString(ch));
  /frameworks/base/core/java/android/content/pm/
PackageStats.java 92 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /frameworks/base/core/java/android/view/
WindowId.java 183 sb.append(Integer.toHexString(System.identityHashCode(this)));
  /frameworks/base/core/java/com/android/internal/util/
HexDump.java 37 result.append(toHexString(offset));
58 result.append(toHexString(i));
95 public static String toHexString(byte b)
97 return toHexString(toByteArray(b));
100 public static String toHexString(byte[] array)
102 return toHexString(array, 0, array.length, true);
105 public static String toHexString(byte[] array, boolean upperCase)
107 return toHexString(array, 0, array.length, upperCase);
110 public static String toHexString(byte[] array, int offset, int length)
112 return toHexString(array, offset, length, true)
    [all...]
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanCredential.java 93 sb.append(" MasterKey:").append(HexDump.toHexString(mMasterKey));
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
PasswordUtils.java 79 buf.append(Byte.toHexString(data[i], true));
  /packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java 64 return toHexString(algorithm.digest(), "");
72 private static String toHexString(byte[] bytes, String separator) {
75 hexString.append(Integer.toHexString(0xFF & b)).append(separator);

Completed in 1488 milliseconds

1 2 3 4 5 6 7 8 910