HomeSort by relevance Sort by last modified time
    Searched refs:dataSource (Results 51 - 75 of 94) sorted by null

1 23 4

  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 164 static inline WebDataSource *dataSource(DocumentLoader* loader)
166 return loader ? static_cast<WebDocumentLoaderMac*>(loader)->dataSource() : nil;
230 [dataSource(loader) _makeRepresentation];
353 CallResourceLoadDelegate(implementations->didLoadResourceFromMemoryCacheFunc, webView, @selector(webView:didLoadResourceFromMemoryCache:response:length:fromDataSource:), request.nsURLRequest(), response.nsURLResponse(), length, dataSource(loader));
365 object = CallResourceLoadDelegate(implementations->identifierForRequestFunc, webView, @selector(webView:identifierForInitialRequest:fromDataSource:), request.nsURLRequest(), dataSource(loader));
388 request = (NSURLRequest *)CallResourceLoadDelegate(implementations->willSendRequestFunc, webView, @selector(webView:resource:willSendRequest:redirectResponse:fromDataSource:), [webView _objectForIdentifier:identifier], request.nsURLRequest(), redirectResponse.nsURLResponse(), dataSource(loader));
398 return CallResourceLoadDelegateReturningBoolean(NO, implementations->shouldUseCredentialStorageFunc, webView, @selector(webView:resource:shouldUseCredentialStorageForDataSource:), resource, dataSource(loader));
413 CallResourceLoadDelegate(implementations->didReceiveAuthenticationChallengeFunc, webView, @selector(webView:resource:didReceiveAuthenticationChallenge:fromDataSource:), resource, webChallenge, dataSource(loader));
432 return CallResourceLoadDelegateReturningBoolean(NO, implementations->canAuthenticateAgainstProtectionSpaceFunc, webView, @selector(webView:resource:canAuthenticateAgainstProtectionSpace:forDataSource:), resource, webProtectionSpace, dataSource(loader));
463 CallResourceLoadDelegate(implementations->didCancelAuthenticationChallengeFunc, webView, @selector(webView:resource:didCancelAuthenticationChallenge:fromDataSource:), resource, webChallenge, dataSource(loader))
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
ImageDiffCairo.cpp 64 CFMutableDataRef dataSource = reinterpret_cast<CFMutableDataRef>(closure);
67 CFDataGetBytes(dataSource, range, data);
68 CFDataDeleteBytes(dataSource, range);
DumpRenderTree.cpp 148 COMPtr<IWebDataSource> dataSource;
149 if (FAILED(frame->dataSource(&dataSource))) {
150 if (FAILED(frame->provisionalDataSource(&dataSource)))
155 if (FAILED(dataSource->request(&request)))
709 COMPtr<IWebDataSource> dataSource;
710 if (SUCCEEDED(frame->dataSource(&dataSource))) {
712 if (SUCCEEDED(dataSource->response(&response)) && response) {
    [all...]
LayoutTestControllerWin.cpp 306 COMPtr<IWebDataSource> dataSource;
307 if (FAILED(frame->dataSource(&dataSource)))
311 if (FAILED(dataSource->response(&response)) || !response)
    [all...]
  /frameworks/av/media/libstagefright/
AwesomePlayer.cpp 42 #include <media/stagefright/DataSource.h>
199 DataSource::RegisterDefaultSniffers();
308 sp<DataSource> dataSource = new FileSource(fd, offset, length);
310 status_t err = dataSource->initCheck();
316 mFileSource = dataSource;
324 return setDataSource_l(dataSource);
332 const sp<DataSource> &dataSource) {
333 sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
    [all...]
WAVExtractor.cpp 24 #include <media/stagefright/DataSource.h>
57 const sp<DataSource> &dataSource,
76 sp<DataSource> mDataSource;
92 WAVExtractor::WAVExtractor(const sp<DataSource> &source)
318 const sp<DataSource> &dataSource,
323 : mDataSource(dataSource),
489 const sp<DataSource> &source, String8 *mimeType, float *confidence,
  /frameworks/av/cmds/stagefright/
stream.cpp 27 #include <media/stagefright/DataSource.h>
158 sp<DataSource> dataSource = DataSource::CreateFromURI(filename);
159 CHECK(dataSource != NULL);
161 sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
297 DataSource::RegisterDefaultSniffers();
stagefright.cpp 37 #include <media/stagefright/DataSource.h>
953 DataSource::RegisterDefaultSniffers();
963 sp<DataSource> dataSource = DataSource::CreateFromURI(filename);
967 && dataSource == NULL) {
983 mediaSource = new JPEGSource(dataSource);
1013 dataSource = liveSession->getDataSource();
1017 dataSource, MEDIA_MIMETYPE_CONTAINER_MPEG2TS);
1021 extractor = MediaExtractor::Create(dataSource);
    [all...]
sf2.cpp 30 #include <media/stagefright/DataSource.h>
77 sp<DataSource> dataSource =
78 DataSource::CreateFromURI(mURI.c_str());
81 MediaExtractor::Create(dataSource);
600 DataSource::RegisterDefaultSniffers();
  /external/webkit/Source/WebKit/mac/Plugins/
WebBaseNetscapePluginView.h 110 - (WebDataSource *)dataSource;
WebPluginController.mm 132 - (void)setDataSource:(WebDataSource *)dataSource
134 _dataSource = dataSource;
WebNetscapePluginView.mm     [all...]
  /frameworks/av/media/libaah_rtp/
aah_tx_player.cpp 94 DataSource::RegisterDefaultSniffers();
188 sp<DataSource> dataSource = new FileSource(dup(fd), offset, length);
190 status_t err = dataSource->initCheck();
196 mFileSource = dataSource;
198 sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
251 sp<DataSource> dataSource;
275 dataSource = mCachedSource;
279 // could block on the datasource for a significant amount of time
    [all...]
  /frameworks/av/media/libstagefright/include/
AVIExtractor.h 29 AVIExtractor(const sp<DataSource> &dataSource);
80 sp<DataSource> mDataSource;
121 const sp<DataSource> &source, String8 *mimeType, float *confidence,
AwesomePlayer.h 25 #include <media/stagefright/DataSource.h>
34 struct DataSource;
164 sp<DataSource> mFileSource;
245 status_t setDataSource_l(const sp<DataSource> &dataSource);
294 void checkDrmStatus(const sp<DataSource>& dataSource);
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebdatasource.cpp 110 WebKitWebDataSource* dataSource = WEBKIT_WEB_DATA_SOURCE(object);
111 WebKitWebDataSourcePrivate* priv = dataSource->priv;
153 WebKitWebDataSource* datasource = webkit_web_data_source_new_with_request(request); local
156 return datasource;
178 WebKitWebDataSource* datasource = kitNew(WebKit::DocumentLoader::create(resourceRequest, SubstituteData())); local
180 WebKitWebDataSourcePrivate* priv = datasource->priv;
183 return datasource;
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFrame.idl 156 @method dataSource
159 @result The datasource for this frame.
160 - (WebDataSource *)dataSource;
162 HRESULT dataSource([out, retval] IWebDataSource** source);
169 @result The provisional datasource of this frame.
  /frameworks/av/media/libstagefright/timedtext/
TimedTextSRTSource.cpp 24 #include <media/stagefright/DataSource.h>
35 TimedTextSRTSource::TimedTextSRTSource(const sp<DataSource>& dataSource)
36 : mSource(dataSource),
  /frameworks/base/media/tests/omxjpegdecoder/
omx_jpeg_decoder.cpp 125 DataSource::RegisterDefaultSniffers();
126 sp<DataSource> dataSource = new StreamSource(stream);
127 return new JPEGSource(dataSource);
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.cpp 994 frame->dataSource()->setExtraData(m_pendingExtraData.leakPtr());
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 129 // dataSource()->request().url().
334 virtual WebDataSource* dataSource() const = 0;
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 134 virtual WebDataSource* dataSource() const;
237 // Getters for the impls corresponding to Get(Provisional)DataSource. They
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameView.mm 156 -(NSView <WebDocumentView> *)_makeDocumentViewForDataSource:(WebDataSource *)dataSource
158 NSString* MIMEType = [dataSource _responseMIMEType];
164 // If the dataSource's representation has already been created, and it is also the
167 id <WebDocumentRepresentation> dataSourceRepresentation = [dataSource representation];
    [all...]
WebViewPrivate.h 453 - (void)handleAuthenticationForResource:(id)identifier challenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
728 - (NSCachedURLResponse *)webView:(WebView *)sender resource:(id)identifier willCacheResponse:(NSCachedURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
  /external/webkit/Source/WebKit/win/
WebView.cpp     [all...]

Completed in 611 milliseconds

1 23 4