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

1 2

  /external/webkit/Source/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/Tools/DumpRenderTree/win/
HistoryDelegate.cpp 107 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
109 wstring httpMethod;
111 httpMethod = wstringFromBSTR(httpMethodBSTR);
144 httpMethod.c_str(),
ResourceLoadDelegate.cpp 92 if (FAILED(request->HTTPMethod(&httpMethodBSTR)))
95 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/
ResourceRequestBase.cpp 87 data->m_httpMethod = httpMethod().crossThreadString();
193 const String& ResourceRequestBase::httpMethod() const
200 void ResourceRequestBase::setHTTPMethod(const String& httpMethod)
204 m_httpMethod = httpMethod;
375 if (a.httpMethod() != b.httpMethod())
ResourceRequestBase.h 93 const String& httpMethod() const;
94 void setHTTPMethod(const String& httpMethod);
BlobRegistryImpl.cpp 60 if (!equalIgnoringCase(request.httpMethod(), "GET"))
ResourceHandleInternal.h 90 , m_lastHTTPMethod(request.httpMethod())
  /external/webkit/Source/WebCore/platform/network/soup/
ResourceRequestSoup.cpp 39 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/
WebResourceRequest.cpp 111 m_method = resourceRequest.httpMethod().utf8().data();
  /external/webkit/Source/WebKit/chromium/src/
WebURLRequest.cpp 139 WebString WebURLRequest::httpMethod() const
141 return m_private->m_resourceRequest->httpMethod();
144 void WebURLRequest::setHTTPMethod(const WebString& httpMethod)
146 m_private->m_resourceRequest->setHTTPMethod(httpMethod);
  /external/webkit/Source/WebCore/platform/network/qt/
QNetworkReplyHandler.cpp 331 String QNetworkReplyHandler::httpMethod() const
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().latin1().data())
    [all...]
QNetworkReplyHandler.h 134 String httpMethod() const;
  /external/webkit/Tools/DumpRenderTree/mac/
ResourceLoadDelegate.mm 107 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/
DocumentThreadableLoader.cpp 95 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)
MainResourceLoader.cpp 149 if (newRequest.httpMethod() == "POST")
154 && frameLoader()->initialRequest().httpMethod() == "POST")
  /external/webkit/Source/WebKit/win/
WebMutableURLRequest.cpp 180 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::HTTPMethod(
183 BString httpMethod = BString(m_request.httpMethod());
184 *result = httpMethod.release();
WebHistory.h 123 void visitedURL(const WebCore::KURL&, const WTF::String& title, const WTF::String& httpMethod, bool wasFailure, bool increaseVisitCount);
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceRequestMac.mm 68 if (NSString* method = [m_nsRequest.get() HTTPMethod])
135 if (!httpMethod().isEmpty())
136 [nsRequest setHTTPMethod:httpMethod()];
  /external/webkit/Source/WebKit/chromium/public/
WebURLRequest.h 115 WEBKIT_API WebString httpMethod() const;
  /external/webkit/Source/WebCore/platform/network/win/
ResourceHandleWin.cpp 302 String httpMethod = firstRequest().httpMethod();
307 d->m_requestHandle = HttpOpenRequestW(d->m_connectHandle, httpMethod.charactersWithNullTermination(), urlStr.charactersWithNullTermination(),
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCache.cpp 125 if (!equalIgnoringCase(request.httpMethod(), "GET"))
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleManager.cpp 716 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/
TimelineRecordFactory.cpp 137 data->setString("requestMethod", request.httpMethod());

Completed in 586 milliseconds

1 2