Searched defs:httpMethod (Results 1 - 9 of 9) sorted by relevance

/external/oauth/core/src/main/java/net/oauth/client/
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/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())
/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/WebKit/win/
H A DWebMutableURLRequest.cpp183 BString httpMethod = BString(m_request.httpMethod()); local
184 *result = httpMethod.release();
H A DWebHistory.cpp695 void WebHistory::visitedURL(const KURL& url, const String& title, const String& httpMethod, bool wasFailure, bool increaseVisitCount) argument
737 if (!httpMethod.isEmpty())
738 entryPrivate->setLastVisitWasHTTPNonGet(!equalIgnoringCase(httpMethod, "GET") && url.protocolInHTTPFamily());
/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/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...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DFrameLoaderClientQt.cpp137 QString httpMethod = request.httpMethod(); local
139 return QString::fromLatin1("<NSURLRequest URL %1, main document URL %2, http method %3>").arg(url).arg(mainDocumentUrl).arg(httpMethod);
806 qPrintable(QString(loader->request().httpMethod())),
/external/webkit/Source/WebCore/loader/
H A DFrameLoader.cpp1322 if (request.resourceRequest().httpMethod() == "POST")
1379 const String& httpMethod = request.httpMethod(); local
1384 if (shouldScrollToAnchor(isFormSubmission, httpMethod, newLoadType, newURL)) {
1511 const String& httpMethod = loader->request().httpMethod(); local
1513 if (shouldScrollToAnchor(isFormSubmission, httpMethod, policyChecker()->loadType(), newURL)) {
1641 if (request.httpMethod() == "POST")
2393 if (settings && settings->useQuickLookResourceCachingQuirks() && request.cachePolicy() == ReloadIgnoringCacheData && !equalIgnoringCase(request.httpMethod(), "post"))
2767 if (request.httpMethod()
2916 shouldScrollToAnchor(bool isFormSubmission, const String& httpMethod, FrameLoadType loadType, const KURL& url) argument
[all...]

Completed in 232 milliseconds