/development/tools/idegen/src/ |
D | Files.java | 30 int read; in toString() local 33 while ((read = in.read(buffer)) > -1) { in toString() 34 builder.append(buffer, 0, read); in toString()
|
/development/samples/browseable/WearSpeakerSample/src/com.example.android.wearable.speaker/ |
D | SoundRecorder.java | 102 int read = mAudioRecord.read(buffer, 0, buffer.length); in startRecording() 103 bufferedOutputStream.write(buffer, 0, read); in startRecording() 201 int read; in startPlay() 202 while (!isCancelled() && (read = bis.read(buffer, 0, buffer.length)) > 0) { in startPlay() 203 mAudioTrack.write(buffer, 0, read); in startPlay()
|
/development/tools/axl/ |
D | chewperf.py | 12 f = open(sys.argv[1]).read() 28 f = open(sys.argv[1]).read() 46 f = open(sys.argv[1]).read()
|
D | udpServer.py | 7 buf = open("random.dat").read()
|
D | chewie.py | 158 thread, queued, opened, send, sent, reading, read, uri, server, y = val 165 arrow = pylab.Arrow(reading, y, read - reading, 0)
|
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/ |
D | PduParser.java | 902 pduDataStream.read(partData, 0, dataLength); in parseParts() 969 int temp = pduDataStream.read(); in parseUnsignedInt() 977 temp = pduDataStream.read(); in parseUnsignedInt() 1005 int temp = pduDataStream.read(); in parseValueLength() 1033 int temp = pduDataStream.read(); in parseEncodedStringValue() 1092 int temp = pduDataStream.read(); in parseWapString() 1195 int temp = pduDataStream.read(); in getWapString() 1209 temp = pduDataStream.read(); in getWapString() 1228 int temp = pduDataStream.read(); in extractByteValue() 1248 int temp = pduDataStream.read(); in parseShortInteger() [all …]
|
/development/samples/VoiceInteractionService/src/com/example/android/voiceinteractor/ |
D | AudioUtils.java | 30 static int read(AudioRecord record, int bytesPerSecond, float secondsToRead, byte[] buffer) { in read() method in AudioUtils 37 int bytesRead = record.read(buffer, numBytes, in read()
|
/development/samples/VoiceInteractionService/ |
D | README.md | 45 Trace events are used throughout the test app to measure the time it takes to read the AudioRecord 53 * 'AudioUtils.read' and 'AudioRecord.read' 55 …* Counter trace value increasing as the AudioUtils.read call progresses. This value is reset after… 75 (name LIKE "%AudioUtils.read%" 76 OR name LIKE "%AudioRecord.read%"
|
/development/samples/AconfigDemo/ |
D | aconfig_demo_flags.aconfig | 49 description: "A read only flag for demo" 67 description: "A fixed-read-only flag for bugfix workflow demo" 88 description: "A fixed-read-only flag for wear bugfix workflow demo"
|
/development/samples/ApiDemos/assets/ |
D | read_asset.txt | 3 It was read and placed into the TextView here.
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
D | ImageDownloader.java | 340 int read; in copy() local 341 while ((read = in.read(b)) != -1) { in copy() 342 out.write(b, 0, read); in copy()
|
/development/tools/repo_diff/service/repodiff/tools/ |
D | env_variable_load.py | 15 existing_contents = f.read()
|
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
D | PhotoDownloadRunnable.java | 214 readResult = byteStream.read(tempBuffer, bufferOffset, in run() 304 int readResult = byteStream.read( in run()
|
/development/tools/ninja_dependency_analysis/ninja_metrics_proto/ |
D | ninja_metrics.py | 31 proto.ParseFromString(proto_file.read())
|
/development/samples/Vault/src/com/example/android/vault/ |
D | EncryptedDocument.java | 275 section.read(f); in readSection() 284 while ((n = f.read(inbuf, 0, (int) Math.min(section.length, inbuf.length))) != -1) { in readSection() 327 while ((n = in.read(inbuf)) != -1) { in writeSection() 363 public void read(RandomAccessFile f) throws IOException { in read() method in EncryptedDocument.Section
|
D | Utils.java | 64 while ((count = in.read(buffer)) != -1) { in readFully()
|
/development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/ |
D | JsonUtils.java | 42 is.read(buffer); in loadJsonFile()
|
/development/samples/ToyVpn/src/com/example/android/toyvpn/ |
D | ToyVpnConnection.java | 207 int length = in.read(packet.array()); in run() 220 length = tunnel.read(packet); in run() 298 int length = tunnel.read(packet); in handshake()
|
/development/apps/Development/src/com/android/development/ |
D | HttpEngineActivity.java | 71 request.read(ByteBuffer.allocateDirect(32 * 1024)); in onResponseStarted() 86 request.read(byteBuffer); in onReadCompleted() 191 public void read(UploadDataSink uploadDataSink, ByteBuffer byteBuffer) { in applyPostDataToUrlRequestBuilder()
|
/development/samples/browseable/CardEmulation/ |
D | _index.jd | 13 The "CardReader" sample can be used to read the loyalty card implemented in this sample.
|
/development/samples/ApiDemos/src/com/example/android/apis/content/ |
D | ReadAsset.java | 58 is.read(buffer); in onCreate()
|
D | ExternalStorage.java | 201 is.read(data); in createExternalStoragePublicPicture() 265 is.read(data); in createExternalStoragePrivatePicture() 327 is.read(data); in createExternalStoragePrivateFile()
|
/development/samples/training/basic/ActivityLifecycle/ |
D | local.properties | 8 # For customization when using a Version Control System, please read the
|
/development/samples/browseable/CardReader/ |
D | _index.jd | 9 … that do not contain NDEF or Android Beam data. This sample is designed to read the virtual
|
/development/python-packages/fetchartifact/fetchartifact/ |
D | __init__.py | 82 return await response.read()
|