HomeSort by relevance Sort by last modified time
    Searched defs:GET (Results 1 - 25 of 26) sorted by null

1 2

  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 35 static final String GET = OAuthMessage.GET;
  /external/llvm/test/MC/AsmParser/
macro-args.s 3 .macro GET var,re2g
11 GET is_sse, %eax
  /external/chromium/chrome/common/net/
url_fetcher.h 7 // reading. This is useful for callers who simply want to get the data from a
37 // URLFetcher::GET, this);
65 GET,
  /system/security/keystore/include/keystore/
IKeystoreService.h 33 GET = IBinder::FIRST_CALL_TRANSACTION + 1,
61 virtual int32_t get(const String16& name, uint8_t** item, size_t* itemLength) = 0;
  /external/chromium/chrome/browser/autofill/
form_structure.h 24 GET,
173 // GET or POST.
  /external/compiler-rt/lib/tsan/rtl/
tsan_md5.cc 29 #define GET(n) \
77 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
78 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
79 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
80 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
81 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
82 STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
83 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
84 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
85 STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
IQ.java 26 * The base IQ (Info/Query) packet. IQ packets are used to get and set information
29 * is being taken: "get", "set", "result", or "error".<p>
44 private Type type = Type.GET;
70 this.type = Type.GET;
90 buf.append("type=\"get\">");
121 * IQ based on a {@link Type#GET IQ.Type.GET} or {@link Type#SET IQ.Type.SET}
130 * @param iq the {@link Type#GET IQ.Type.GET} or {@link Type#SET IQ.Type.SET} IQ packet.
132 * {@link Type#GET IQ.Type.GET} or {@link Type#SET IQ.Type.SET}
    [all...]
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HttpClientStackTest.java 57 TestRequest.Get request = new TestRequest.Get();
58 assertEquals(request.getMethod(), Method.GET);
HurlStackTest.java 43 assertEquals("GET", mMockConnection.getRequestMethod());
57 TestRequest.Get request = new TestRequest.Get();
58 assertEquals(request.getMethod(), Method.GET);
61 assertEquals("GET", mMockConnection.getRequestMethod());
  /external/libffi/src/
closures.c 539 #define GET(idx, len) do { p[idx] = dlmalloc (len); printf ("allocated %zi for p[%i]\n", (len), (idx)); } while (0)
541 GET (0, malloc_getpagesize / 2);
542 GET (1, 2 * malloc_getpagesize - 64 * sizeof (void*));
544 GET (1, 2 * malloc_getpagesize);
545 GET (2, malloc_getpagesize / 2);
  /frameworks/base/cmds/settings/src/com/android/commands/settings/
SettingsCmd.java 35 GET,
73 if ("get".equalsIgnoreCase(arg)) {
74 mVerb = CommandVerb.GET;
90 } else if (mVerb == CommandVerb.GET) {
133 case GET:
215 System.err.println("usage: settings [--user NUM] get namespace key");
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 76 /** A caller is about to get a parameter. */
112 return getParameterMap().get(name);
193 * Get a stream from which to read the body of the HTTP request or response.
256 if (pMap.get(OAuth.OAUTH_TOKEN) == null && accessor.accessToken != null) {
260 if (pMap.get(OAuth.OAUTH_CONSUMER_KEY) == null) {
263 String signatureMethod = pMap.get(OAuth.OAUTH_SIGNATURE_METHOD);
271 if (pMap.get(OAuth.OAUTH_TIMESTAMP) == null) {
274 if (pMap.get(OAuth.OAUTH_NONCE) == null) {
277 if (pMap.get(OAuth.OAUTH_VERSION) == null) {
382 public static final String GET = "GET"
    [all...]
  /external/strace/
stream.c 769 #define GET(type, struct) \
810 GET (T_CONN_REQ, conn_req);
817 GET (T_CONN_RES, conn_res);
832 GET (T_DISCON_REQ, discon_req);
839 GET (T_DATA_REQ, data_req);
846 GET (T_EXDATA_REQ, exdata_req);
853 GET (T_INFO_REQ, info_req);
861 GET (T_BIND_REQ, bind_req);
869 GET (T_UNBIND_REQ, unbind_req);
874 GET (T_UNITDATA_REQ, unitdata_req)
    [all...]
  /frameworks/volley/src/com/android/volley/
Request.java 50 int GET = 0;
59 /** Request method of this request. Currently supports GET, POST, PUT, and DELETE. */
295 * a simple GET should be used. Can throw {@link AuthFailureError} as
  /external/chromium/chrome/browser/search_engines/
template_url_parser.cc 91 GET,
102 method_(GET),
103 suggestion_method_(GET),
151 if (current_image_.get()) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/
UpdateBugStateTask.java 37 private static final String GET = "GET"; //$NON-NLS-1$
373 HttpsURLConnection bugsconn = getConn(url, GET, true, false, EMPTY);
447 System.err.println(Messages.getString("UpdateBugStateTask.usingComment") + COLON + SP + args.get(COMMENT).toString()); //$NON-NLS-1$
451 String url = HTTPS_BUGS_ECLIPSE_ORG_BUGS_SHOW_BUG_CGI_ID + urlEncode(args.get(ID).toString()) + CTYPE_XML;
457 HttpsURLConnection xmlconn = getConn(url, GET, true, false, EMPTY);
473 if (args.get(elem).equals(EMPTY) && pxml.get(elem) != null)
475 args.put(elem, pxml.get(elem));
478 req += urlEncode(elem) + EQ + urlEncode(args.get(elem).toString()) + AMP
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpEngine.java 64 * network, or by both in the event of a conditional GET.
94 public static final String GET = "GET";
162 * The cache response currently being validated on a conditional get. Null
164 * conditional get succeeds, these will be used for the response headers and
257 CacheResponse candidate = responseCache.get(uri, method,
731 cookieHandler.get(uri, requestHeaders.getHeaders().toMultimap()));
757 * and port (like "GET http://android.com/foo HTTP/1.1") or only the path
758 * (like "GET /foo HTTP/1.1").
  /external/valgrind/main/VEX/priv/
host_generic_simd64.c     [all...]
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 

Completed in 517 milliseconds

1 2