Searched refs:read (Results 126 - 150 of 460) sorted by relevance

1234567891011>>

/frameworks/av/include/media/stagefright/
H A DMediaSource.h39 // Any blocking read call returns immediately with a result of NO_INIT.
59 virtual status_t read(
62 // Options that modify read() behaviour. The default is to
102 // until a subsequent read-with-seek. Currently only supported by
109 // are to be returned exclusively in response to read calls.
111 // first read() call.
/frameworks/av/media/img_utils/src/
H A DFileInput.cpp48 ssize_t FileInput::read(uint8_t* buf, size_t offset, size_t count) { function in class:android::img_utils::FileInput
50 ALOGE("%s: Could not read file %s, file not open.", __FUNCTION__, mPath.string());
/frameworks/av/media/libnbaio/
H A DLibsndfileSource.cpp46 ssize_t LibsndfileSource::read(void *buffer, size_t count) function in class:android::LibsndfileSource
55 // Detect EOF by zero frames read, not by mFramesUntilEOF as it could be inaccurate
62 // We didn't read any frames during the current loop cycle, so disable
63 // further looping to prevent the caller from busy waiting at read().
/frameworks/av/media/libstagefright/include/
H A DAACEncoder.h37 virtual status_t read(
/frameworks/av/media/libstagefright/tests/
H A DDummyRecorder.cpp70 // pretend to read the source buffers
80 while (mStarted && (err = mSource->read(&buffer)) == OK){
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.h38 virtual status_t read(
77 // This compare function is used to find a next subtitle when read() is
H A DTimedTextSource.h45 virtual status_t read(
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.h22 virtual status_t read(
/frameworks/av/media/mtp/
H A DMtpDeviceInfo.cpp62 void MtpDeviceInfo::read(MtpDataPacket& packet) { function in class:android::MtpDeviceInfo
65 // read the device info
/frameworks/av/services/audioflinger/
H A DAudioResamplerSinc.h64 inline void read(int16_t*& impulse, uint32_t& phaseFraction,
/frameworks/base/core/java/android/hardware/
H A DSerialPort.java84 * @param buffer to read into
85 * @return number of bytes read
87 public int read(ByteBuffer buffer) throws IOException { method in class:SerialPort
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java46 /** file descriptor array received during a previous read */
53 * need to read ancillary data.
73 public int read() throws IOException { method in class:LocalSocketImpl.SocketInputStream
86 public int read(byte[] b) throws IOException { method in class:LocalSocketImpl.SocketInputStream
87 return read(b, 0, b.length);
92 public int read(byte[] b, int off, int len) throws IOException { method in class:LocalSocketImpl.SocketInputStream
110 * need to read ancillary data.
499 * method can only return a non-null after a read operation.
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DManifestDigestTest.java40 public int read() throws IOException {
/frameworks/base/core/tests/coretests/src/android/net/
H A DSSLTest.java46 // System.out.println("going for read...");
47 int ret = in.read(b);
/frameworks/base/libs/androidfw/
H A DBackupData.cpp247 amt = read(m_fd, &m_header, sizeof(m_header));
273 // read the rest of the header (filename)
280 int amt = read(m_fd, buf, size+1);
354 int amt = read(m_fd, data, size);
376 amt = read(m_fd, &padding, paddingSize);
/frameworks/base/media/mca/filterfw/java/android/filterfw/io/
H A DGraphReader.java48 while ((bytesRead = reader.read(buffer, 0, 1024)) > 0) {
52 throw new RuntimeException("Could not read specified resource file!");
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
H A DUsbAccessoryStreamTransport.java60 return mInputStream.read(buffer, offset, count);
/frameworks/base/tools/obbtool/
H A Dpbkdf2gen.cpp52 if (read(fd, &salt, SALT_LEN) != SALT_LEN) {
53 fprintf(stderr, "Could not read salt from /dev/urandom: %s\n", strerror(errno));
/frameworks/base/tools/preload/
H A DMemoryUsage.java276 int read;
278 while ((read = in.read(buffer)) > -1) {
279 out.write(buffer, 0, read);
/frameworks/ex/framesequence/jni/
H A DStream.h30 size_t read(void* buffer, size_t size);
/frameworks/native/include/gui/
H A DBitTube.h80 ssize_t read(void* vaddr, size_t size);
H A DSensorEventQueue.h64 ssize_t read(ASensorEvent* events, size_t numEvents);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestGetMessage.java65 while ((len = stream.read(buf)) != -1) {
/frameworks/rs/cpu_ref/linkloader/include/
H A DELFSectionProgBits.h36 static ELFSectionProgBits *read(Archiver &AR,
H A DELFSectionSymTab.h44 read(Archiver &AR, ELFObjectTy *owner, ELFSectionHeaderTy const *sh);

Completed in 668 milliseconds

1234567891011>>