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

1 2 3 4 5 6

  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 35 static final String GET = OAuthMessage.GET;
  /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/llvm/test/MC/AsmParser/
macro-args.s 3 .macro GET var,re2g
11 GET is_sse, %eax
  /external/valgrind/main/memcheck/tests/
metadata.stdout.exp 1 result of GET is 1 (1 for success)
  /external/smack/src/org/jivesoftware/smackx/ping/packet/
Ping.java 30 setType(IQ.Type.GET);
  /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...]
  /external/chromium/chrome/browser/chromeos/login/
issue_response_handler.cc 30 new URLFetcher(GURL(token_url_), URLFetcher::GET, catcher);
mock_auth_response_handler.cc 60 return new URLFetcher(GURL(), URLFetcher::GET, delegate);
image_downloader.cc 31 image_fetcher_.reset(new URLFetcher(GURL(image_url), URLFetcher::GET, this));
  /external/webkit/LayoutTests/http/tests/appcache/resources/
offline-access.js 9 req.open("GET", "/resources/network-simulator.php?path=/appcache/resources/simple.txt", false);
  /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/toolbox/
ClearCacheRequest.java 41 super(Method.GET, null, null);
JsonArrayRequest.java 42 super(Method.GET, url, null, listener, errorListener);
JsonObjectRequest.java 52 * Constructor which defaults to <code>GET</code> if <code>jsonRequest</code> is
59 this(jsonRequest == null ? Method.GET : Method.POST, url, jsonRequest,
StringRequest.java 48 * Creates a new GET request.
55 this(Method.GET, url, listener, errorListener);
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
TranscriptSearchManager.java 57 search.setType(IQ.Type.GET);
90 search.setType(IQ.Type.GET);
  /external/webkit/LayoutTests/http/tests/cookies/resources/
resetCookies.js 10 req.open('GET', url, false);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
LeafNode.java 43 * Get information on the items in the node in standard
60 * Get the current items stored in the node.
69 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId()));
77 * Get the current items stored in the node based
90 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), subscriptionId));
98 * Get the items specified from the node. This would typically be
119 PubSub request = createPubsubPacket(Type.GET, new ItemsExtension(ItemsExtension.ItemsElementType.items, getId(), itemList));
127 * Get items persisted on the node, limited to the specified number.
138 PubSub request = createPubsubPacket(Type.GET, new GetItemsRequest(getId(), maxItems));
146 * Get items persisted on the node, limited to the specified number
    [all...]
  /external/webkit/LayoutTests/fast/encoding/resources/
char-decoding-utils.js 15 req.open('GET', 'data:text/plain,' + characterSequence, false);
  /libcore/luni/src/main/java/java/net/
HttpURLConnection.java 220 * <p>{@code HttpURLConnection} uses the {@code GET} method by default. It will
267 HttpEngine.GET,
278 * value is {@code "GET"}.
280 protected String method = HttpEngine.GET;
774 * Most caller should use {@code 0} to get the system default.
  /external/chromium/chrome/browser/net/
sdch_dictionary_fetcher.cc 26 // and get a different dictionary, but there is no reason to have it in the
44 if (fetch_queue_.empty() || current_fetch_.get() || task_is_pending_)
65 current_fetch_.reset(new URLFetcher(fetch_queue_.front(), URLFetcher::GET,
  /external/oauth/core/src/main/java/net/oauth/
OAuthAccessor.java 53 return properties.get(name);
69 * OAuthMessage.GET.
79 method = OAuthMessage.GET;
  /external/smack/src/org/jivesoftware/smackx/
SharedGroupManager.java 46 * @param connection connection to use to get the user's shared groups.
52 info.setType(IQ.Type.GET);
  /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/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);

Completed in 609 milliseconds

1 2 3 4 5 6