Searched refs:httpMethod (Results 1 - 25 of 35) sorted by relevance

12

/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_url_request.cpp49 const char* EwkUrlRequest::httpMethod() const function in class:EwkUrlRequest
72 return impl->httpMethod();
H A Dewk_url_request_private.h50 const char* httpMethod() const;
/macosx-10.10/WebCore-7600.1.25/loader/win/
H A DFrameLoaderWin.cpp58 frameWin->client()->submitForm(resourceRequest.httpMethod(), resourceRequest.url(), resourceRequest.httpBody());
/macosx-10.10/WebKit2-7600.1.25/Shared/API/c/
H A DWKURLRequest.cpp58 return toCopiedAPI(toImpl(requestRef)->resourceRequest().httpMethod());
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DResourceRequestBase.cpp91 data->m_httpMethod = httpMethod().isolatedCopy();
208 const String& ResourceRequestBase::httpMethod() const function in class:WebCore::ResourceRequestBase
215 void ResourceRequestBase::setHTTPMethod(const String& httpMethod) argument
219 if (m_httpMethod == httpMethod)
222 m_httpMethod = httpMethod;
490 if (a.httpMethod() != b.httpMethod())
H A DResourceRequestBase.h79 const String& httpMethod() const;
80 void setHTTPMethod(const String& httpMethod);
H A DResourceHandleInternal.h81 , m_lastHTTPMethod(request.httpMethod())
H A DBlobResourceHandle.cpp140 if (!equalIgnoringCase(request.httpMethod(), "GET"))
148 if (!equalIgnoringCase(request.httpMethod(), "GET")) {
/macosx-10.10/WebCore-7600.1.25/platform/network/soup/
H A DResourceRequestSoup.cpp73 g_object_set(soupMessage, SOUP_MESSAGE_METHOD, httpMethod().utf8().data(), NULL);
83 SoupMessage* soupMessage = soup_message_new(httpMethod().utf8().data(), url().string().utf8().data());
H A DResourceHandleSoup.cpp464 if (newRequest.httpMethod() != "GET") {
926 if ((request.httpMethod() == "POST" || request.httpMethod() == "PUT")
988 if (!isHTTPFamilyRequest && request.httpMethod() != "GET" && request.httpMethod() != "POST") {
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebMutableURLRequest.cpp182 BString httpMethod = BString(m_request.httpMethod()); local
183 *result = httpMethod.release();
H A DWebHistory.h112 void visitedURL(const WebCore::URL&, const WTF::String& title, const WTF::String& httpMethod, bool wasFailure, bool increaseVisitCount);
/macosx-10.10/WebCore-7600.1.25/loader/
H A DCrossOriginAccessControl.cpp111 preflightRequest.setHTTPHeaderField(HTTPHeaderName::AccessControlRequestMethod, request.httpMethod());
H A DDocumentThreadableLoader.cpp104 if ((m_options.preflightPolicy == ConsiderPreflight && isSimpleCrossOriginAccessRequest(crossOriginRequest->httpMethod(), crossOriginRequest->httpHeaderFields())) || m_options.preflightPolicy == PreventPreflight)
110 if (CrossOriginPreflightResultCache::shared().canSkipPreflight(securityOrigin()->toString(), m_actualRequest->url(), m_options.allowCredentials(), m_actualRequest->httpMethod(), m_actualRequest->httpHeaderFields()))
120 ASSERT(m_options.preflightPolicy == PreventPreflight || isSimpleCrossOriginAccessRequest(request.httpMethod(), request.httpHeaderFields()));
258 || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod(), accessControlErrorDescription)
H A DFrameLoader.cpp1234 if (request.resourceRequest().httpMethod() == "POST")
1300 const String& httpMethod = request.httpMethod(); local
1305 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, newLoadType, newURL)) {
1447 const String& httpMethod = loader->request().httpMethod(); local
1449 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, policyChecker().loadType(), newURL)) {
1595 if (request.httpMethod() == "POST")
2175 if (request.cachePolicy() == ReloadIgnoringCacheData && !equalIgnoringCase(request.httpMethod(), "post") && ResourceRequest::useQuickLookResourceCachingQuirks())
2603 if (request.httpMethod()
2756 shouldPerformFragmentNavigation(bool isFormSubmission, const String& httpMethod, FrameLoadType loadType, const URL& url) argument
[all...]
H A DFrameLoader.h327 bool shouldPerformFragmentNavigation(bool isFormSubmission, const String& httpMethod, FrameLoadType, const URL&);
/macosx-10.10/WebCore-7600.1.25/platform/network/cocoa/
H A DResourceRequestCocoa.mm152 if (!httpMethod().isEmpty())
153 [nsRequest setHTTPMethod:httpMethod()];
/macosx-10.10/WebCore-7600.1.25/loader/cache/
H A DCachedRawResource.cpp229 if (m_resourceRequest.httpMethod() != newRequest.httpMethod())
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceRequestCFNet.cpp154 CFURLRequestSetHTTPRequestMethod(cfRequest, httpMethod().createCFString().get());
258 String httpMethod = m_httpMethod; local
260 m_httpMethod = httpMethod;
H A DResourceHandleCFURLConnectionDelegate.cpp155 if (!equalIgnoringCase(m_handle->firstRequest().httpMethod(), "GET") && body && !body->isEmpty())
/macosx-10.10/WebCore-7600.1.25/platform/network/win/
H A DResourceHandleWin.cpp304 String httpMethod = firstRequest().httpMethod(); local
309 d->m_requestHandle = HttpOpenRequestW(d->m_connectHandle, httpMethod.charactersWithNullTermination().data(), urlStr.charactersWithNullTermination().data(),
/macosx-10.10/WebCore-7600.1.25/loader/appcache/
H A DApplicationCache.cpp129 if (!equalIgnoringCase(request.httpMethod(), "GET"))
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DTimelineRecordFactory.cpp173 data->setString("requestMethod", request.httpMethod());
/macosx-10.10/WebCore-7600.1.25/history/
H A DHistoryItem.cpp522 if (equalIgnoringCase(request.httpMethod(), "POST")) {
/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DResourceHandleMac.mm450 if (!equalIgnoringCase(lastHTTPMethod, request.httpMethod())) {
470 d->m_lastHTTPMethod = request.httpMethod();

Completed in 245 milliseconds

12