Searched refs:dataIndex (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/telephony/common/com/google/android/mms/pdu/ |
D | Base64.java | 83 int dataIndex = 0; in decodeBase64() local 97 dataIndex = i * 4; in decodeBase64() 98 marker0 = base64Data[dataIndex + 2]; in decodeBase64() 99 marker1 = base64Data[dataIndex + 3]; in decodeBase64() 101 b1 = base64Alphabet[base64Data[dataIndex]]; in decodeBase64() 102 b2 = base64Alphabet[base64Data[dataIndex + 1]]; in decodeBase64()
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
D | ContactsExpansion.java | 63 private void addContact(ViewGroup container, int dataIndex, int thumbnailID) { in addContact() argument 69 ((TextView)contactItem.findViewById(R.id.contact_name)).setText(contactsData[dataIndex++]); in addContact() 71 setText(contactsData[dataIndex++]); in addContact() 72 ((TextView)contactItem.findViewById(R.id.contact_city)).setText(contactsData[dataIndex++]); in addContact() 73 ((TextView)contactItem.findViewById(R.id.contact_phone)).setText(contactsData[dataIndex++]); in addContact() 74 ((TextView)contactItem.findViewById(R.id.contact_email)).setText(contactsData[dataIndex++]); in addContact()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ZygoteConnection.java | 575 int dataIndex = 0; in handleParentProc() local 578 while (dataIndex < data.length && remainingSleepTime > 0) { in handleParentProc() 595 int readBytes = android.system.Os.read(pipeFd, data, dataIndex, 1); in handleParentProc() 599 dataIndex += readBytes; in handleParentProc() 609 if (dataIndex == data.length) { in handleParentProc()
|
D | WrapperInit.java | 215 int dataIndex = OsConstants.CAP_TO_INDEX(i); in preserveCapabilities() local 217 if ((data[dataIndex].inheritable & capMask) != 0) { in preserveCapabilities()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | WapPushOverSms.java | 243 int dataIndex = headerStartIndex + headerLength; in decodeWapPdu() local 244 intentData = new byte[pdu.length - dataIndex]; in decodeWapPdu() 245 System.arraycopy(pdu, dataIndex, intentData, 0, intentData.length); in decodeWapPdu()
|
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/ |
D | WapPushTest.java | 2135 int dataIndex = headerStartIndex + headerLength; in dispatchWapPdu() local 2136 intentData = new byte[pdu.length - dataIndex]; in dispatchWapPdu() 2137 System.arraycopy(pdu, dataIndex, intentData, 0, intentData.length); in dispatchWapPdu()
|