/external/oauth/core/src/main/java/net/oauth/http/ |
H A D | HttpClient.java | 37 static final String PUT = OAuthMessage.PUT; field in interface:HttpClient
|
/external/autotest/client/common_lib/cros/fake_device_server/ |
H A D | resource_method_unittest.py | 56 returned_json = self.resource_method.PUT(12345) 68 self.resource_method.PUT, 12345)
|
H A D | resource_method.py | 15 """A base class for methods that expose a simple PATCH/PUT mechanism.""" 45 def PUT(self, *args, **kwargs): member in class:ResourceMethod 49 PUT .../resource_id
|
H A D | registration_tickets_unittest.py | 116 returned_json = self.registration.PUT(12345) 128 self.registration.PUT, 12345)
|
H A D | devices.py | 146 def PUT(self, *args, **kwargs): member in class:Devices 151 PUT http://<server-host>/devices/<device-id> 169 This PUT has no API key, but comes with an OAUTH access token.
|
H A D | registration_tickets.py | 182 def PUT(self, *args, **kwargs): member in class:RegistrationTickets 186 PUT .../ticket_number
|
/external/jetty/src/java/org/eclipse/jetty/http/ |
H A D | HttpMethods.java | 34 PUT= "PUT", field in class:HttpMethods 57 PUT_BUFFER= CACHE.add(PUT, PUT_ORDINAL),
|
/external/valgrind/VEX/priv/ |
H A D | main_util.c | 327 # define PUT(_ch) \ macro 332 do { Int _qq = (_n); for (; _qq > 0; _qq--) PUT(padchar); } \ 336 do { const HChar* _qq = _str; for (; *_qq; _qq++) PUT(*_qq); } \ 355 PUT(*format); 467 PAD(len1); PUT('0'); PUT('x'); PUTSTR(intbuf); PAD(len3); 471 PUT('%'); 478 PUT(*saved_format); 490 # undef PUT macro
|
H A D | host_generic_simd64.c | 1435 #define PUT( x, y ) ( ( x )<< ( y ) ) macro 1471 value = PUT(a, 11) | PUT(b, 10) | PUT(c, 9) | PUT(d, 8) | PUT(e, 7) 1472 | PUT(f, 6) | PUT(g, 5) | PUT(h, 4) | PUT( 1551 #undef PUT macro [all...] |
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
H A D | OdexedFieldInstructionMapper.java | 44 private static final int PUT = 1; field in class:OdexedFieldInstructionMapper 221 opcodeMap[isGet(fieldOpcode.normalOpcode)?GET:PUT] 236 FieldOpcode fieldOpcode = opcodeMap[isGet(odexedOpcode)?GET:PUT]
|
/external/pcre/dist/ |
H A D | pcre_internal.h | 429 #define PUT(a,n,d) \ macro 441 #define PUT(a,n,d) \ macro 454 #define PUT(a,n,d) \ macro 478 #define PUT(a,n,d) \ macro 492 #define PUT(a,n,d) \ macro 513 #define PUT(a,n,d) \ macro 528 #define PUTINC(a,n,d) PUT(a,n,d), a += LINK_SIZE
|
H A D | pcre_compile.c | 4042 if (cd->start_code + offset >= group) PUT(ptr, 1, offset + adjust); 4054 PUT(hc, 0, offset + adjust); 4080 PUT(code, 0, (int)(ptr - cd->start_pattern)); /* Pattern offset */ 4081 PUT(code, LINK_SIZE, 0); /* Default length */ 4107 PUT(previous_callout, 2 + LINK_SIZE, length); 5566 PUT(previous, 1, (int)(code - previous)); 5704 PUT(previous, 1, 2 + 2*LINK_SIZE); 5706 PUT(previous, 3 + 2*LINK_SIZE, 2 + 2*LINK_SIZE); 5717 PUT(cd->hwm, -LINK_SIZE, offset + 1 + LINK_SIZE); 6132 PUT(c [all...] |
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
H A D | HttpClient4.java | 66 final boolean isPut = PUT.equalsIgnoreCase(method);
|
/external/oauth/core/src/main/java/net/oauth/client/ |
H A D | OAuthClient.java | 343 protected static final String PUT = OAuthMessage.PUT; field in class:OAuthClient
|
/external/jetty/src/java/org/eclipse/jetty/client/webdav/ |
H A D | WebdavListener.java | 61 // We'll only enable webdav if this is a PUT request 62 if ( HttpMethods.PUT.equalsIgnoreCase( _exchange.getMethod() ) )
|
/external/libvterm/src/ |
H A D | screen.c | 680 #define PUT(c) \ macro 707 PUT(UNICODE_SPACE); 711 PUT(cell->chars[i]); 717 PUT(UNICODE_LINEFEED);
|
/external/caliper/lib/ |
H A D | jsr311-api-1.1.1.jar | META-INF/ META-INF/MANIFEST.MF javax/ javax/ws/ javax/ws/rs/ javax/ws/rs/core/ ... |
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/ |
H A D | libhttplib2.tex | 82 Automatically adds back ETags into PUT requests to resources we have already cached. This implements Section 3.2 of Detecting the Lost Update Problem Using Unreserved Checkout 294 'if-match' for PUT or 'if-none-match' when GET or HEAD requests are made. This 389 Here is more complex example that does a PUT 399 "PUT", body="This is text",
|
/external/oauth/core/src/main/java/net/oauth/ |
H A D | OAuthMessage.java | 384 public static final String PUT = "PUT"; field in class:OAuthMessage
|
/external/valgrind/helgrind/ |
H A D | libhb_core.c | 1419 # define PUT(_n,_v) \ macro 1425 if (descr & TREE_DESCR_64) PUT(8, tree[0]); else 1426 if (descr & TREE_DESCR_32_0) PUT(4, tree[0]); else 1427 if (descr & TREE_DESCR_16_0) PUT(2, tree[0]); else 1428 if (descr & TREE_DESCR_8_0) PUT(1, tree[0]); 1430 if (descr & TREE_DESCR_8_1) PUT(1, tree[1]); 1432 if (descr & TREE_DESCR_16_1) PUT(2, tree[2]); else 1433 if (descr & TREE_DESCR_8_2) PUT(1, tree[2]); 1435 if (descr & TREE_DESCR_8_3) PUT(1, tree[3]); 1437 if (descr & TREE_DESCR_32_1) PUT( 1448 # undef PUT macro [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
H A D | CGI.java | 231 if ((HttpMethods.POST.equals(req.getMethod()) || HttpMethods.PUT.equals(req.getMethod())) && "application/x-www-form-urlencoded".equals(req.getContentType()))
|
/external/nanohttpd/core/src/main/java/fi/iki/elonen/ |
H A D | NanoHTTPD.java | 116 * <li>Supports parameter parsing of GET and POST methods (+ rudimentary PUT 1075 } else if (Method.PUT.equals(this.method)) { 1154 PUT, enum constant in enum:NanoHTTPD.Method 2019 if (Method.PUT.equals(method) || Method.POST.equals(method)) {
|
/external/nanohttpd/nanolets/src/main/java/fi/iki/elonen/router/ |
H A D | RouterNanoHTTPD.java | 381 case PUT:
|
/external/curl/include/curl/ |
H A D | curl.h | 1039 CINIT(PUT, LONG, 54), /* HTTP PUT */ 1128 if POST, PUT or a custom request have been used first.
|
/external/google-breakpad/src/third_party/curl/ |
H A D | curl.h | 821 CINIT(PUT, LONG, 54), /* HTTP PUT */ 910 if POST, PUT or a custom request have been used first.
|