Searched refs:read (Results 101 - 125 of 423) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.cpp41 status_t TimedText3GPPSource::read( function in class:android::TimedText3GPPSource
45 status_t err = mSource->read(&textBuffer, options);
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/mtp/
H A DMtpDataPacket.h98 int read(int fd);
106 int read(struct usb_request *request);
H A DMtpDeviceInfo.cpp62 void MtpDeviceInfo::read(MtpDataPacket& packet) { function in class:android::MtpDeviceInfo
65 // read the device info
/frameworks/compile/linkloader/include/impl/
H A DELFSectionSymTab.hxx88 ELFSectionSymTab<Bitwidth>::read(Archiver &AR, function in class:ELFSectionSymTab
103 st->table.push_back(ELFSymbolTy::read(AR, owner, i));
107 // Unable to read the table.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java508 dis.read(addr.origBytes, 0, length); // digits
519 dis.read(env.bearerData, 0, bearerDataLength);
571 dis.read(parameterData, 0, parameterLen);
573 addr.digitMode = addrBis.read(1);
574 addr.numberMode = addrBis.read(1);
577 numberType = addrBis.read(3);
581 addr.numberPlan = addrBis.read(4);
584 addr.numberOfDigits = addrBis.read(8);
592 b = (byte) (0xF & addrBis.read(4));
600 b = (byte) (0xFF & addrBis.read(
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduParser.java898 pduDataStream.read(partData, 0, dataLength);
965 int temp = pduDataStream.read();
973 temp = pduDataStream.read();
1001 int temp = pduDataStream.read();
1029 int temp = pduDataStream.read();
1088 int temp = pduDataStream.read();
1191 int temp = pduDataStream.read();
1205 temp = pduDataStream.read();
1224 int temp = pduDataStream.read();
1244 int temp = pduDataStream.read();
[all...]
/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
97 // until a subsequent read-with-seek. Currently only supported by
104 // are to be returned exclusively in response to read calls.
106 // first read() call.
/frameworks/av/libvideoeditor/lvpp/
H A DDummyAudioSource.h39 virtual status_t read(
H A DVideoEditorSRC.h35 virtual status_t read (
/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().
H A DMonoPipeReader.cpp46 ssize_t MonoPipeReader::read(void *buffer, size_t count, int64_t readPTS) function in class:android::MonoPipeReader
48 // Compute the "next read PTS" and cache it. Callers of read pass a read
62 // Uh-oh, looks like we are underflowing. Update the next read PTS and
/frameworks/av/media/libstagefright/include/
H A DAACEncoder.h37 virtual status_t read(
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.h41 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/wifi-display/source/
H A DRepeaterSource.h20 virtual status_t read(
/frameworks/av/services/audioflinger/
H A DAudioResamplerSinc.h61 inline void read(int16_t*& impulse, uint32_t& phaseFraction,
/frameworks/base/core/java/android/hardware/
H A DSerialPort.java87 * @param buffer to read into
88 * @return number of bytes read
90 public int read(ByteBuffer buffer) throws IOException { method in class:SerialPort
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java40 /** file descriptor array received during a previous read */
47 * need to read ancillary data.
64 public int read() throws IOException { method in class:LocalSocketImpl.SocketInputStream
77 public int read(byte[] b) throws IOException { method in class:LocalSocketImpl.SocketInputStream
78 return read(b, 0, b.length);
83 public int read(byte[] b, int off, int len) throws IOException { method in class:LocalSocketImpl.SocketInputStream
101 * need to read ancillary data.
446 * method can only return a non-null after a read operation.
/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/graphics/java/android/renderscript/
H A DScriptC.java82 int bytesRead = is.read(pgm, pgmLength, bytesLeft);
/frameworks/base/libs/androidfw/
H A DBackupData.cpp245 amt = read(m_fd, &m_header, sizeof(m_header));
271 // read the rest of the header (filename)
278 int amt = read(m_fd, buf, size+1);
352 int amt = read(m_fd, data, size);
374 amt = read(m_fd, &padding, paddingSize);
/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);

Completed in 431 milliseconds

1234567891011>>