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

12

/external/webkit/Source/WebCore/loader/win/
H A DFrameLoaderWin.cpp58 frameWin->client()->submitForm(resourceRequest.httpMethod(), resourceRequest.url(), resourceRequest.httpBody());
/external/oauth/core/src/main/java/net/oauth/client/
H A DURLConnectionClient.java47 final String httpMethod = request.method;
54 http.setRequestMethod(httpMethod);
57 StringBuilder headers = new StringBuilder(httpMethod);
H A DOAuthClient.java109 * @param httpMethod
115 public void getRequestToken(OAuthAccessor accessor, String httpMethod) argument
117 getRequestToken(accessor, httpMethod, null);
128 * @param httpMethod
137 public void getRequestToken(OAuthAccessor accessor, String httpMethod, argument
157 OAuthMessage response = invoke(accessor, httpMethod,
174 * @param httpMethod
183 public OAuthMessage getAccessToken(OAuthAccessor accessor, String httpMethod, argument
194 OAuthMessage response = invoke(accessor, httpMethod,
206 * @param httpMethod
214 invoke(OAuthAccessor accessor, String httpMethod, String url, Collection<? extends Map.Entry> parameters) argument
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DHistoryDelegate.cpp109 wstring httpMethod;
111 httpMethod = wstringFromBSTR(httpMethodBSTR);
144 httpMethod.c_str(),
H A DResourceLoadDelegate.cpp95 wstring httpMethod = wstringFromBSTR(httpMethodBSTR);
98 return L"<NSURLRequest URL " + url + L", main document URL " + mainDocumentURL + L", http method " + httpMethod + L">";
/external/webkit/Source/WebCore/platform/network/
H A DResourceRequestBase.cpp87 data->m_httpMethod = httpMethod().crossThreadString();
193 const String& ResourceRequestBase::httpMethod() const function in class:WebCore::ResourceRequestBase
200 void ResourceRequestBase::setHTTPMethod(const String& httpMethod) argument
204 m_httpMethod = httpMethod;
375 if (a.httpMethod() != b.httpMethod())
H A DResourceRequestBase.h93 const String& httpMethod() const;
94 void setHTTPMethod(const String& httpMethod);
H A DBlobRegistryImpl.cpp60 if (!equalIgnoringCase(request.httpMethod(), "GET"))
H A DResourceHandleInternal.h90 , m_lastHTTPMethod(request.httpMethod())
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceRequestSoup.cpp39 g_object_set(soupMessage, SOUP_MESSAGE_METHOD, httpMethod().utf8().data(), NULL);
60 SoupMessage* soupMessage = soup_message_new(httpMethod().utf8().data(), url().string().utf8().data());
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebResourceRequest.cpp111 m_method = resourceRequest.httpMethod().utf8().data();
/external/webkit/Source/WebKit/chromium/src/
H A DWebURLRequest.cpp139 WebString WebURLRequest::httpMethod() const function in class:WebKit::WebURLRequest
141 return m_private->m_resourceRequest->httpMethod();
144 void WebURLRequest::setHTTPMethod(const WebString& httpMethod) argument
146 m_private->m_resourceRequest->setHTTPMethod(httpMethod);
/external/webkit/Source/WebCore/platform/network/qt/
H A DQNetworkReplyHandler.cpp331 String QNetworkReplyHandler::httpMethod() const function in class:WebCore::QNetworkReplyHandler
345 return m_resourceHandle->firstRequest().httpMethod();
362 if (r.httpMethod() == "GET")
364 else if (r.httpMethod() == "HEAD")
366 else if (r.httpMethod() == "POST")
368 else if (r.httpMethod() == "PUT")
370 else if (r.httpMethod() == "DELETE")
530 if ((statusCode >= 301 && statusCode <= 303) && m_resourceHandle->firstRequest().httpMethod() == "POST")
534 newRequest.setHTTPMethod(httpMethod());
625 return manager->sendCustomRequest(m_request, m_resourceHandle->firstRequest().httpMethod()
[all...]
H A DQNetworkReplyHandler.h134 String httpMethod() const;
/external/webkit/Tools/DumpRenderTree/mac/
H A DResourceLoadDelegate.mm107 NSString *httpMethod = [self HTTPMethod];
108 if (!httpMethod)
109 httpMethod = @"(none)";
110 return [NSString stringWithFormat:@"<NSURLRequest URL %@, main document URL %@, http method %@>", [[self URL] _drt_descriptionSuitableForTestResult], [[self mainDocumentURL] _drt_descriptionSuitableForTestResult], httpMethod];
/external/webkit/Source/WebCore/loader/
H A DDocumentThreadableLoader.cpp95 if (!m_options.forcePreflight && isSimpleCrossOriginAccessRequest(crossOriginRequest->httpMethod(), crossOriginRequest->httpHeaderFields()))
100 if (CrossOriginPreflightResultCache::shared().canSkipPreflight(document->securityOrigin()->toString(), m_actualRequest->url(), m_options.allowCredentials, m_actualRequest->httpMethod(), m_actualRequest->httpHeaderFields()))
109 ASSERT(isSimpleCrossOriginAccessRequest(request.httpMethod(), request.httpHeaderFields()));
131 preflightRequest.setHTTPHeaderField("Access-Control-Request-Method", request.httpMethod());
216 || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod(), accessControlErrorDescription)
H A DMainResourceLoader.cpp149 if (newRequest.httpMethod() == "POST")
154 && frameLoader()->initialRequest().httpMethod() == "POST")
/external/webkit/Source/WebKit/win/
H A DWebMutableURLRequest.cpp183 BString httpMethod = BString(m_request.httpMethod()); local
184 *result = httpMethod.release();
H A DWebHistory.h123 void visitedURL(const WebCore::KURL&, const WTF::String& title, const WTF::String& httpMethod, bool wasFailure, bool increaseVisitCount);
/external/webkit/Source/WebCore/platform/network/mac/
H A DResourceRequestMac.mm135 if (!httpMethod().isEmpty())
136 [nsRequest setHTTPMethod:httpMethod()];
/external/webkit/Source/WebKit/chromium/public/
H A DWebURLRequest.h115 WEBKIT_API WebString httpMethod() const;
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceHandleWin.cpp302 String httpMethod = firstRequest().httpMethod(); local
307 d->m_requestHandle = HttpOpenRequestW(d->m_connectHandle, httpMethod.charactersWithNullTermination(), urlStr.charactersWithNullTermination(),
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCache.cpp125 if (!equalIgnoringCase(request.httpMethod(), "GET"))
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleManager.cpp716 if ("GET" == job->firstRequest().httpMethod())
718 else if ("POST" == job->firstRequest().httpMethod())
720 else if ("PUT" == job->firstRequest().httpMethod())
722 else if ("HEAD" == job->firstRequest().httpMethod())
/external/webkit/Source/WebCore/inspector/
H A DTimelineRecordFactory.cpp137 data->setString("requestMethod", request.httpMethod());

Completed in 1236 milliseconds

12