Searched refs:lengthBytes (Results 1 - 6 of 6) sorted by last modified time

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java560 int lengthBytes = 2 + (addressLength + 1) / 2;
563 ret = new GsmSmsAddress(mPdu, mCur, lengthBytes);
570 mCur += lengthBytes;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCarrierPrivilegeRules.java158 private String lengthBytes; field in class:UiccCarrierPrivilegeRules.TLV
172 lengthBytes = data.substring(offset, offset + 2);
176 lengthBytes = data.substring(offset, offset + 2 + numBytes * 2);
178 log("TLV parseLength length=" + length + "lenghtBytes: " + lengthBytes);
179 return lengthBytes;
193 index += lengthBytes.length();
454 String lengthBytes = allRules.parseLength(mRules);
455 log("isDataComplete lengthBytes: " + lengthBytes);
456 if (mRules.length() == TAG_ALL_REF_AR_DO.length() + lengthBytes
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java341 public ParcelFileDescriptor openWrite(String name, long offsetBytes, long lengthBytes) { argument
343 return openWriteInternal(name, offsetBytes, lengthBytes);
349 private ParcelFileDescriptor openWriteInternal(String name, long offsetBytes, long lengthBytes) argument
377 if (lengthBytes > 0) {
379 final long deltaBytes = lengthBytes - stat.st_size;
384 Libcore.os.posix_fallocate(targetFd, 0, lengthBytes);
/frameworks/base/location/java/com/android/internal/location/
H A DGpsNetInitiatedHandler.java468 int lengthBytes = input.length;
469 int lengthSeptets = (lengthBytes * 8) / 7;
476 if (lengthBytes % 7 == 0) {
477 if (lengthBytes > 0) {
478 if ((input[lengthBytes - 1] >> 1) == PADDING_CHAR) {
/frameworks/base/core/java/android/content/pm/
H A DIPackageInstallerSession.aidl29 ParcelFileDescriptor openWrite(String name, long offsetBytes, long lengthBytes);
H A DPackageInstaller.java718 * @param lengthBytes total size of the file being written, used to
728 long lengthBytes) throws IOException {
731 offsetBytes, lengthBytes);
727 openWrite(@onNull String name, long offsetBytes, long lengthBytes) argument

Completed in 525 milliseconds