HomeSort by relevance Sort by last modified time
    Searched refs:httpMethod (Results 1 - 25 of 36) sorted by null

1 2

  /external/webkit/WebCore/loader/win/
FrameLoaderWin.cpp 58 frameWin->client()->submitForm(resourceRequest.httpMethod(), resourceRequest.url(), resourceRequest.httpBody());
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 47 final String httpMethod = request.method;
54 http.setRequestMethod(httpMethod);
57 StringBuilder headers = new StringBuilder(httpMethod);
OAuthClient.java 109 * @param httpMethod
115 public void getRequestToken(OAuthAccessor accessor, String httpMethod)
117 getRequestToken(accessor, httpMethod, null);
128 * @param httpMethod
137 public void getRequestToken(OAuthAccessor accessor, String httpMethod,
157 OAuthMessage response = invoke(accessor, httpMethod,
174 * @param httpMethod
183 public OAuthMessage getAccessToken(OAuthAccessor accessor, String httpMethod,
194 OAuthMessage response = invoke(accessor, httpMethod,
206 * @param httpMethod
    [all...]
  /external/webkit/WebKit/chromium/src/
WebURLRequest.cpp 138 WebString WebURLRequest::httpMethod() const
140 return m_private->m_resourceRequest->httpMethod();
143 void WebURLRequest::setHTTPMethod(const WebString& httpMethod)
145 m_private->m_resourceRequest->setHTTPMethod(httpMethod);
ResourceHandle.cpp 278 ASSERT(request.httpMethod() == "POST");
  /external/webkit/WebCore/platform/network/
ResourceRequestBase.cpp 76 data->m_httpMethod = httpMethod().crossThreadString();
180 const String& ResourceRequestBase::httpMethod() const
187 void ResourceRequestBase::setHTTPMethod(const String& httpMethod)
191 m_httpMethod = httpMethod;
335 if (a.httpMethod() != b.httpMethod())
ResourceRequestBase.h 90 const String& httpMethod() const;
91 void setHTTPMethod(const String& httpMethod);
  /external/webkit/WebKitTools/DumpRenderTree/win/
HistoryDelegate.cpp 107 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
109 wstring httpMethod;
111 httpMethod = wstringFromBSTR(httpMethodBSTR);
144 httpMethod.c_str(),
ResourceLoadDelegate.cpp 95 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
98 wstring httpMethod = wstringFromBSTR(httpMethodBSTR);
101 return L"<NSURLRequest URL " + url + L", main document URL " + mainDocumentURL + L", http method " + httpMethod + L">";
  /external/webkit/WebKitTools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 104 NSString *httpMethod = [self HTTPMethod];
105 if (!httpMethod)
106 httpMethod = @"(none)";
107 return [NSString stringWithFormat:@"<NSURLRequest URL %@, main document URL %@, http method %@>", [[self URL] _drt_descriptionSuitableForTestResult], [[self mainDocumentURL] _drt_descriptionSuitableForTestResult], httpMethod];
  /external/webkit/WebCore/loader/
DocumentThreadableLoader.cpp 84 if (!m_options.forcePreflight && isSimpleCrossOriginAccessRequest(request.httpMethod(), request.httpHeaderFields()))
90 if (CrossOriginPreflightResultCache::shared().canSkipPreflight(document->securityOrigin()->toString(), request.url(), m_options.allowCredentials, request.httpMethod(), request.httpHeaderFields()))
99 ASSERT(isSimpleCrossOriginAccessRequest(request.httpMethod(), request.httpHeaderFields()));
123 preflightRequest.setHTTPHeaderField("Access-Control-Request-Method", request.httpMethod());
196 || !preflightResult->allowsCrossOriginMethod(m_actualRequest->httpMethod())
MainResourceLoader.cpp 132 if (newRequest.httpMethod() == "POST")
137 && frameLoader()->initialRequest().httpMethod() == "POST")
  /external/webkit/WebCore/platform/network/mac/
ResourceRequestMac.mm 62 if (NSString* method = [m_nsRequest.get() HTTPMethod])
115 if (!httpMethod().isEmpty())
116 [nsRequest setHTTPMethod:httpMethod()];
  /external/webkit/WebCore/platform/network/soup/
ResourceRequestSoup.cpp 36 SoupMessage* soupMessage = soup_message_new(httpMethod().utf8().data(), url().string().utf8().data());
  /external/webkit/WebKit/chromium/public/
WebURLRequest.h 113 WEBKIT_API WebString httpMethod() const;
  /external/webkit/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 143 if (r.httpMethod() == "GET")
145 else if (r.httpMethod() == "HEAD")
147 else if (r.httpMethod() == "POST")
149 else if (r.httpMethod() == "PUT")
152 else if (r.httpMethod() == "DELETE")
  /external/webkit/WebKit/win/
WebMutableURLRequest.cpp 179 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::HTTPMethod(
182 BString httpMethod = BString(m_request.httpMethod());
183 *result = httpMethod.release();
WebHistory.h 124 void visitedURL(const WebCore::KURL&, const WebCore::String& title, const WebCore::String& httpMethod, bool wasFailure, bool increaseVisitCount);
WebHistory.cpp 697 void WebHistory::visitedURL(const KURL& url, const String& title, const String& httpMethod, bool wasFailure, bool increaseVisitCount)
739 if (!httpMethod.isEmpty())
740 entryPrivate->setLastVisitWasHTTPNonGet(!equalIgnoringCase(httpMethod, "GET") && url.protocolInHTTPFamily());
    [all...]
  /external/webkit/WebCore/inspector/
TimelineRecordFactory.cpp 112 data.set("requestMethod", request.httpMethod());
InspectorResource.cpp 110 m_requestMethod = request.httpMethod();
  /external/webkit/WebCore/loader/appcache/
ApplicationCache.cpp 123 if (!equalIgnoringCase(request.httpMethod(), "GET"))
  /external/webkit/WebCore/platform/network/cf/
ResourceRequestCFNet.cpp 119 RetainPtr<CFStringRef> requestMethod(AdoptCF, httpMethod().createCFString());
  /external/webkit/WebCore/platform/network/curl/
ResourceHandleManager.cpp 767 if ("GET" == job->request().httpMethod())
769 else if ("POST" == job->request().httpMethod())
771 else if ("PUT" == job->request().httpMethod())
773 else if ("HEAD" == job->request().httpMethod())
  /external/webkit/WebKit/android/jni/
WebCoreResourceLoader.cpp 267 if (r.httpMethod() == "POST") {

Completed in 1062 milliseconds

1 2