HomeSort by relevance Sort by last modified time
    Searched defs:httpMethod (Results 1 - 8 of 8) sorted by null

  /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);
  /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())
  /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/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/WebKit/win/
WebMutableURLRequest.cpp 180 HRESULT STDMETHODCALLTYPE WebMutableURLRequest::HTTPMethod(
183 BString httpMethod = BString(m_request.httpMethod());
184 *result = httpMethod.release();
  /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...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp 137 QString httpMethod = request.httpMethod();
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())),
    [all...]
  /external/webkit/Source/WebCore/loader/
FrameLoader.cpp     [all...]

Completed in 224 milliseconds