Searched refs:lengthBytes (Results 1 – 6 of 6) sorted by relevance
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | UiccCarrierPrivilegeRules.java | 153 private String lengthBytes; field in UiccCarrierPrivilegeRules.TLV 172 lengthBytes = data.substring(offset, offset + 2); in parseLength() 176 lengthBytes = data.substring(offset, offset + 2 + numBytes * 2); in parseLength() 178 log("TLV parseLength length=" + length + "lenghtBytes: " + lengthBytes); in parseLength() 179 return lengthBytes; in parseLength() 193 index += lengthBytes.length(); in parse() 517 String lengthBytes = allRules.parseLength(mRules); in isDataComplete() local 518 log("isDataComplete lengthBytes: " + lengthBytes); in isDataComplete() 519 if (mRules.length() == TAG_ALL_REF_AR_DO.length() + lengthBytes.length() + in isDataComplete()
|
/frameworks/base/location/java/com/android/internal/location/ |
D | GpsNetInitiatedHandler.java | 468 int lengthBytes = input.length; in decodeGSMPackedString() local 469 int lengthSeptets = (lengthBytes * 8) / 7; in decodeGSMPackedString() 476 if (lengthBytes % 7 == 0) { in decodeGSMPackedString() 477 if (lengthBytes > 0) { in decodeGSMPackedString() 478 if ((input[lengthBytes - 1] >> 1) == PADDING_CHAR) { in decodeGSMPackedString()
|
/frameworks/base/core/java/android/content/pm/ |
D | IPackageInstallerSession.aidl | 29 ParcelFileDescriptor openWrite(String name, long offsetBytes, long lengthBytes); in openWrite() argument
|
D | PackageInstaller.java | 711 long lengthBytes) throws IOException { in openWrite() argument 714 offsetBytes, lengthBytes); in openWrite()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageInstallerSession.java | 400 public ParcelFileDescriptor openWrite(String name, long offsetBytes, long lengthBytes) { in openWrite() argument 402 return openWriteInternal(name, offsetBytes, lengthBytes); in openWrite() 408 private ParcelFileDescriptor openWriteInternal(String name, long offsetBytes, long lengthBytes) in openWriteInternal() argument 436 if (lengthBytes > 0) { in openWriteInternal() 438 final long deltaBytes = lengthBytes - stat.st_size; in openWriteInternal() 443 Libcore.os.posix_fallocate(targetFd, 0, lengthBytes); in openWriteInternal()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | SmsMessage.java | 560 int lengthBytes = 2 + (addressLength + 1) / 2; in getAddress() local 563 ret = new GsmSmsAddress(mPdu, mCur, lengthBytes); in getAddress() 570 mCur += lengthBytes; in getAddress()
|