Searched refs:read (Results 201 - 225 of 282) sorted by relevance

1234567891011>>

/frameworks/base/libs/audioflinger/
H A DAudioHardwareGeneric.cpp341 ssize_t AudioStreamInGeneric::read(void* buffer, ssize_t bytes) function in class:android::AudioStreamInGeneric
345 LOGE("Attempt to read from unopened device");
348 return ::read(mFd, buffer, bytes);
H A DAudioHardwareStub.cpp174 ssize_t AudioStreamInStub::read(void* buffer, ssize_t bytes) function in class:android::AudioStreamInStub
/frameworks/base/media/libstagefright/
H A DOggExtractor.cpp53 virtual status_t read(
147 status_t OggSource::read( function in class:android::OggSource
256 LOGE("failed to read %d bytes at offset 0x%08lx", sizeof(header), offset);
365 LOGE("failed to read %d bytes at 0x%08lx", packetSize, dataOffset);
374 // We've just read the entire packet.
434 LOGV("read packet of size %d\n", packet->range_length());
440 LOGV("read packet of size %d\n", packet->range_length());
446 LOGV("read packet of size %d\n", packet->range_length());
H A DCameraSource.cpp211 status_t CameraSource::read( function in class:android::CameraSource
/frameworks/base/media/libstagefright/codecs/avc/dec/
H A DAVCDecoder.cpp203 status_t AVCDecoder::read( function in class:android::AVCDecoder
240 status_t err = mSource->read(&mInputBuffer, &seekOptions);
/frameworks/base/awt/org/apache/harmony/awt/gl/image/
H A DPngDecoderJava.java228 while ((readLength = in.read(block)) != -1)
/frameworks/base/cmds/installd/
H A Dinstalld.c128 r = read(s, buf + n, count - n);
131 LOGE("read error: %s\n", strerror(errno));
252 LOGE("failed to read size\n");
260 LOGE("failed to read command\n");
/frameworks/base/cmds/runtime/
H A DSignalHandler.cpp31 read(mOwner.mAvailMsg[0], buffer, sizeof(buffer));
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothSocket.java303 /*package*/ int read(byte[] b, int offset, int length) throws IOException { method in class:BluetoothSocket
/frameworks/base/core/java/android/os/
H A DDropBoxManager.java96 * Create a new Entry with the contents read from a file.
97 * The file will be read when the entry's contents are requested.
153 return new String(buf, 0, Math.max(0, is.read(buf)));
237 * @param file to read from
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java308 // read some data
309 int nbytes = audio.read(mPutAudioBuffer);
/frameworks/base/core/java/com/android/internal/backup/
H A DLocalTransport.java227 in.read(buf);
238 Log.e(TAG, "Unable to read backup records", e);
/frameworks/base/core/jni/android/graphics/
H A DCreateJavaOutputStreamAdaptor.cpp40 // read the bytes
51 SkDebugf("---- read threw an exception\n");
64 SkDebugf("---- read:GetByteArrayRegion threw an exception\n");
106 virtual size_t read(void* buffer, size_t size) { function in class:JavaInputStreamAdaptor
113 If we see that value, we need to call read(), which will
123 // if read returned 0, we're at EOF
157 "read", "([BII)I");
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp218 int rc = read(fd, cmdline, sizeof(cmdline)-1);
379 const int len = read(fd, buffer, sizeof(buffer)-1);
383 LOGW("Unable to read /proc/meminfo");
478 int len = read(fd, buffer, BUFFER_SIZE-1);
482 LOGW("Unable to read %s", file.string());
767 const int len = read(fd, buffer, sizeof(buffer)-1);
/frameworks/base/include/media/stagefright/
H A DOMXCodec.h52 virtual status_t read(
/frameworks/base/include/ui/
H A DRegion.h123 ssize_t read(const void* buffer);
/frameworks/base/libs/surfaceflinger_client/
H A DISurface.cpp82 reply.read(*buffer);
H A DISurfaceFlingerClient.cpp181 states[i].read(data);
/frameworks/base/libs/utils/
H A DZipUtils.cpp94 /* read as much as we can */
101 int cc = read(fd, readBuf, getSize);
103 LOGD("inflate read failed (%d vs %ld)\n",
206 /* read as much as we can */
215 LOGD("inflate read failed (%d vs %ld)\n",
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dmostream.h74 void read (istream& is);
/frameworks/base/media/tests/omxjpegdecoder/
H A Domx_jpeg_decoder.cpp151 status_t err = decoder->read(&buffer, NULL);
157 printf("Duration in decoder->read(): %.1f (msecs). \n",
/frameworks/base/opengl/tests/angeles/include/GLES/
H A Degl.h214 GLAPI EGLBoolean APIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx);
/frameworks/base/services/java/com/android/server/
H A DInstaller.java83 count = mIn.read(buffer, off, len - off);
85 Slog.e(TAG, "read error " + count);
90 Slog.e(TAG,"read exception");
94 // Slog.i(TAG, "read "+len+" bytes");
H A DNativeDaemonConnector.java109 int count = inputStream.read(buffer, start, BUFFER_SIZE - start);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DLoadTestsAutoTest.java215 while ((len = in.read(buf)) >= 0 ) {

Completed in 304 milliseconds

1234567891011>>