HomeSort by relevance Sort by last modified time
    Searched refs:stream_url (Results 1 - 25 of 28) sorted by null

1 2

  /cts/tests/tests/media/src/android/media/cts/
StreamingMediaPlayerTest.java 156 String stream_url = null; local
160 stream_url = mServer.getRedirectingAssetUrl(name, 4);
162 stream_url = mServer.getAssetUrl(name);
165 stream_url = stream_url + "?" + CtsTestServer.NOLENGTH_POSTFIX;
168 mMediaPlayer.setDataSource(stream_url);
210 String stream_url = null; local
214 stream_url = mServer.getRedirectingAssetUrl(name, 4);
216 stream_url = mServer.getAssetUrl(name);
219 stream_url = stream_url + "?" + CtsTestServer.NOLENGTH_POSTFIX
357 String stream_url = null; local
    [all...]
MediaPlayerFlakyNetworkTest.java 228 String stream_url = mServer.getAssetUrl(name); local
229 mMediaPlayer.setDataSource(stream_url);
  /external/chromium_org/ppapi/cpp/private/
video_destination_private.h 51 /// @param[in] stream_url A <code>Var</code> string holding a URL identifying
62 int32_t Open(const Var& stream_url, const CompletionCallback& cc);
video_source_private.h 51 /// @param[in] stream_url A <code>Var</code> string holding a URL identifying
61 int32_t Open(const Var& stream_url,
video_destination_private.cc 47 int32_t VideoDestination_Private::Open(const Var& stream_url,
53 stream_url.pp_var(),
video_source_private.cc 43 int32_t VideoSource_Private::Open(const Var& stream_url,
49 stream_url.pp_var(), cc.pp_completion_callback());
  /external/chromium_org/ppapi/thunk/
ppb_video_destination_private_api.h 23 virtual int32_t Open(const PP_Var& stream_url,
ppb_video_source_private_api.h 23 virtual int32_t Open(const PP_Var& stream_url,
ppb_video_destination_private_thunk.cc 34 PP_Var stream_url,
40 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
ppb_video_source_private_thunk.cc 33 PP_Var stream_url,
38 return enter.SetResult(enter.object()->Open(stream_url, enter.callback()));
  /external/chromium_org/ppapi/api/private/
ppb_video_destination_private.idl 49 * @param[in] stream_url A <code>PP_Var</code> string holding a URL
62 [in] PP_Var stream_url,
ppb_video_source_private.idl 48 * @param[in] stream_url A <code>PP_Var</code> string holding a URL
60 [in] PP_Var stream_url,
  /external/chromium_org/ppapi/c/private/
ppb_video_destination_private.h 71 * @param[in] stream_url A <code>PP_Var</code> string holding a URL
84 struct PP_Var stream_url,
ppb_video_source_private.h 68 * @param[in] stream_url A <code>PP_Var</code> string holding a URL
80 struct PP_Var stream_url,
  /external/chromium_org/ppapi/proxy/
video_destination_resource.h 38 const PP_Var& stream_url,
video_source_resource.h 40 const PP_Var& stream_url,
video_destination_resource.cc 41 const PP_Var& stream_url,
48 scoped_refptr<StringVar> stream_url_var = StringVar::FromPPVar(stream_url);
video_source_resource.cc 41 const PP_Var& stream_url,
48 scoped_refptr<StringVar> stream_url_var = StringVar::FromPPVar(stream_url);
  /external/chromium_org/content/renderer/media/
mock_media_stream_registry.cc 25 void MockMediaStreamRegistry::Init(const std::string& stream_url) {
26 stream_url_ = stream_url;
  /external/chromium_org/content/renderer/pepper/
pepper_video_destination_host.h 35 const std::string& stream_url);
pepper_video_destination_host.cc 48 const std::string& stream_url) {
49 GURL gurl(stream_url);
pepper_video_source_host.h 61 const std::string& stream_url);
pepper_video_source_host.cc 84 const std::string& stream_url) {
85 GURL gurl(stream_url);
  /external/chromium_org/chrome/browser/extensions/api/streams_private/
streams_private_api.cc 70 info.stream_url = stream->GetURL().spec();
97 const GURL& stream_url,
106 StreamMap::mapped_type::iterator url_it = url_map->find(stream_url);
streams_private_api.h 45 const GURL& stream_url,

Completed in 1580 milliseconds

1 2