Searched defs:httpService (Results 1 - 25 of 29) 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/libstagefright/
H A DDataSourceFactory.cpp34 const sp<MediaHTTPService> &httpService,
47 if (httpService == NULL) {
53 sp<MediaHTTPConnection> conn = httpService->makeHTTPConnection();
104 sp<DataSource> DataSourceFactory::CreateMediaHTTP(const sp<MediaHTTPService> &httpService) { argument
105 if (httpService == NULL) {
109 sp<MediaHTTPConnection> conn = httpService->makeHTTPConnection();
33 CreateFromURI( const sp<MediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers, String8 *contentType, HTTPBase *httpSource) argument
H A DNuMediaExtractor.cpp75 const sp<MediaHTTPService> &httpService,
85 DataSourceFactory::CreateFromURI(httpService, path, headers);
74 setDataSource( const sp<MediaHTTPService> &httpService, const char *path, const KeyedVector<String8, String8> *headers) argument
H A DStagefrightMetadataRetriever.cpp57 const sp<IMediaHTTPService> &httpService,
63 mSource = DataSourceFactory::CreateFromURI(httpService, uri, headers);
56 setDataSource( const sp<IMediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers) argument
/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
/frameworks/av/media/libstagefright/rtsp/
H A DSDPLoader.cpp39 const sp<MediaHTTPService> &httpService)
44 mHTTPDataSource(new MediaHTTP(httpService->makeHTTPConnection())) {
36 SDPLoader( const sp<AMessage> &notify, uint32_t flags, const sp<MediaHTTPService> &httpService) argument
/frameworks/av/media/libstagefright/httplive/
H A DHTTPDownloader.cpp39 const sp<MediaHTTPService> &httpService,
41 mHTTPDataSource(new MediaHTTP(httpService->makeHTTPConnection())),
38 HTTPDownloader( const sp<MediaHTTPService> &httpService, const KeyedVector<String8, String8> &headers) argument
H A DLiveSession.cpp277 const sp<MediaHTTPService> &httpService)
280 mHTTPService(httpService),
275 LiveSession( const sp<AMessage> &notify, uint32_t flags, const sp<MediaHTTPService> &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.cpp95 const sp<IMediaHTTPService> &httpService,
101 data.writeInt32(httpService != NULL);
102 if (httpService != NULL) {
103 data.writeStrongBinder(IInterface::asBinder(httpService));
306 sp<IMediaHTTPService> httpService; local
308 httpService =
314 if (httpService == NULL || srcUrl == NULL) {
329 httpService, srcUrl, numHeaders > 0 ? &headers : NULL));
94 setDataSource( const sp<IMediaHTTPService> &httpService, const char *srcUrl, const KeyedVector<String8, String8> *headers) argument
H A DIMediaPlayer.cpp116 const sp<IMediaHTTPService> &httpService,
122 data.writeInt32(httpService != NULL);
123 if (httpService != NULL) {
124 data.writeStrongBinder(IInterface::asBinder(httpService));
637 sp<IMediaHTTPService> httpService; local
639 httpService =
656 httpService, url, numHeaders > 0 ? &headers : NULL));
115 setDataSource( const sp<IMediaHTTPService> &httpService, const char* url, const KeyedVector<String8, String8>* headers) argument
H A Dmediaplayer.cpp156 const sp<IMediaHTTPService> &httpService,
166 (NO_ERROR != player->setDataSource(httpService, url, headers))) {
155 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/libmediaplayer2/nuplayer2/
H A DHTTPLiveSource2.cpp43 const sp<MediaHTTPService> &httpService,
47 mHTTPService(httpService),
41 HTTPLiveSource2( const sp<AMessage> &notify, const sp<MediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DRTSPSource2.cpp43 const sp<MediaHTTPService> &httpService,
49 mHTTPService(httpService),
41 RTSPSource2( const sp<AMessage> &notify, const sp<MediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers, uid_t uid, bool isSDP) argument
H A DGenericSource2.cpp113 const sp<MediaHTTPService> &httpService,
121 mHTTPService = httpService;
112 setDataSource( const sp<MediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DNuPlayer2.cpp286 const sp<MediaHTTPService> &httpService = dsd->mHttpService; local
290 *source = new HTTPLiveSource2(notify, httpService, url, headers);
295 notify, httpService, url, headers, mUID);
303 notify, httpService, url, headers, mUID, true);
312 err = genericSource->setDataSource(httpService, url, headers);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp43 const sp<IMediaHTTPService> &httpService,
47 mHTTPService(httpService),
41 HTTPLiveSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DRTSPSource.cpp43 const sp<IMediaHTTPService> &httpService,
50 mHTTPService(httpService),
41 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.cpp139 const sp<IMediaHTTPService> &httpService,
151 mPlayer->setDataSourceAsync(httpService, url, headers);
138 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DGenericSource.cpp113 const sp<IMediaHTTPService> &httpService,
121 mHTTPService = httpService;
112 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DNuPlayer.cpp258 const sp<IMediaHTTPService> &httpService,
269 source = new HTTPLiveSource(notify, httpService, url, headers);
274 notify, httpService, url, headers, mUIDValid, mUID);
282 notify, httpService, url, headers, mUIDValid, mUID, true);
291 status_t err = genericSource->setDataSource(httpService, url, headers);
257 setDataSourceAsync( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/ndk/
H A DNdkMediaExtractor.cpp117 sp<IMediaHTTPService> httpService; local
120 httpService = interface_cast<IMediaHTTPService>(binder);
123 status_t err = mData->mImpl->setDataSource(httpService, location, NULL);
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp145 sp<IMediaHTTPService> httpService; local
148 httpService = interface_cast<IMediaHTTPService>(binder);
154 httpService,
H A Dandroid_media_MediaExtractor.cpp82 const sp<IMediaHTTPService> &httpService,
85 return mImpl->setDataSource(httpService, path, headers);
724 sp<IMediaHTTPService> httpService; local
727 httpService = interface_cast<IMediaHTTPService>(binder);
730 status_t err = extractor->setDataSource(httpService, path, &headers);
81 setDataSource( const sp<IMediaHTTPService> &httpService, const char *path, const KeyedVector<String8, String8> *headers) argument

Completed in 244 milliseconds

12