Searched defs:mSource (Results 26 - 50 of 59) sorted by path

123

/frameworks/av/media/libstagefright/include/
H A DAACEncoder.h45 sp<MediaSource> mSource; member in class:android::AACEncoder
H A DFragmentedMP4Parser.h164 sp<Source> mSource; member in struct:android::FragmentedMP4Parser
H A DNuCachedSource2.h92 sp<DataSource> mSource; member in struct:android::NuCachedSource2
H A DStagefrightMetadataRetriever.h47 sp<DataSource> mSource; member in struct:android::StagefrightMetadataRetriever
H A DThrottledSource.h39 return mSource->getMIMEType();
46 sp<DataSource> mSource; member in struct:android::ThrottledSource
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp40 : mSource(source) {
51 ssize_t n = mSource->readAt(position, buffer, length);
62 if (mSource->getSize(&size) != OK) {
81 sp<DataSource> mSource; member in struct:android::DataSourceReader
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp131 sp<AnotherPacketSource> mSource; member in struct:android::ATSParser::Stream
639 if (mSource != NULL) {
640 mSource->queueDiscontinuity(type, extra);
645 if (mSource != NULL) {
646 mSource->signalEOS(finalResult);
862 if (mSource == NULL) {
869 mSource = new AnotherPacketSource(meta);
870 mSource->queueAccessUnit(accessUnit);
877 if (mSource->getFormat() == NULL) {
878 mSource
[all...]
H A DMPEG2PSExtractor.cpp63 sp<AnotherPacketSource> mSource; member in struct:android::MPEG2PSExtractor::Track
581 if (mSource == NULL) {
585 return mSource->start(params);
589 if (mSource == NULL) {
593 return mSource->stop();
597 if (mSource == NULL) {
601 return mSource->getFormat();
606 if (mSource == NULL) {
611 while (!mSource->hasBufferAvailable(&finalResult)) {
619 mSource
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.h75 sp<MediaSource> mSource; member in struct:android::ARTPWriter
/frameworks/av/media/libstagefright/tests/
H A DDummyRecorder.h33 sp<MediaSource> mSource; member in class:android::DummyRecorder
46 DummyRecorder(const sp<MediaSource> &source) : mSource(source)
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.h33 virtual status_t start() { return mSource->start(); }
34 virtual status_t stop() { return mSource->stop(); }
47 sp<MediaSource> mSource; member in class:android::TimedText3GPPSource
H A DTimedTextPlayer.h67 sp<TimedTextSource> mSource; member in class:android::TimedTextPlayer
H A DTimedTextSRTSource.h49 sp<DataSource> mSource; member in class:android::TimedTextSRTSource
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp87 mSource = new TimedTextSRTSource(stub);
88 mSource->start();
110 sp<TimedTextSource> mSource; member in class:android::test::TimedTextSRTSourceTest
120 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
127 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
133 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
139 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
145 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
152 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
161 err = mSource
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DMediaPuller.h49 sp<MediaSource> mSource; member in struct:android::MediaPuller
H A DRepeaterSource.h42 sp<MediaSource> mSource; member in struct:android::RepeaterSource
/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
H A DHtml.java415 private String mSource; field in class:HtmlToSpannedConverter
424 mSource = source;
435 mReader.parse(new InputSource(new StringReader(mSource)));
H A DTextUtils.java505 mSource = source;
527 return AndroidCharacter.getMirror(mSource.charAt(mEnd - 1 - off));
531 TextUtils.getChars(mSource, start + mStart, end + mStart,
545 private CharSequence mSource; field in class:TextUtils.Reverser
/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/core/java/android/view/
H A DInputDevice.java550 if (range.mAxis == axis && range.mSource == source) {
605 private int mSource; field in class:InputDevice.MotionRange
613 mSource = source;
633 return mSource;
701 out.writeInt(range.mSource);
755 description.append(": source=0x").append(Integer.toHexString(range.mSource));
H A DKeyEvent.java1271 private int mSource; field in class:KeyEvent
1498 mSource = source;
1522 mSource = InputDevice.SOURCE_KEYBOARD;
1536 mSource = origEvent.mSource;
1562 mSource = origEvent.mSource;
1601 ev.mSource = source;
1622 ev.mSource = other.mSource;
[all...]
H A DViewRootImpl.java4630 View oldSource = mSendWindowContentChangedAccessibilityEvent.mSource;
4632 mSendWindowContentChangedAccessibilityEvent.mSource = source;
4636 mSendWindowContentChangedAccessibilityEvent.mSource =
5458 public View mSource; field in class:ViewRootImpl.SendWindowContentChangedAccessibilityEvent
5461 if (mSource != null) {
5462 mSource.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_CONTENT_CHANGED);
5463 mSource.resetAccessibilityStateChanged();
5464 mSource = null;

Completed in 2194 milliseconds

123