Searched defs:byteCount (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java759 * @param byteCount the number of bytes in the user data payload
762 String getUserDataUCS2(int byteCount) { argument
766 ret = new String(pdu, cur, byteCount, "utf-16");
772 cur += byteCount;
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java930 private ByteBuffer toByteBuffer(int byteCount, Buffer input) { argument
932 boolean convertWholeBuffer = (byteCount < 0);
937 byteCount = input2.limit() - position;
939 result = ByteBuffer.allocate(byteCount).order(input2.order());
940 for (int i = 0; i < byteCount; i++) {
948 byteCount = (input2.limit() - position) * 2;
950 result = ByteBuffer.allocate(byteCount).order(input2.order());
952 for (int i = 0; i < byteCount / 2; i++) {
960 byteCount = (input2.limit() - position)* 2;
962 result = ByteBuffer.allocate(byteCount)
[all...]

Completed in 393 milliseconds