Searched refs:PUT (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java42 PUT, enum constant in enum:SettingsCmd.CommandVerb
84 mVerb = CommandVerb.PUT;
116 // keep going; there's another PUT arg
117 } else { // PUT, final arg
152 case PUT:
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DTestRequest.java106 * Test example of a PUT request in the new style. In the new style, it is possible to have a
107 * PUT with no body.
111 super(Method.PUT, TEST_URL, null);
115 /** Test example of a PUT request in the new style with a body. */
/frameworks/volley/src/test/java/com/android/volley/toolbox/
H A DHttpClientStackTest.java83 assertEquals(request.getMethod(), Method.PUT);
91 assertEquals(request.getMethod(), Method.PUT);
H A DHurlStackTest.java86 assertEquals(request.getMethod(), Method.PUT);
89 assertEquals("PUT", mMockConnection.getRequestMethod());
95 assertEquals(request.getMethod(), Method.PUT);
98 assertEquals("PUT", mMockConnection.getRequestMethod());
/frameworks/volley/src/main/java/com/android/volley/
H A DRequest.java41 * Default encoding for POST or PUT parameters. See {@link #getParamsEncoding()}.
52 int PUT = 2; field in interface:Request.Method
64 * Request method of this request. Currently supports GET, POST, PUT, DELETE, HEAD, OPTIONS,
403 * Returns a Map of parameters to be used for a POST or PUT request. Can throw
415 * Returns which encoding should be used when converting POST or PUT parameters returned by
416 * {@link #getParams()} into a raw POST or PUT body.
431 * Returns the content type of the POST or PUT body.
438 * Returns the raw POST or PUT body to be sent.
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DHttpClientStack.java123 case Method.PUT: {
H A DHurlStack.java212 case Method.PUT:
213 connection.setRequestMethod("PUT");

Completed in 85 milliseconds