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

<<1112

/frameworks/base/core/java/android/app/
H A DWallpaperManager.java529 while ((amt=data.read(buffer)) > 0) {
/frameworks/base/graphics/java/android/renderscript/
H A DAllocation.java137 public void read(Object o) { method in class:Allocation
/frameworks/base/libs/utils/
H A DLooper.cpp48 LOG_ALWAYS_FATAL_IF(result != 0, "Could not make wake read pipe non-blocking. errno=%d",
65 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake read pipe to epoll instance. errno=%d",
252 LOGW("Ignoring unexpected epoll events 0x%x on wake read pipe.", epollEvents);
288 LOGW("Ignoring unexpected poll events 0x%x on wake read pipe.", pollEvents);
436 nRead = read(mWakeReadPipeFd, buffer, sizeof(buffer));
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_file.c540 n = read((int)handle, dst, (size_t)length);
543 Trace("DRM_file_read handle=%d read %d bytes", handle, n);
548 Trace("DRM_file_read read EOF: handle=%d", handle);
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java313 while ((bytesRead = inputStream.read(buffer)) >= 0) {
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java243 Log.e(TAG, "Couldn't read entity data");
310 Log.e(TAG, "Couldn't read from the cursor");
407 while ((size = br.read(temp)) > 0) {
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java153 while ((length = in.read(buffer)) != -1) {
/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/core/jni/
H A Dandroid_app_NativeActivity.cpp94 int res = read(fd, outWork, sizeof(ActivityWork));
119 SLOGW_IF(result != 0, "Could not make AInputQueue read pipe "
167 ssize_t nRead = read(mDispatchKeyRead, &byteread, 1);
673 SLOGW_IF(result != 0, "Could not make main work read pipe "
H A Dandroid_util_AssetManager.cpp368 ssize_t res = a->read(&b, 1);
394 ssize_t res = a->read(b+off, len);
/frameworks/base/libs/binder/
H A DIPCThreadState.cpp693 err = mIn.read(&tr, sizeof(tr));
747 // Is the read buffer empty?
752 // has requested to read the next data.
758 // This is what we'll read.
788 alog << "About to read/write, write size = " << mOut.dataSize() << endl;
799 alog << "Finished read/write, write size = " << mOut.dataSize() << endl;
806 << "), read consumed: " << bwr.read_consumed << endl;
957 result = mIn.read(&tr, sizeof(tr));
/frameworks/base/libs/ui/
H A DEventHub.cpp450 int32_t readSize = read(pfd.fd, mInputBufferData,
480 // a kernel wake lock. However, once the last pending event has been read, the device
940 res = read(nfd, event_buf, sizeof(event_buf));
H A DInputTransport.cpp155 nRead = ::read(mReceivePipeFd, outSignal, 1);
/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/media/libstagefright/rtsp/
H A DARTPWriter.cpp199 CHECK_EQ(mSource->read(&buffer), (status_t)OK);
269 status_t err = mSource->read(&mediaBuf);
280 LOGV("read buffer of size %d", mediaBuf->range_length());
H A DMyTransmitter.h127 CHECK_EQ(mEncoder->read(&buffer), (status_t)OK);
630 CHECK_EQ(mEncoder->read(&mediaBuf), (status_t)OK);
/frameworks/base/core/java/android/webkit/
H A DBrowserFrame.java608 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/core/jni/android/graphics/
H A DBitmapFactory.cpp386 off_t len = asset->read(data, size);
388 SkDebugf("---- copyAsset: asset->read(%d) returned %d\n", size, len);
/frameworks/base/media/libstagefright/
H A DMPEG2TSWriter.cpp59 kWhatRead = 'read',
363 status_t err = mSource->read(&buffer);
H A DMPEG4Extractor.cpp56 virtual status_t read(
1527 status_t MPEG4Source::read( function in class:android::MPEG4Source
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
H A DMediaPlayerPerformance.java360 while ((ch = in.read()) != -1) {
/frameworks/base/cmds/installd/
H A Dcommands.c919 readlen = read(subfd, buf+bufe, PKG_PATH_MAX-bufe);
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DAppCacheTest.java153 * stream, reads the contents and verifies the data that was written earlier can be read
175 fis.read(buffer, 0, count);

Completed in 906 milliseconds

<<1112