Searched refs:bytes (Results 151 - 159 of 159) sorted by relevance

1234567

/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java1531 public static String toIsoString(byte[] bytes) { argument
1533 return new String(bytes, CharacterSets.MIMENAME_ISO_8859_1);
/frameworks/base/include/androidfw/
H A DResourceTypes.h197 // Size of the chunk header (in bytes). Adding this value to
202 // Total size of this chunk (in bytes). This is the chunkSize plus
259 // Number of bytes in this structure.
515 size_t bytes() const;
590 * Appears header.headerSize bytes after a ResXMLTree_node.
603 * Appears header.headerSize bytes after a ResXMLTree_node.
616 * Appears header.headerSize bytes after a ResXMLTree_node.
631 * Appears header.headerSize bytes after a ResXMLTree_node.
899 // Number of bytes in this structure.
918 // codes ('fr', 'en' etc. etc.). The high bit for both bytes i
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/av/media/libstagefright/
H A DOggExtractor.cpp340 ALOGV("skipped %lld bytes of junk to reach next frame",
368 ALOGV("backing up %lld bytes", (long long)(pageOffset - prevGuess));
373 // back off 5000 bytes more and try again.
495 ALOGV("failed to read %zu bytes at offset %#016llx, got %zd bytes",
712 ALOGV("failed to read %zu bytes at %#016llx, got %zd bytes",
905 pack.bytes = ref.length;
1337 ALOGV("got image data, %zu trailing bytes",
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java9718 private static String makeHex(byte[] bytes) { argument
9720 for (byte b : bytes) {
9726 private static String makeHex(byte[] bytes, int from, int len) { argument
9729 sb.append(String.format("%02x", bytes[from+i]));
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java1104 final long bytes = Long.parseLong(cooked[2]);
1109 + " " + bytes + " " + time);
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp592 "Error encountered while skip bytes in input stream.");
1742 size_t len = description.bytes() + 1;
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java1476 final int bytes = digits.length() / 2;
1477 if (2*bytes != digits.length()) {
1481 byte[] result = new byte[bytes];
3536 // N : raw bytes of this metadata blob
3739 // [array of Niv bytes] IV itself
3741 // [array of Nmk bytes] master key itself
3743 // [array of Nck bytes] master key checksum hash
4616 long size; // bytes of content
4965 + toCopy + " bytes");
5260 Slog.i(TAG, "Skipping tar padding: " + needed + " bytes");
[all...]
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp191 // The size of this struct is 32 bytes on the 32-bit target system
235 ALOGW("idmap: header too small (%d bytes)", (uint32_t) size);
298 ALOGE("idmap: entry header is too small (%u bytes)", (uint32_t) size);
312 ALOGE("idmap: too small (%u bytes) for the number of entries (%u)",
511 // (2 bytes length, null terminator).
654 * maximum length of 0x7FFFFFF (2147483647 bytes), but if you're storing that
657 * If the high bit is set, then there are two characters or 4 bytes of length
676 * maximum length of 0x7FFF (32767 bytes), but you should consider storing
679 * If the high bit is set, then there are two characters or 2 bytes of length
732 ALOGI("CREATING STRING CACHE OF %zu bytes",
995 size_t ResStringPool::bytes() const function in class:android::ResStringPool
[all...]

Completed in 236 milliseconds

1234567