HomeSort by relevance Sort by last modified time
    Searched defs:GET (Results 1 - 25 of 49) 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/freetype/src/base/
md5.c 76 #define GET(n) \
85 #define GET(n) \
131 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
132 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
133 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
134 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
135 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
136 STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
137 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
138 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20
    [all...]
  /external/llvm/lib/Support/
MD5.cpp 69 #define GET(n) (block[(n)])
113 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
114 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
115 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
116 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
117 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
118 STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
119 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
120 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
121 STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5
    [all...]
  /external/pdfium/third_party/freetype/src/base/
md5.c 76 #define GET(n) \
85 #define GET(n) \
131 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
132 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
133 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
134 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
135 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
136 STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
137 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
138 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_md5.cc 29 #define GET(n) \
75 STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
76 STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
77 STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
78 STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
79 STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
80 STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
81 STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
82 STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
83 STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpMethods.java 31 public final static String GET= "GET",
54 GET_BUFFER= CACHE.add(GET, GET_ORDINAL),
  /frameworks/volley/src/test/java/com/android/volley/toolbox/
HttpClientStackTest.java 58 TestRequest.Get request = new TestRequest.Get();
59 assertEquals(request.getMethod(), Method.GET);
HurlStackTest.java 44 assertEquals("GET", mMockConnection.getRequestMethod());
58 TestRequest.Get request = new TestRequest.Get();
59 assertEquals(request.getMethod(), Method.GET);
62 assertEquals("GET", mMockConnection.getRequestMethod());
  /frameworks/base/cmds/settings/src/com/android/commands/settings/
SettingsCmd.java 41 GET,
81 if ("get".equalsIgnoreCase(arg)) {
82 mVerb = CommandVerb.GET;
106 } else if (mVerb == CommandVerb.GET || mVerb == CommandVerb.DELETE) {
149 case GET:
289 System.err.println("usage: settings [--user NUM] get namespace key");
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
TestSequencer.java 40 public enum OPTYPE {CONNECT, PUT, GET, SET_PATH, DISCONNECT};
86 SeqStep step = sequence.get(index);
142 case GET:{
149 Operation op = mClientSession.get(reqHeaders);
  /system/security/keystore/include/keystore/
IKeystoreService.h 103 GET = IBinder::FIRST_CALL_TRANSACTION + 1,
143 virtual int32_t get(const String16& name, uint8_t** item, size_t* itemLength) = 0;
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
wsgiwrappers.py 118 self.charset = defaults.get('charset')
125 self.errors = defaults.get('errors', 'strict')
126 self.decode_param_names = defaults.get('decode_param_names', False)
150 return self.environ.get('HTTP_X_REQUESTED_WITH', '') == 'XMLHttpRequest'
155 return self.environ.get('HTTP_HOST', self.environ.get('SERVER_NAME'))
165 acceptLanguage = self.environ.get('HTTP_ACCEPT_LANGUAGE')
167 fallback = self.defaults.get('language', 'en-us')
181 def GET(self):
199 GET = property(GET, doc=GET.__doc__
    [all...]
  /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...]
  /frameworks/volley/src/main/java/com/android/volley/
Request.java 50 int GET = 0;
64 * Request method of this request. Currently supports GET, POST, PUT, DELETE, HEAD, OPTIONS,
341 * a simple GET should be used. Can throw {@link AuthFailureError} as
  /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...]
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
request.py 93 ('GET', 'HEAD', 'DELETE', 'TRACE'), False)
157 val = self.environ.get(key, default)
170 val = self.environ.get(key, default)
275 wrapped, raw = env.get('webob._body_file', (0,0))
304 Get the body of the request (wsgi.input) as a seekable file-like
316 method = environ_getter('REQUEST_METHOD', 'GET')
402 xff = e.get('HTTP_X_FORWARDED_FOR')
406 addr = e.get('REMOTE_ADDR')
422 host = e.get('HTTP_HOST')
442 scheme = e.get('wsgi.url_scheme'
    [all...]
  /external/nanohttpd/core/src/main/java/fi/iki/elonen/
NanoHTTPD.java 42 * <li>Supports parameter parsing of GET and POST methods (+ rudimentary PUT support in 1.25)</li>
263 * @param method "GET", "POST" etc.
325 return this.decodeParameters(parms.get(QUERY_STRING_PARAMETER));
349 parms.get(propertyName).add(propertyValue);
390 GET, PUT, POST, DELETE, HEAD, OPTIONS;
599 return header.get(name);
621 if (header == null || header.get("Date") == null) {
627 String value = header.get(key);
883 // Do NOT assume that a single read will get the entire header at once!
927 method = Method.lookup(pre.get("method"))
    [all...]
  /external/valgrind/VEX/priv/
host_generic_simd64.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py 128 GET = 'g' # push item from memo on stack; index is string arg
259 # Return a GET (BINGET, LONG_BINGET) opcode string, with argument i.
260 def get(self, i, pack=struct.pack): member in class:Pickler
267 return GET + repr(i) + '\n'
277 x = self.memo.get(id(obj))
279 self.write(self.get(x[0]))
284 f = self.dispatch.get(t)
290 reduce = dispatch_table.get(t)
551 get = self.get(memo[id(obj)][0]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py 128 GET = 'g' # push item from memo on stack; index is string arg
259 # Return a GET (BINGET, LONG_BINGET) opcode string, with argument i.
260 def get(self, i, pack=struct.pack): member in class:Pickler
267 return GET + repr(i) + '\n'
277 x = self.memo.get(id(obj))
279 self.write(self.get(x[0]))
284 f = self.dispatch.get(t)
290 reduce = dispatch_table.get(t)
551 get = self.get(memo[id(obj)][0]
    [all...]
  /external/libvncserver/webclients/java-applet/ssl/
SignedUltraViewerSSL.jar 
SignedVncViewer.jar 
UltraViewerSSL.jar 

Completed in 1546 milliseconds

1 2