Searched defs:httpService (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/av/media/libstagefright/http/
H A DHTTPHelper.cpp51 sp<IMediaHTTPService> httpService; local
64 httpService = interface_cast<IMediaHTTPService>(binder);
67 return httpService;
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp116 const sp<IMediaHTTPService> &httpService,
167 return mPlayer->setDataSource(httpService, mContentUrl, headers);
115 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DMetadataRetrieverClient.cpp106 const sp<IMediaHTTPService> &httpService,
129 status_t ret = p->setDataSource(httpService, url, headers);
105 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DStagefrightPlayer.cpp57 const sp<IMediaHTTPService> &httpService,
60 return mPlayer->setDataSource(httpService, url, headers);
56 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DMediaPlayerService.cpp692 const sp<IMediaHTTPService> &httpService,
729 setDataSource_post(p, p->setDataSource(httpService, url, headers));
691 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/libstagefright/rtsp/
H A DSDPLoader.cpp39 const sp<IMediaHTTPService> &httpService)
44 mHTTPDataSource(new MediaHTTP(httpService->makeHTTPConnection())) {
36 SDPLoader( const sp<AMessage> &notify, uint32_t flags, const sp<IMediaHTTPService> &httpService) argument
/frameworks/av/media/libmedia/
H A Dmediametadataretriever.cpp99 const sp<IMediaHTTPService> &httpService,
114 return mRetriever->setDataSource(httpService, srcUrl, headers);
98 setDataSource( const sp<IMediaHTTPService> &httpService, const char *srcUrl, const KeyedVector<String8, String8> *headers) argument
H A DIMediaMetadataRetriever.cpp92 const sp<IMediaHTTPService> &httpService,
98 data.writeInt32(httpService != NULL);
99 if (httpService != NULL) {
100 data.writeStrongBinder(IInterface::asBinder(httpService));
219 sp<IMediaHTTPService> httpService; local
221 httpService =
237 httpService, srcUrl, numHeaders > 0 ? &headers : NULL));
91 setDataSource( const sp<IMediaHTTPService> &httpService, const char *srcUrl, const KeyedVector<String8, String8> *headers) argument
H A DIMediaPlayer.cpp89 const sp<IMediaHTTPService> &httpService,
95 data.writeInt32(httpService != NULL);
96 if (httpService != NULL) {
97 data.writeStrongBinder(IInterface::asBinder(httpService));
440 sp<IMediaHTTPService> httpService; local
442 httpService =
455 httpService, url, numHeaders > 0 ? &headers : NULL));
88 setDataSource( const sp<IMediaHTTPService> &httpService, const char* url, const KeyedVector<String8, String8>* headers) argument
H A Dmediaplayer.cpp149 const sp<IMediaHTTPService> &httpService,
159 (NO_ERROR != player->setDataSource(httpService, url, headers))) {
148 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/libstagefright/httplive/
H A DHTTPDownloader.cpp38 const sp<IMediaHTTPService> &httpService,
40 mHTTPDataSource(new MediaHTTP(httpService->makeHTTPConnection())),
37 HTTPDownloader( const sp<IMediaHTTPService> &httpService, const KeyedVector<String8, String8> &headers) argument
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextDriver.cpp45 const sp<IMediaHTTPService> &httpService)
48 mHTTPService(httpService),
43 TimedTextDriver( const wp<MediaPlayerBase> &listener, const sp<IMediaHTTPService> &httpService) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp38 const sp<IMediaHTTPService> &httpService,
42 mHTTPService(httpService),
36 HTTPLiveSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DRTSPSource.cpp37 const sp<IMediaHTTPService> &httpService,
44 mHTTPService(httpService),
35 RTSPSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers, bool uidValid, uid_t uid, bool isSDP) argument
H A DNuPlayerDriver.cpp80 const sp<IMediaHTTPService> &httpService,
92 mPlayer->setDataSourceAsync(httpService, url, headers);
79 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DGenericSource.cpp97 const sp<IMediaHTTPService> &httpService,
102 mHTTPService = httpService;
96 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DNuPlayer.cpp237 const sp<IMediaHTTPService> &httpService,
248 source = new HTTPLiveSource(notify, httpService, url, headers);
251 notify, httpService, url, headers, mUIDValid, mUID);
257 notify, httpService, url, headers, mUIDValid, mUID, true);
265 status_t err = genericSource->setDataSource(httpService, url, headers);
236 setDataSourceAsync( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/libstagefright/
H A DDataSource.cpp189 const sp<IMediaHTTPService> &httpService,
206 if (httpService == NULL) {
212 sp<IMediaHTTPConnection> conn = httpService->makeHTTPConnection();
272 sp<DataSource> DataSource::CreateMediaHTTP(const sp<IMediaHTTPService> &httpService) { argument
273 if (httpService == NULL) {
277 sp<IMediaHTTPConnection> conn = httpService->makeHTTPConnection();
188 CreateFromURI( const sp<IMediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers, String8 *contentType, HTTPBase *httpSource) argument
H A DNuMediaExtractor.cpp61 const sp<IMediaHTTPService> &httpService,
71 DataSource::CreateFromURI(httpService, path, headers);
60 setDataSource( const sp<IMediaHTTPService> &httpService, const char *path, const KeyedVector<String8, String8> *headers) argument
H A DStagefrightMetadataRetriever.cpp68 const sp<IMediaHTTPService> &httpService,
74 mSource = DataSource::CreateFromURI(httpService, uri, headers);
67 setDataSource( const sp<IMediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers) argument
H A DAwesomePlayer.cpp295 const sp<IMediaHTTPService> &httpService,
299 return setDataSource_l(httpService, uri, headers);
303 const sp<IMediaHTTPService> &httpService,
308 mHTTPService = httpService;
294 setDataSource( const sp<IMediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers) argument
302 setDataSource_l( const sp<IMediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/ndk/
H A DNdkMediaExtractor.cpp112 sp<IMediaHTTPService> httpService; local
115 httpService = interface_cast<IMediaHTTPService>(binder);
118 status_t err = mData->mImpl->setDataSource(httpService, location, NULL);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp129 sp<IMediaHTTPService> httpService; local
132 httpService = interface_cast<IMediaHTTPService>(binder);
138 httpService,
H A Dandroid_media_MediaExtractor.cpp76 const sp<IMediaHTTPService> &httpService,
79 return mImpl->setDataSource(httpService, path, headers);
650 sp<IMediaHTTPService> httpService; local
653 httpService = interface_cast<IMediaHTTPService>(binder);
656 status_t err = extractor->setDataSource(httpService, path, &headers);
75 setDataSource( const sp<IMediaHTTPService> &httpService, const char *path, const KeyedVector<String8, String8> *headers) argument
H A Dandroid_media_MediaPlayer.cpp228 sp<IMediaHTTPService> httpService; local
231 httpService = interface_cast<IMediaHTTPService>(binder);
236 httpService,

Completed in 291 milliseconds

12