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

12

/macosx-10.9.5/WebKit2-7537.78.2/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.h51 const char* httpMethod() const;
/macosx-10.9.5/WebCore-7537.78.1/loader/win/
H A DFrameLoaderWin.cpp58 frameWin->client()->submitForm(resourceRequest.httpMethod(), resourceRequest.url(), resourceRequest.httpBody());
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/
H A DWKURLRequest.cpp58 return toCopiedAPI(toImpl(requestRef)->resourceRequest().httpMethod());
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DResourceRequestBase.cpp87 data->m_httpMethod = httpMethod().isolatedCopy();
204 const String& ResourceRequestBase::httpMethod() const function in class:WebCore::ResourceRequestBase
211 void ResourceRequestBase::setHTTPMethod(const String& httpMethod) argument
215 if (m_httpMethod == httpMethod)
218 m_httpMethod = httpMethod;
432 if (a.httpMethod() != b.httpMethod())
H A DResourceRequestBase.h81 const String& httpMethod() const;
82 void setHTTPMethod(const String& httpMethod);
H A DResourceHandleInternal.h88 , m_lastHTTPMethod(request.httpMethod())
H A DBlobResourceHandle.cpp140 if (!equalIgnoringCase(request.httpMethod(), "GET"))
148 if (!equalIgnoringCase(request.httpMethod(), "GET")) {
/macosx-10.9.5/WebCore-7537.78.1/platform/network/qt/
H A DQNetworkReplyHandler.cpp412 String QNetworkReplyHandler::httpMethod() const function in class:WebCore::QNetworkReplyHandler
426 return m_resourceHandle->firstRequest().httpMethod();
442 if (r.httpMethod() == "GET")
444 else if (r.httpMethod() == "HEAD")
446 else if (r.httpMethod() == "POST")
448 else if (r.httpMethod() == "PUT")
450 else if (r.httpMethod() == "DELETE")
647 if ((statusCode >= 301 && statusCode <= 303) && m_resourceHandle->firstRequest().httpMethod() == "POST")
651 newRequest.setHTTPMethod(httpMethod());
760 QNetworkReply* result = manager->sendCustomRequest(m_request, m_resourceHandle->firstRequest().httpMethod()
[all...]
H A DQNetworkReplyHandler.h146 String httpMethod() const;
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DFrameLoaderClientEfl.cpp178 CString httpMethod = coreRequest.httpMethod().utf8(); local
179 DBG("Resource url=%s, first_party=%s, http_method=%s", url.data(), firstParty.data(), httpMethod.data());
189 Ewk_Frame_Resource_Request request = { 0, firstParty.data(), httpMethod.data(), identifier, m_frame, isMainFrameRequest };
233 CString httpMethod = coreRequest.httpMethod().utf8(); local
234 DBG("Resource url=%s, First party=%s, HTTP method=%s", url.data(), firstParty.data(), httpMethod.data());
242 Ewk_Frame_Resource_Request request = { url.data(), firstParty.data(), httpMethod.data(), identifier, m_frame, isMainFrameRequest };
342 CString httpMethod = resourceRequest.httpMethod() local
977 const CString& httpMethod = loader->request().httpMethod().utf8(); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/soup/
H A DResourceRequestSoup.cpp60 g_object_set(soupMessage, SOUP_MESSAGE_METHOD, httpMethod().utf8().data(), NULL);
78 SoupMessage* soupMessage = soup_message_new(httpMethod().utf8().data(), url().string().utf8().data());
H A DResourceHandleSoup.cpp474 if (newRequest.httpMethod() != "GET") {
972 if ((request.httpMethod() == "POST" || request.httpMethod() == "PUT")
1035 if (!isHTTPFamilyRequest && request.httpMethod() != "GET" && request.httpMethod() != "POST") {
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebMutableURLRequest.cpp182 BString httpMethod = BString(m_request.httpMethod()); local
183 *result = httpMethod.release();
H A DWebHistory.h114 void visitedURL(const WebCore::KURL&, const WTF::String& title, const WTF::String& httpMethod, bool wasFailure, bool increaseVisitCount);
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DDocumentThreadableLoader.cpp106 if ((m_options.preflightPolicy == ConsiderPreflight && isSimpleCrossOriginAccessRequest(crossOriginRequest->httpMethod(), crossOriginRequest->httpHeaderFields())) || m_options.preflightPolicy == PreventPreflight)
112 if (CrossOriginPreflightResultCache::shared().canSkipPreflight(securityOrigin()->toString(), m_actualRequest->url(), m_options.allowCredentials, m_actualRequest->httpMethod(), m_actualRequest->httpHeaderFields()))
122 ASSERT(m_options.preflightPolicy == PreventPreflight || isSimpleCrossOriginAccessRequest(request.httpMethod(), request.httpHeaderFields()));
262 || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod(), accessControlErrorDescription)
H A DCrossOriginAccessControl.cpp112 preflightRequest.setHTTPHeaderField("Access-Control-Request-Method", request.httpMethod());
H A DFrameLoader.cpp1181 if (request.resourceRequest().httpMethod() == "POST")
1246 const String& httpMethod = request.httpMethod(); local
1251 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, newLoadType, newURL)) {
1388 const String& httpMethod = loader->request().httpMethod(); local
1390 if (shouldPerformFragmentNavigation(isFormSubmission, httpMethod, policyChecker()->loadType(), newURL)) {
1545 if (request.httpMethod() == "POST")
2094 if (request.cachePolicy() == ReloadIgnoringCacheData && !equalIgnoringCase(request.httpMethod(), "post") && ResourceRequest::useQuickLookResourceCachingQuirks())
2528 if (request.httpMethod()
2684 shouldPerformFragmentNavigation(bool isFormSubmission, const String& httpMethod, FrameLoadType loadType, const KURL& url) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/cache/
H A DCachedRawResource.cpp222 if (m_resourceRequest.httpMethod() != newRequest.httpMethod())
/macosx-10.9.5/WebCore-7537.78.1/platform/network/win/
H A DResourceHandleWin.cpp304 String httpMethod = firstRequest().httpMethod(); local
309 d->m_requestHandle = HttpOpenRequestW(d->m_connectHandle, httpMethod.charactersWithNullTermination(), urlStr.charactersWithNullTermination(),
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DResourceRequestMac.mm164 if (!httpMethod().isEmpty())
165 [nsRequest setHTTPMethod:httpMethod()];
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DTimelineRecordFactory.cpp151 data->setString("requestMethod", request.httpMethod());
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DApplicationCache.cpp129 if (!equalIgnoringCase(request.httpMethod(), "GET"))
/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/
H A DResourceRequestBlackBerry.cpp151 httpMethod(),
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebCoreArgumentCoders.cpp379 encoder << resourceRequest.httpMethod();
410 String httpMethod; local
411 if (!decoder.decode(httpMethod))
413 request.setHTTPMethod(httpMethod);

Completed in 234 milliseconds

12