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

/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.cpp107 const sp<IMediaHTTPService> &httpService,
130 status_t ret = p->setDataSource(httpService, url, headers);
106 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DMediaPlayerService.cpp780 const sp<IMediaHTTPService> &httpService,
817 setDataSource_post(p, p->setDataSource(httpService, url, headers));
779 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 =
227 if (httpService == NULL || srcUrl == NULL) {
242 httpService, srcUrl, numHeaders > 0 ? &headers : NULL));
91 setDataSource( const sp<IMediaHTTPService> &httpService, const char *srcUrl, const KeyedVector<String8, String8> *headers) argument
H A DIMediaPlayer.cpp109 const sp<IMediaHTTPService> &httpService,
115 data.writeInt32(httpService != NULL);
116 if (httpService != NULL) {
117 data.writeStrongBinder(IInterface::asBinder(httpService));
568 sp<IMediaHTTPService> httpService; local
570 httpService =
587 httpService, url, numHeaders > 0 ? &headers : NULL));
108 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/libstagefright/
H A DDataSource.cpp109 const sp<IMediaHTTPService> &httpService,
122 if (httpService == NULL) {
128 sp<IMediaHTTPConnection> conn = httpService->makeHTTPConnection();
179 sp<DataSource> DataSource::CreateMediaHTTP(const sp<IMediaHTTPService> &httpService) { argument
180 if (httpService == NULL) {
184 sp<IMediaHTTPConnection> conn = httpService->makeHTTPConnection();
108 CreateFromURI( const sp<IMediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers, String8 *contentType, HTTPBase *httpSource) argument
H A DNuMediaExtractor.cpp64 const sp<IMediaHTTPService> &httpService,
74 DataSource::CreateFromURI(httpService, path, headers);
63 setDataSource( const sp<IMediaHTTPService> &httpService, const char *path, const KeyedVector<String8, String8> *headers) argument
H A DStagefrightMetadataRetriever.cpp69 const sp<IMediaHTTPService> &httpService,
75 mSource = DataSource::CreateFromURI(httpService, uri, headers);
68 setDataSource( const sp<IMediaHTTPService> &httpService, const char *uri, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/libstagefright/httplive/
H A DHTTPDownloader.cpp39 const sp<IMediaHTTPService> &httpService,
41 mHTTPDataSource(new MediaHTTP(httpService->makeHTTPConnection())),
38 HTTPDownloader( const sp<IMediaHTTPService> &httpService, const KeyedVector<String8, String8> &headers) argument
H A DLiveSession.cpp273 const sp<IMediaHTTPService> &httpService)
276 mHTTPService(httpService),
271 LiveSession( const sp<AMessage> &notify, uint32_t flags, const sp<IMediaHTTPService> &httpService) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp44 const sp<IMediaHTTPService> &httpService,
48 mHTTPService(httpService),
42 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.cpp117 const sp<IMediaHTTPService> &httpService,
129 mPlayer->setDataSourceAsync(httpService, url, headers);
116 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DGenericSource.cpp107 const sp<IMediaHTTPService> &httpService,
114 mHTTPService = httpService;
106 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DNuPlayer.cpp250 const sp<IMediaHTTPService> &httpService,
261 source = new HTTPLiveSource(notify, httpService, url, headers);
266 notify, httpService, url, headers, mUIDValid, mUID);
274 notify, httpService, url, headers, mUIDValid, mUID, true);
283 status_t err = genericSource->setDataSource(httpService, url, headers);
249 setDataSourceAsync( const sp<IMediaHTTPService> &httpService, const char *url, 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.cpp78 const sp<IMediaHTTPService> &httpService,
81 return mImpl->setDataSource(httpService, path, headers);
661 sp<IMediaHTTPService> httpService; local
664 httpService = interface_cast<IMediaHTTPService>(binder);
667 status_t err = extractor->setDataSource(httpService, path, &headers);
77 setDataSource( const sp<IMediaHTTPService> &httpService, const char *path, const KeyedVector<String8, String8> *headers) argument
H A Dandroid_media_MediaPlayer.cpp253 sp<IMediaHTTPService> httpService; local
256 httpService = interface_cast<IMediaHTTPService>(binder);
261 httpService,

Completed in 253 milliseconds