Home
last modified time | relevance | path

Searched refs:nbBytes (Results 1 – 2 of 2) sorted by relevance

/packages/apps/SecureElement/src/com/android/se/security/arf/PKCS15/
DEF.java213 public byte[] readBinary(int offset, int nbBytes) throws IOException, SecureElementException { in readBinary() argument
215 if (nbBytes == -1) nbBytes = mFileSize; in readBinary()
223 byte[] result = new byte[nbBytes]; in readBinary()
226 while (nbBytes != 0) { in readBinary()
227 if (nbBytes < BUFFER_LEN) { in readBinary()
228 length = nbBytes; in readBinary()
237 nbBytes -= length; in readBinary()
/packages/apps/Browser2/src/org/chromium/webview_shell/
DWebViewBrowserActivity.java208 private void showDialog(long nbBytes) { in showDialog() argument
211 info.append("number of bytes: " + nbBytes); in showDialog()