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

1234

/frameworks/base/location/java/android/location/
H A DCountry.java59 private final int mSource; field in class:Country
87 mSource = source;
97 mSource = source;
103 mSource = country.mSource;
125 return mSource;
152 parcel.writeInt(mSource);
169 return mCountryIso.equals(c.getCountryIso()) && mSource == c.getSource();
180 hash = hash * 13 + mSource;
200 return "Country {ISO=" + mCountryIso + ", source=" + mSource
[all...]
/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 DMediaSourceSplitter.cpp30 mSource = mediaSource;
63 status_t err = mSource->start(params);
94 status_t err = mSource->stop();
118 return mSource->getFormat();
169 mLastReadStatus = mSource->read(&mLastReadMediaBuffer , options);
H A DAudioPlayer.cpp63 CHECK(mSource == NULL);
64 mSource = source;
69 CHECK(mSource != NULL);
73 err = mSource->start();
93 mFirstBufferResult = mSource->read(&mFirstBuffer, &options);
104 sp<MetaData> format = mSource->getFormat();
129 mSource->stop();
157 mSource->stop();
232 mSource->stop();
237 wp<MediaSource> tmp = mSource;
[all...]
H A DNuCachedSource2.cpp184 : mSource(source),
231 if (mSource->flags() & kIsHTTPBasedSource) {
232 HTTPBase* source = static_cast<HTTPBase *>(mSource.get());
239 if (mSource->flags() & kIsHTTPBasedSource) {
240 HTTPBase *source = static_cast<HTTPBase *>(mSource.get());
247 return mSource->initCheck();
251 return mSource->getSize(size);
256 uint32_t flags = mSource->flags() & ~(kWantsPrefetching | kIsHTTPBasedSource);
297 mSource->reconnectAtOffset(mCacheOffset + mCache->totalSize());
314 ssize_t n = mSource
[all...]
/frameworks/base/media/libstagefright/tests/
H A DDummyRecorder.h33 sp<MediaSource> mSource; member in class:android::DummyRecorder
46 DummyRecorder(const sp<MediaSource> &source) : mSource(source)
H A DDummyRecorder.cpp41 mSource->start();
61 mSource->stop();
80 while (mStarted && (err = mSource->read(&buffer)) == OK){
/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/media/libvideoeditor/lvpp/
H A DVideoEditorSRC.cpp32 mSource = source;
48 sp<MetaData> format = mSource->getFormat();
61 LOGV("VideoEditorSRC::~VideoEditorSRC %p(%p)", this, mSource.get());
67 LOGV("VideoEditorSRC:start %p(%p)", this, mSource.get());
75 mSource->start();
81 LOGV("VideoEditorSRC::stop %p(%p)", this, mSource.get());
87 mSource->stop();
107 LOGV("VideoEditorSRC::read %p(%p)", this, mSource.get());
166 status_t err = mSource->read(&aBuffer, options);
208 status_t err = mSource
[all...]
H A DAudioPlayerBase.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...]
/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/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/libmediaplayerservice/nuplayer/
H A DStreamingSource.h43 sp<IStreamSource> mSource; member in struct:android::NuPlayer::StreamingSource
H A DNuPlayerStreamListener.cpp33 : mSource(source),
37 mSource->setListener(this);
46 mSource->setBuffers(mBuffers);
51 mSource->onBufferAvailable(i);
156 mSource->onBufferAvailable(entry->mIndex);
H A DNuPlayerStreamListener.h61 sp<IStreamSource> mSource; member in struct:android::NuPlayer::NuPlayerStreamListener
/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
/frameworks/base/media/libstagefright/timedtext/
H A DTimedTextPlayer.cpp66 : mSource(NULL),
100 mSource = mTextTrackVector.itemAt(index);
102 err = mSource->start();
170 if (mSource != NULL) {
171 mSource->stop();
172 mSource.clear();
173 mSource = NULL;
240 if (mSource->read(&mTextBuffer, &options) != OK) {
354 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
388 CHECK(mSource
[all...]
/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 1377 milliseconds

1234