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

  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 36 static final String POST = OAuthMessage.POST;
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 110 * typically OAuthMessage.POST or OAuthMessage.GET, or null to
129 * typically OAuthMessage.POST or OAuthMessage.GET, or null to
175 * typically OAuthMessage.POST or OAuthMessage.GET, or null to
266 final boolean isPost = POST.equalsIgnoreCase(request.method);
344 protected static final String POST = OAuthMessage.POST;
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 383 public static final String POST = "POST";
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpURLConnectionImpl.java 75 public static final String POST = "POST";
96 POST,
589 // they are requesting a stream to write to. This implies a POST method
591 method = POST;
594 // If the request method is neither PUT or POST, then you're not writing
595 if (method != PUT && method != POST) {
618 throw new IOException("No socket to write to; was a POST cached?");
    [all...]

Completed in 64 milliseconds