/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/ |
D | QuotedPrintable.java | 39 public static final byte[] decodeQuotedPrintable(byte[] bytes) { in decodeQuotedPrintable() argument 40 if (bytes == null) { in decodeQuotedPrintable() 44 for (int i = 0; i < bytes.length; i++) { in decodeQuotedPrintable() 45 int b = bytes[i]; in decodeQuotedPrintable() 48 if('\r' == (char)bytes[i + 1] && in decodeQuotedPrintable() 49 '\n' == (char)bytes[i + 2]) { in decodeQuotedPrintable() 53 int u = Character.digit((char) bytes[++i], 16); in decodeQuotedPrintable() 54 int l = Character.digit((char) bytes[++i], 16); in decodeQuotedPrintable()
|
/development/apps/Development/src/com/android/development/ |
D | LogViewer.java | 99 byte[] bytes = new byte[length]; in run() 100 in.readFully(bytes); in run() 102 int tagEnd = next0(bytes, HEADER_SIZE); in run() 103 int fileEnd = next0(bytes, tagEnd + 1); in run() 104 int messageEnd = next0(bytes, fileEnd + 1); in run() 107 = forAsciiBytes(bytes, HEADER_SIZE, tagEnd); in run() 109 = forAsciiBytes(bytes, fileEnd + 1, messageEnd); in run() 131 static int next0(byte[] bytes, int start) { in next0() argument 132 for (int current = start; current < bytes.length; current++) { in next0() 133 if (bytes[current] == 0) in next0() [all …]
|
/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/ |
D | InsecureSHA1PRNGKeyDerivator.java | 224 private void updateSeed(byte[] bytes) { in updateSeed() argument 229 updateHash(seed, bytes, 0, bytes.length - 1); in updateSeed() 231 seedLength += bytes.length; in updateSeed() 278 protected synchronized void nextBytes(byte[] bytes) { in nextBytes() argument 290 if (bytes == null) { in nextBytes() 341 if (bytes.length == 0) { in nextBytes() 348 n = (HASHBYTES_TO_USE - nextBIndex) < (bytes.length - nextByteToReturn) ? HASHBYTES_TO_USE in nextBytes() 350 : bytes.length - nextByteToReturn; in nextBytes() 352 System.arraycopy(nextBytes, nextBIndex, bytes, nextByteToReturn, n); in nextBytes() 357 if (nextByteToReturn >= bytes.length) { in nextBytes() [all …]
|
D | BrokenKeyDerivationActivity.java | 240 private void readFromFileOrCreateRandom(String fileName, byte[] bytes) { in readFromFileOrCreateRandom() argument 242 readBytesFromFile(fileName, bytes); in readFromFileOrCreateRandom() 246 sr.nextBytes(bytes); in readFromFileOrCreateRandom() 247 writeToFile(fileName, bytes); in readFromFileOrCreateRandom() 260 private void writeToFile(String fileName, byte[] bytes) { in writeToFile() argument 262 fos.write(bytes); in writeToFile() 268 private void readBytesFromFile(String fileName, byte[] bytes) { in readBytesFromFile() argument 271 while (numBytes < bytes.length) { in readBytesFromFile() 272 int n = fis.read(bytes, numBytes, bytes.length - numBytes); in readBytesFromFile()
|
/development/tools/axl/ |
D | chewperf.py | 59 bytes = sum(x[1] for x in chewed) 60 print "total time", totalTime, "bytes", bytes, "rate", bytes * 1000 / totalTime 65 bytes = x[1] 67 buckets[bucket] += bytes 69 buckets[bucket] = bytes
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
D | ChatManager.java | 37 int bytes; in run() local 44 bytes = iStream.read(buffer); in run() 45 if (bytes == -1) { in run() 52 bytes, -1, buffer).sendToTarget(); in run()
|
/development/samples/Vault/src/com/example/android/vault/ |
D | Utils.java | 61 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); in readFully() local 65 bytes.write(buffer, 0, count); in readFully() 67 return bytes.toByteArray(); in readFully()
|
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/ |
D | CardService.java | 119 public static String ByteArrayToHexString(byte[] bytes) { in ByteArrayToHexString() argument 121 char[] hexChars = new char[bytes.length * 2]; // Each byte has two hex characters (nibbles) in ByteArrayToHexString() 123 for (int j = 0; j < bytes.length; j++) { in ByteArrayToHexString() 124 v = bytes[j] & 0xFF; // Cast bytes[j] to int, treating as unsigned value in ByteArrayToHexString()
|
/development/samples/browseable/CardReader/src/com.example.android.cardreader/ |
D | LoyaltyCardReader.java | 119 public static String ByteArrayToHexString(byte[] bytes) { in ByteArrayToHexString() argument 121 char[] hexChars = new char[bytes.length * 2]; in ByteArrayToHexString() 123 for ( int j = 0; j < bytes.length; j++ ) { in ByteArrayToHexString() 124 v = bytes[j] & 0xFF; in ByteArrayToHexString()
|
/development/samples/browseable/PermissionRequest/src/com.example.android.permissionrequest/ |
D | SimpleWebServer.java | 145 byte[] bytes = loadContent(route); in handle() 146 if (null == bytes) { in handle() 154 output.println("Content-Length: " + bytes.length); in handle() 156 output.write(bytes); in handle()
|
/development/samples/USB/AdbTest/src/com/android/adb/ |
D | AdbMessage.java | 141 byte[] bytes = new byte[length]; in extractString() 143 bytes[i] = buffer.get(offset++); in extractString() 145 return new String(bytes); in extractString()
|
/development/samples/ApiDemos/src/com/example/android/apis/media/ |
D | AudioFxDemo.java | 176 public void onWaveFormDataCapture(Visualizer visualizer, byte[] bytes, in setupVisualizerFxAndUI() 178 mVisualizerView.updateVisualizer(bytes); in setupVisualizerFxAndUI() 181 public void onFftDataCapture(Visualizer visualizer, byte[] bytes, int samplingRate) {} in setupVisualizerFxAndUI() 222 public void updateVisualizer(byte[] bytes) { in updateVisualizer() argument 223 mBytes = bytes; in updateVisualizer()
|
/development/tools/rmtypedefs/src/com/android/tools/rmtypedefs/ |
D | RmTypeDefs.java | 147 byte[] bytes = Files.toByteArray(file); in checkClass() 148 ClassReader classReader = new ClassReader(bytes); in checkClass() 201 byte[] bytes; in rewriteOuterClasses() 203 bytes = Files.toByteArray(file); in rewriteOuterClasses() 220 ClassReader reader = new ClassReader(bytes); in rewriteOuterClasses()
|
/development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/ |
D | BluetoothChatService.java | 488 int bytes; in run() local 494 bytes = mmInStream.read(buffer); in run() 497 mHandler.obtainMessage(Constants.MESSAGE_READ, bytes, -1, buffer) in run()
|
/development/samples/BluetoothChat/src/com/example/android/BluetoothChat/ |
D | BluetoothChatService.java | 448 int bytes; in run() local 454 bytes = mmInStream.read(buffer); in run() 457 mHandler.obtainMessage(BluetoothChat.MESSAGE_READ, bytes, -1, buffer) in run()
|
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/ |
D | ImageCache.java | 591 private static String bytesToHexString(byte[] bytes) { in bytesToHexString() argument 594 for (int i = 0; i < bytes.length; i++) { in bytesToHexString() 595 String hex = Integer.toHexString(0xFF & bytes[i]); in bytesToHexString()
|
/development/vndk/tools/header-checker/utils/ |
D | utils.py | 73 f.write(bytes(output_content, 'utf-8')) 76 f.write(bytes(output_content, 'utf-8'))
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
D | DocumentsSample.java | 428 ByteArrayOutputStream bytes = new ByteArrayOutputStream(); in readFullyNoClose() local 432 bytes.write(buffer, 0, count); in readFullyNoClose() 434 return bytes.toByteArray(); in readFullyNoClose()
|
/development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/ |
D | Camera2BasicFragment.java | 935 byte[] bytes = new byte[buffer.remaining()]; in run() 936 buffer.get(bytes); in run() 940 output.write(bytes); in run()
|
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/ |
D | Camera2RawFragment.java | 1372 byte[] bytes = new byte[buffer.remaining()]; in run() 1373 buffer.get(bytes); in run() 1377 output.write(bytes); in run()
|
/development/tools/repo_pull/ |
D | repo_pull.py | 93 if bytes is str:
|
/development/vndk/tools/definition-tool/ |
D | vndk_definition_tool.py | 58 class Py3Bytes(bytes): 165 elif isinstance(arg, bytes): 3080 if str is bytes:
|
/development/tools/winscope/ |
D | yarn.lock | 898 bytes@2.5.0: 900 …resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.5.0.tgz#4c9423ea2d252c270c41b2bdefeff9bb6b6… 1107 bytes "2.5.0"
|