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

12

/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/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceRequest.cpp70 data->m_httpMethod = httpMethod().string().isolatedCopy();
150 const AtomicString& ResourceRequest::httpMethod() const function in class:blink::ResourceRequest
155 void ResourceRequest::setHTTPMethod(const AtomicString& httpMethod) argument
157 m_httpMethod = httpMethod;
212 if (httpMethod() == "GET" || httpMethod() == "HEAD")
296 if (a.httpMethod() != b.httpMethod())
H A DResourceRequestTest.cpp47 EXPECT_STREQ("GET", original.httpMethod().utf8().data());
72 EXPECT_STREQ("GET", copy1->httpMethod().utf8().data());
H A DResourceRequest.h103 const AtomicString& httpMethod() const;
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DRawResource.cpp158 if (!isCacheableHTTPMethod(m_resourceRequest.httpMethod()))
160 if (m_resourceRequest.httpMethod() != newRequest.httpMethod())
H A DCrossOriginAccessControl.cpp78 preflightRequest.setHTTPHeaderField("Access-Control-Request-Method", request.httpMethod());
H A DResourceFetcher.cpp789 if (request.httpMethod() == "POST" && frameLoadType == FrameLoadTypeBackForward)
795 if (frameLoadType == FrameLoadTypeReload || frameLoadType == FrameLoadTypeSame || request.isConditional() || request.httpMethod() == "POST")
810 if (m_documentLoader->request().httpMethod() == "POST") {
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebURLRequest.cpp149 WebString WebURLRequest::httpMethod() const function in class:blink::WebURLRequest
151 return m_private->m_resourceRequest->httpMethod();
154 void WebURLRequest::setHTTPMethod(const WebString& httpMethod) argument
156 m_private->m_resourceRequest->setHTTPMethod(httpMethod);
/external/chromium_org/mojo/services/html_viewer/
H A Dblink_url_request_type_converters.cc98 url_request->method = request.httpMethod().utf8();
/external/chromium_org/content/renderer/fetchers/
H A Dresource_fetcher_impl.cc90 DCHECK_NE("GET", request_.httpMethod().utf8()) << "GETs can't have bodies.";
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DHistoryItem.cpp185 if (equalIgnoringCase(request.httpMethod(), "POST")) {
H A DFrameLoader.h202 bool shouldPerformFragmentNavigation(bool isFormSubmission, const String& httpMethod, FrameLoadType, const KURL&);
H A DDocumentThreadableLoader.cpp128 if ((m_options.preflightPolicy == ConsiderPreflight && FetchUtils::isSimpleOrForbiddenRequest(request.httpMethod(), request.httpHeaderFields())) || m_options.preflightPolicy == PreventPreflight) {
144 bool canSkipPreflight = CrossOriginPreflightResultCache::shared().canSkipPreflight(securityOrigin()->toString(), m_actualRequest->url(), effectiveAllowCredentials(), m_actualRequest->httpMethod(), m_actualRequest->httpHeaderFields());
336 || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod(), accessControlErrorDescription)
H A DFrameLoader.cpp758 if (!action.shouldOpenInNewWindow() && shouldPerformFragmentNavigation(request.formState(), request.resourceRequest().httpMethod(), newLoadType, url)) {
770 if (sameURL && newLoadType != FrameLoadTypeReload && newLoadType != FrameLoadTypeReloadFromOrigin && request.resourceRequest().httpMethod() != "POST")
1187 bool FrameLoader::shouldPerformFragmentNavigation(bool isFormSubmission, const String& httpMethod, FrameLoadType loadType, const KURL& url) argument
1192 return (!isFormSubmission || equalIgnoringCase(httpMethod, "GET"))
/external/chromium_org/android_webview/renderer/
H A Daw_content_renderer_client.cc77 if (!request.httpMethod().equals("GET"))
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebURLRequest.h155 BLINK_PLATFORM_EXPORT WebString httpMethod() const;
/external/chromium_org/chrome/renderer/safe_browsing/
H A Dphishing_classifier.cc129 if (!ds || !EqualsASCII(ds->request().httpMethod(), "GET")) {
/external/chromium_org/content/child/appcache/
H A Dweb_application_cache_host_impl.cc168 std::string method = request.httpMethod().utf8();
/external/chromium_org/content/renderer/pepper/
H A Dpepper_url_request_unittest.cc97 return web_request.httpMethod();
/external/chromium_org/chrome/renderer/net/
H A Dnet_error_helper.cc308 DCHECK(!EqualsASCII(web_frame->dataSource()->request().httpMethod(), "POST"));
/external/chromium_org/third_party/WebKit/Source/web/
H A DAssociatedURLLoader.cpp326 WebString method = newRequest.httpMethod();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DTimelineRecordFactory.cpp154 data->setString("requestMethod", request.httpMethod());
H A DInspectorTraceEvents.cpp147 value->setString("requestMethod", request.httpMethod());
/external/chromium_org/content/child/
H A Dweb_url_loader_impl.cc333 const std::string& method = request.httpMethod().latin1();
495 std::string old_method = request_.httpMethod().utf8();

Completed in 4091 milliseconds

12