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

  /external/webkit/JavaScriptCore/runtime/
TimeoutChecker.h 46 void setTimeoutInterval(unsigned timeoutInterval) { m_timeoutInterval = timeoutInterval; }
  /external/webkit/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/WebKit/win/
WebMutableURLRequest.h 72 /* [optional][in] */ double timeoutInterval);
95 /* [optional][in] */ double timeoutInterval);
100 virtual HRESULT STDMETHODCALLTYPE timeoutInterval(
147 /* [in] */ double timeoutInterval);
WebMutableURLRequest.cpp 145 /* [optional][in] */ double /*timeoutInterval*/)
197 /* [optional][in] */ double timeoutInterval)
201 m_request.setTimeoutInterval(timeoutInterval);
213 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::timeoutInterval(
216 *result = m_request.timeoutInterval();
323 /* [in] */ double /*timeoutInterval*/)
  /external/webkit/WebCore/platform/network/
ResourceRequestBase.cpp 74 data->m_timeoutInterval = timeoutInterval();
147 double ResourceRequestBase::timeoutInterval() const
154 void ResourceRequestBase::setTimeoutInterval(double timeoutInterval)
158 m_timeoutInterval = timeoutInterval;
329 if (a.timeoutInterval() != b.timeoutInterval())
ResourceRequestBase.h 84 double timeoutInterval() const;
85 void setTimeoutInterval(double timeoutInterval);
  /external/webkit/WebCore/platform/network/mac/
ResourceRequestMac.mm 59 m_timeoutInterval = [m_nsRequest.get() timeoutInterval];
112 if (timeoutInterval() != unspecifiedTimeoutInterval)
113 [nsRequest setTimeoutInterval:timeoutInterval()];
  /external/webkit/WebCore/platform/network/cf/
ResourceRequestCFNet.cpp 114 CFURLRequestSetTimeoutInterval(cfRequest, timeoutInterval());
116 cfRequest = CFURLRequestCreateMutable(0, url.get(), (CFURLRequestCachePolicy)cachePolicy(), timeoutInterval(), firstPartyForCookies.get());
ResourceHandleCFNet.cpp 611 RetainPtr<CFDataRef> data(AdoptCF, CFURLConnectionSendSynchronousRequest(cfRequest.get(), &cfResponse, &cfError, request.timeoutInterval()));
    [all...]

Completed in 471 milliseconds