HomeSort by relevance Sort by last modified time
    Searched refs:timeoutInterval (Results 1 - 16 of 16) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
TimeoutChecker.h 42 void setTimeoutInterval(unsigned timeoutInterval) { m_timeoutInterval = timeoutInterval; }
43 unsigned timeoutInterval() const { return m_timeoutInterval; }
  /external/webkit/Source/WebKit2/Shared/
WebURLRequest.cpp 35 void WebURLRequest::setDefaultTimeoutInterval(double timeoutInterval)
37 ResourceRequest::setDefaultTimeoutInterval(timeoutInterval);
41 contexts[i]->setDefaultRequestTimeoutInterval(timeoutInterval);
  /external/webkit/Source/WebKit2/Shared/API/c/
WKURLRequest.cpp 51 void WKURLRequestSetDefaultTimeoutInterval(double timeoutInterval)
53 WebURLRequest::setDefaultTimeoutInterval(timeoutInterval);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLRequest.idl 50 + (id)requestWithURL:(NSURL *)theURL cachePolicy:(NSURLRequestCachePolicy)cachePolicy timeoutInterval:(NSTimeInterval)timeoutInterval
52 HRESULT requestWithURL([in] BSTR theURL, [in] WebURLRequestCachePolicy cachePolicy, [in] double timeoutInterval);
86 - (id)initWithURL:(NSURL *)theURL cachePolicy:(NSURLRequestCachePolicy)cachePolicy timeoutInterval:(NSTimeInterval)timeoutInterval
88 HRESULT initWithURL([in] BSTR url, [in] WebURLRequestCachePolicy cachePolicy, [in] double timeoutInterval);
96 -(NSTimeInterval)timeoutInterval
98 HRESULT timeoutInterval([out, retval] double* result);
IWebMutableURLRequest.idl 84 - (void)setTimeoutInterval:(NSTimeInterval)timeoutInterval
86 HRESULT setTimeoutInterval([in] double timeoutInterval);
  /external/webkit/Source/WebKit/win/
WebMutableURLRequest.h 70 /* [optional][in] */ double timeoutInterval);
93 /* [optional][in] */ double timeoutInterval);
98 virtual HRESULT STDMETHODCALLTYPE timeoutInterval(
145 /* [in] */ double timeoutInterval);
WebMutableURLRequest.cpp 146 /* [optional][in] */ double /*timeoutInterval*/)
198 /* [optional][in] */ double timeoutInterval)
202 m_request.setTimeoutInterval(timeoutInterval);
214 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::timeoutInterval(
217 *result = m_request.timeoutInterval();
324 /* [in] */ double timeoutInterval)
326 m_request.setTimeoutInterval(timeoutInterval);
  /external/webkit/Source/WebCore/platform/network/
ResourceRequestBase.cpp 85 data->m_timeoutInterval = timeoutInterval();
160 double ResourceRequestBase::timeoutInterval() const
167 void ResourceRequestBase::setTimeoutInterval(double timeoutInterval)
171 m_timeoutInterval = timeoutInterval;
369 if (a.timeoutInterval() != b.timeoutInterval())
423 void ResourceRequestBase::setDefaultTimeoutInterval(double timeoutInterval)
425 s_defaultTimeoutInterval = timeoutInterval;
ResourceRequestBase.h 87 double timeoutInterval() const; // May return 0 when using platform default.
88 void setTimeoutInterval(double timeoutInterval);
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceRequestMac.mm 65 m_timeoutInterval = [m_nsRequest.get() timeoutInterval];
129 double timeoutInterval = ResourceRequestBase::timeoutInterval();
130 if (timeoutInterval)
131 [nsRequest setTimeoutInterval:timeoutInterval];
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceRequestCFNet.cpp 125 CFURLRequestSetTimeoutInterval(cfRequest, timeoutInterval());
127 cfRequest = CFURLRequestCreateMutable(0, url.get(), (CFURLRequestCachePolicy)cachePolicy(), timeoutInterval(), firstPartyForCookies.get());
ResourceHandleCFNet.cpp 718 RetainPtr<CFDataRef> data(AdoptCF, CFURLConnectionSendSynchronousRequest(cfRequest.get(), &cfResponse, &cfError, request.timeoutInterval()));
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebContext.cpp 497 void WebContext::setDefaultRequestTimeoutInterval(double timeoutInterval)
499 sendToAllProcesses(Messages::WebProcess::SetDefaultRequestTimeoutInterval(timeoutInterval));
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.cpp 254 void WebProcess::setDefaultRequestTimeoutInterval(double timeoutInterval)
256 ResourceRequest::setDefaultTimeoutInterval(timeoutInterval);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp 994 double delay = JSDOMWindowBase::commonJSGlobalData()->timeoutChecker.timeoutInterval() / 1000.0f;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 

Completed in 859 milliseconds