Searched refs:read (Results 76 - 100 of 294) sorted by relevance

1234567891011>>

/frameworks/base/include/private/surfaceflinger/
H A DLayerState.h46 status_t read(const Parcel& input);
67 // non POD must be last. see write/read
/frameworks/base/libs/utils/
H A DBackupData.cpp233 amt = read(m_fd, &m_header, sizeof(m_header));
259 // read the rest of the header (filename)
266 int amt = read(m_fd, buf, size+1);
338 int amt = read(m_fd, data, size);
360 amt = read(m_fd, &padding, paddingSize);
/frameworks/base/media/libstagefright/include/
H A DAACEncoder.h37 virtual status_t read(
H A DAMRWBEncoder.h37 virtual status_t read(
H A DAVCDecoder.h38 virtual status_t read(
H A DAVCEncoder.h43 virtual status_t read(
H A DM4vH263Encoder.h42 virtual status_t read(
H A DThreadedSource.h37 virtual status_t read(
/frameworks/base/media/libstagefright/rtsp/
H A DAPacketSource.h40 virtual status_t read(
/frameworks/base/services/audioflinger/
H A DAudioResamplerSinc.h55 inline void read(int16_t*& impulse, uint32_t& phaseFraction,
H A DAudioResamplerSinc.cpp213 // read one frame
214 read<CHANNELS>(impulse, phaseFraction, buffer.i16, inputIndex);
216 // read 2 frames
217 read<CHANNELS>(impulse, phaseFraction, buffer.i16, inputIndex);
223 read<CHANNELS>(impulse, phaseFraction, buffer.i16, inputIndex);
230 // Always read-in the first samples from the input buffer
249 read<CHANNELS>(impulse, phaseFraction, in, inputIndex);
254 // read first frame
255 read<CHANNELS>(impulse, phaseFraction, in, inputIndex);
259 // read secon
285 void AudioResamplerSinc::read( function in class:android::AudioResamplerSinc
[all...]
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.java56 int result = in.read(retval.block, total, BLOCK_SIZE - total);
H A DDropBoxManagerService.java173 int read = 0;
174 while (read < buffer.length) {
175 int n = input.read(buffer, read, buffer.length - read);
177 read += n;
189 if (read == buffer.length && ((flags & DropBoxManager.IS_GZIPPED) == 0)) {
195 output.write(buffer, 0, read);
203 read = input.read(buffe
[all...]
H A DHeadsetObserver.java86 int len = file.read(buffer, 0, 1024);
90 len = file.read(buffer, 0, 1024);
/frameworks/base/tests/CoreTests/android/core/
H A DGZIPStreamTest.java51 if (inFile.read(zipData) != inputLength)
103 while ((len = in.read(buf)) > 0) {
/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/base/core/tests/coretests/src/android/util/
H A DBase64Test.java318 // read buffer of Base64InputStream.
332 // read as much as it will give us in one chunk
336 while ((b = b64is.read(actual, ap, actual.length-ap)) != -1) {
341 // read individual bytes
345 while ((b = b64is.read()) != -1) {
357 b = b64is.read(actual, ap, l);
362 if ((b = b64is.read()) == -1) break readloop;
371 // read as much as it will give us in one chunk
375 while ((b = b64is.read(actual, ap, actual.length-ap)) != -1) {
380 // read individua
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTypeface.cpp79 virtual size_t read(void* buffer, size_t size) function in class:AssetStream
102 amount = fAsset->read(buffer, size);
/frameworks/base/media/libmedia/
H A DIEffect.cpp90 reply.read(pReplyData, size);
148 data.read(cmd, cmdSize);
/frameworks/base/media/libstagefright/
H A DThreadedSource.cpp88 status_t ThreadedSource::read( function in class:android::ThreadedSource
170 status_t err = mSource->read(&buffer, &options);
/frameworks/base/media/libstagefright/codecs/amrnb/dec/
H A DAMRNBDecoder.cpp113 status_t AMRNBDecoder::read( function in class:android::AMRNBDecoder
135 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/amrwb/
H A DAMRWBDecoder.cpp131 status_t AMRWBDecoder::read( function in class:android::AMRWBDecoder
153 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/g711/dec/
H A DG711Decoder.cpp106 status_t G711Decoder::read( function in class:android::G711Decoder
121 err = mSource->read(&inBuffer, options);
/frameworks/base/media/libstagefright/codecs/mp3dec/
H A DMP3Decoder.cpp118 status_t MP3Decoder::read( function in class:android::MP3Decoder
144 err = mSource->read(&mInputBuffer, options);

Completed in 963 milliseconds

1234567891011>>