Searched refs:mSource (Results 1 - 25 of 71) sorted by relevance

123

/frameworks/base/core/java/android/view/
H A DInputEvent.java29 protected int mSource; field in class:InputEvent
68 return mSource;
78 mSource = source;
88 mSource = in.readInt();
94 out.writeInt(mSource);
/frameworks/base/media/libstagefright/
H A DThrottledSource.cpp33 : mSource(source),
41 return mSource->initCheck();
47 ssize_t n = mSource->readAt(offset, data, size);
76 return mSource->getSize(size);
80 return mSource->flags();
H A DJPEGSource.cpp55 : mSource(source),
63 CHECK(mSource->getSize(&mSize) == OK);
123 ssize_t n = mSource->readAt(mOffset, buffer->data(), mSize - mOffset);
148 if (!mSource->getUInt16(i, &soi)) {
160 if (mSource->readAt(i++, &marker, 1) != 1) {
166 if (mSource->readAt(i++, &marker, 1) != 1) {
173 if (!mSource->getUInt16(i, &chunkSize)) {
208 if (!mSource->getUInt16(i + 1, &height)
209 || !mSource->getUInt16(i + 3, &width)) {
H A DAudioPlayer.cpp63 CHECK_EQ(mSource, NULL);
64 mSource = source;
69 CHECK(mSource != NULL);
73 err = mSource->start();
87 mFirstBufferResult = mSource->read(&mFirstBuffer);
98 sp<MetaData> format = mSource->getFormat();
123 mSource->stop();
151 mSource->stop();
224 mSource->stop();
229 wp<MediaSource> tmp = mSource;
[all...]
H A DThreadedSource.cpp33 : mSource(source),
49 status_t err = mSource->start(params);
77 status_t err = mSource->stop();
85 return mSource->getFormat();
170 status_t err = mSource->read(&buffer, &options);
H A DStagefrightMetadataRetriever.cpp59 mSource = DataSource::CreateFromURI(uri);
61 if (mSource == NULL) {
65 mExtractor = MediaExtractor::Create(mSource);
68 mSource.clear();
88 mSource = new FileSource(fd, offset, length);
91 if ((err = mSource->initCheck()) != OK) {
92 mSource.clear();
97 mExtractor = MediaExtractor::Create(mSource);
100 mSource.clear();
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java44 mSource = source;
93 return mSource.charAt(off);
97 return mSource.length();
101 return AlteredCharSequence.make(mSource.subSequence(start, end),
106 TextUtils.getChars(mSource, start, end, dest, off);
126 private CharSequence mSource; field in class:AlteredCharSequence
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java143 mSource = source;
147 return mSource.length();
151 if (mSource instanceof Spanned) {
152 Spanned sp = (Spanned) mSource;
158 return mSource.charAt(i);
169 return mSource.charAt(i);
190 TextUtils.getChars(mSource, start, end, dest, off);
196 if (mSource instanceof Spanned) {
197 Spanned sp = (Spanned) mSource;
233 private CharSequence mSource; field in class:PasswordTransformationMethod.PasswordCharSequence
[all...]
H A DReplacementTransformationMethod.java114 mSource = source;
120 return mSource.length();
124 char c = mSource.charAt(i);
151 TextUtils.getChars(mSource, start, end, dest, off);
166 private CharSequence mSource; field in class:ReplacementTransformationMethod.ReplacementCharSequence
/frameworks/base/media/libstagefright/codecs/g711/dec/
H A DG711Decoder.cpp34 : mSource(source),
49 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
62 mSource->start();
75 mSource->stop();
83 sp<MetaData> srcFormat = mSource->getFormat();
121 err = mSource->read(&inBuffer, options);
/frameworks/base/core/java/android/text/style/
H A DImageSpan.java34 private String mSource; field in class:ImageSpan
95 mSource = source;
110 mSource = uri.toString();
163 return mSource;
/frameworks/base/media/libstagefright/include/
H A DThrottledSource.h41 sp<DataSource> mSource; member in struct:android::ThrottledSource
H A DAACDecoder.h46 sp<MediaSource> mSource; member in struct:android::AACDecoder
H A DAMRNBDecoder.h42 sp<MediaSource> mSource; member in struct:android::AMRNBDecoder
H A DAMRNBEncoder.h43 sp<MediaSource> mSource; member in struct:android::AMRNBEncoder
H A DAMRWBDecoder.h42 sp<MediaSource> mSource; member in struct:android::AMRWBDecoder
H A DG711Decoder.h42 sp<MediaSource> mSource; member in struct:android::G711Decoder
H A DM4vH263Decoder.h46 sp<MediaSource> mSource; member in struct:android::M4vH263Decoder
H A DMP3Decoder.h44 sp<MediaSource> mSource; member in struct:android::MP3Decoder
/frameworks/base/media/libstagefright/codecs/amrnb/dec/
H A DAMRNBDecoder.cpp33 : mSource(source),
57 mSource->start();
79 mSource->stop();
87 sp<MetaData> srcFormat = mSource->getFormat();
135 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/amrwb/
H A DAMRWBDecoder.cpp32 : mSource(source),
61 mSource->start();
84 mSource->stop();
92 sp<MetaData> srcFormat = mSource->getFormat();
153 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/mp3dec/
H A DMP3Decoder.cpp29 : mSource(source),
42 sp<MetaData> srcFormat = mSource->getFormat();
84 mSource->start();
107 mSource->stop();
144 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/vorbis/dec/
H A DVorbisDecoder.cpp40 : mSource(source),
47 sp<MetaData> srcFormat = mSource->getFormat();
81 mSource->start();
83 sp<MetaData> meta = mSource->getFormat();
140 mSource->stop();
148 sp<MetaData> srcFormat = mSource->getFormat();
233 err = mSource->read(&inputBuffer, options);
/frameworks/base/include/media/stagefright/
H A DAMRWriter.h49 sp<MediaSource> mSource; member in struct:android::AMRWriter
H A DJPEGSource.h42 sp<DataSource> mSource; member in struct:android::JPEGSource

Completed in 1187 milliseconds

123