Searched refs:read (Results 251 - 275 of 282) sorted by relevance

<<1112

/frameworks/base/services/jni/
H A Dcom_android_server_BatteryService.cpp145 size_t count = read(fd, buf, size);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLayoutTestsAutoTest.java194 // read out the test name it stoped last time.
475 while ((len = in.read(buf)) >= 0 ) {
/frameworks/base/awt/java/awt/
H A DFont.java1521 bRead = buffStream.read(buf, 0, size);
1525 bRead = buffStream.read(buf, 0, size);
/frameworks/base/libs/binder/
H A DIPCThreadState.cpp656 err = mIn.read(&tr, sizeof(tr));
710 // Is the read buffer empty?
715 // has requested to read the next data.
721 // This is what we'll read.
751 alog << "About to read/write, write size = " << mOut.dataSize() << endl;
762 alog << "Finished read/write, write size = " << mOut.dataSize() << endl;
769 << "), read consumed: " << bwr.read_consumed << endl;
920 result = mIn.read(&tr, sizeof(tr));
/frameworks/base/libs/ui/
H A DEventHub.cpp374 res = read(mFDs[i].fd, &iev, sizeof(iev));
841 res = read(nfd, event_buf, sizeof(event_buf));
/frameworks/base/media/libstagefright/omx/tests/
H A DOMXHarness.cpp599 // followed by a linear read for the second iteration (i == 1).
613 LOGI("requesting linear read");
631 if (seekSource->read(&buffer, &options) != OK) {
650 err = codec->read(&buffer, &options);
671 // Linear read.
693 "OMXCodec::read.");
/frameworks/base/cmds/installd/
H A Dcommands.c849 readlen = read(subfd, buf+bufe, PKG_PATH_MAX-bufe);
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java604 stream.read(buffer, offset, size);
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DPduComposer.java81 * Block size when read data from InputStream.
995 while ((len = cr.read(buffer)) != -1) {
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dustring.h165 void read (istream&);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java360 while ((ch = in.read()) != -1) {
/frameworks/base/services/java/com/android/server/
H A DProcessStats.java680 int len = is.read(mBuffer);
H A DThrottleService.java91 private long mLastRead; // read byte count from last poll
492 ", read =" + incRead + ", written =" + incWrite + ", new total =" + total);
692 " bytes read and " + mRecorder.getPeriodTx(0) + " written");
877 // if time moves backward accumulate all read/write that's lost into the now
1003 // clean out any old data first. If we fail to read we don't want old stuff
1012 s.read(buffer);
1106 pw.println(" Period[" + i + "] - read:" + mRecorder.getPeriodRx(i) + ", written:" +
H A DWallpaperManagerService.java815 while ((amt=res.read(buffer)) > 0) {
/frameworks/base/media/libstagefright/
H A DMPEG4Extractor.cpp56 virtual status_t read(
1455 status_t MPEG4Source::read( function in class:android::MPEG4Source
H A DOMXCodec.cpp1719 // call to OMXCodec::read as mInitialBufferSubmit is true at
1970 err = mSource->read(&srcBuffer, &options);
1977 err = mSource->read(&srcBuffer);
1993 "buffer read from source (info->mSize = %d, srcLength = %d)",
2435 status_t OMXCodec::read( function in class:android::OMXCodec
H A DAwesomePlayer.cpp522 // the prefetcher to read its data.
865 status_t err = mVideoSource->read(&mVideoBuffer, &options);
H A DMPEG4Writer.cpp392 while (!mDone && mSource->read(&buffer) == OK) {
/frameworks/base/core/java/android/server/
H A DBluetoothService.java198 file.read(address);
208 log("FileNotFoundException while trying to read dock address");
210 log("IOException while trying to read dock address");
774 while ((len = in.read(buf)) > 0) {
/frameworks/base/core/jni/
H A Dandroid_util_AssetManager.cpp379 ssize_t res = a->read(&b, 1);
405 ssize_t res = a->read(b+off, len);
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DAppCacheTest.java160 * stream, reads the contents and verifies the data that was written earlier can be read
182 fis.read(buffer, 0, count);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DCodecTest.java71 while ( ( ch = in.read() ) != -1 ){
/frameworks/base/services/java/com/android/server/am/
H A DUsageStatsService.java611 int amt = stream.read(data, pos, data.length-pos);
/frameworks/base/tools/localize/
H A DXMLHandler.cpp566 SourcePos(filename, -1).Error("Unable to open file for read: %s", strerror(errno));
584 len = read(fd, buf, sizeof(buf));
/frameworks/base/libs/audioflinger/
H A DAudioFlinger.cpp1504 // read original volumes with volume control
1508 // read the volume from the LivesVibes audio engine.
2682 // the risk that at the same time, the AudioMixer is trying to read
2810 // read from buffer
3025 // read the server count again
3308 // record start succeeds only if first read from audio input
3364 mBytesRead = mInput->read(buffer.raw, mInputBytes);
3367 mBytesRead = mInput->read(mRsmpInBuffer, mInputBytes);
3374 // recover at next read attempt
3417 // This will give the application more chance to read fro
[all...]

Completed in 428 milliseconds

<<1112