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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
post-syscall.c 20 struct timespec req, rem; local
23 req.tv_sec = 2;
24 req.tv_nsec = 0;
29 ret = nanosleep(&req, &rem);
  /external/valgrind/main/perf/
sarp.c 34 struct timespec req; local
35 req.tv_sec = 0;
36 req.tv_nsec = 100*1000*1000; // 0.1s
40 //nanosleep(&req, NULL);
  /development/scripts/app_engine_server/gae_shell/static/
shell.js 125 * @param {XmlHttpRequest} req the XmlHttpRequest we used to send the current
128 shell.done = function(req) {
129 if (req.readyState == this.DONE_STATE) {
144 var result = req.responseText.replace(/^\s*|\s*$/g, ''); // trim whitespace
168 var req = this.getXmlHttpRequest();
169 if (!req) {
175 req.onreadystatechange = function() { shell.done(req); };
189 req.open(form.method, form.action + '?' + params, true);
190 req.setRequestHeader('Content-type'
    [all...]
  /external/chromium/chrome/browser/net/
resolve_proxy_msg_helper.cc 60 PendingRequest& req = pending_requests_.front(); local
63 DCHECK(NULL == req.pac_req);
78 req.url, &proxy_info_, &callback_, &req.pac_req, net::BoundNetLog());
107 PendingRequest req = pending_requests_.front(); local
108 proxy_service_->CancelPacRequest(req.pac_req);
  /external/dropbear/libtomcrypt/testprof/
tomcrypt_test.h 14 char *name, *prov, *req; member in struct:__anon5566
  /external/iptables/extensions/
libxt_set.h 40 struct ip_set_req_get_set req; local
44 sockfd = get_version(&req.version);
45 req.op = IP_SET_OP_GET_BYINDEX;
46 req.set.index = idx;
47 res = getsockopt(sockfd, SOL_IP, SO_IP_SET, &req, &size);
59 if (req.set.name[0] == '\0')
63 strncpy(setname, req.set.name, IPSET_MAXNAMELEN);
69 struct ip_set_req_get_set req; local
73 sockfd = get_version(&req.version);
74 req.op = IP_SET_OP_GET_BYNAME
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/audio/amigaos/
SDL_ahiaudio.c 51 struct AHIRequest *req; local
55 if(req=(struct AHIRequest *)CreateIORequest(p,sizeof(struct AHIRequest)))
57 req->ahir_Version=4;
59 if(!OpenDevice(AHINAME,0,(struct IORequest *)req,NULL))
63 CloseDevice((struct IORequest *)req);
65 DeleteIORequest((struct IORequest *)req);
168 D(bug("Break req[1]...\n"));
174 D(bug("Break req[0]...\n"));
181 D(bug("Break AGAIN req[1]...\n"));
  /external/wpa_supplicant/
eap_otp.c 40 const struct eap_hdr *req; local
53 req = (const struct eap_hdr *) reqData;
79 password_len, EAP_CODE_RESPONSE, req->identifier,
eap_gtc.c 55 const struct eap_hdr *req; local
68 req = (const struct eap_hdr *) reqData;
82 req->identifier, NULL);
114 plen, EAP_CODE_RESPONSE, req->identifier, &rpos);
eap_md5.c 41 const struct eap_hdr *req; local
70 req = (const struct eap_hdr *) reqData;
91 req->identifier, &rpos);
  /system/media/wilhelm/tests/sandbox/
srcsink.c 64 SLboolean req[1] = {SL_BOOLEAN_TRUE}; local
67 &audioSnk, 1, ids, req);
74 &audioSnk, 1, ids, req);
86 &audioSnk, 1, ids, req);
98 &audioSnk, 1, ids, req);
111 &audioSnk, 1, ids, req);
116 &audioSnk, 1, ids, req);
124 &audioSnk, 1, ids, req);
129 &audioSnk, 1, ids, req);
137 &audioSnk, 1, ids, req);
    [all...]
urimime.c 79 SLboolean req[1]; local
81 req[0] = SL_BOOLEAN_TRUE;
84 &audioSnk, numInterfaces, ids, req);
90 &audioSnk, numInterfaces, ids, req);
  /frameworks/base/core/java/android/net/http/
Connection.java 159 Request req = null; local
191 req = mRequestFeeder.getRequest(mHost);
193 req = firstRequest;
196 if (req == null) {
200 req.setConnection(this);
203 if (req.mCancelled) {
206 + req);
207 req.complete();
219 if (!openHttpConnection(req)) {
229 req.mEventHandler.certificate(mCertificate)
    [all...]
  /frameworks/base/services/java/com/android/server/location/
GpsXtraDownloader.java 115 HttpUriRequest req = new HttpGet(url); local
119 ConnRouteParams.setDefaultProxy(req.getParams(), proxy);
122 req.addHeader(
126 req.addHeader(
130 HttpResponse response = client.execute(req);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/
TimeStampReqTest.java 50 TimeStampReq req = new TimeStampReq(1, msgImprint, reqPolicy, local
52 byte[] encoding = req.getEncoded();
55 assertEquals("Decoded version is incorrect", req.getVersion(), decoded
  /external/chromium/chrome/browser/
platform_util_common_linux.cc 31 GtkRequisition req; local
32 gtk_widget_size_request(dialog, &req);
41 if (width > req.width)
  /external/chromium/chrome/browser/ui/gtk/
slide_animator_gtk.cc 116 GtkRequisition req; local
117 gtk_widget_size_request(child_, &req);
119 int showing_height = static_cast<int>(req.height *
123 child_, 0, showing_height - req.height);
theme_install_bubble_view_gtk.cc 136 GtkRequisition req; local
137 gtk_widget_size_request(widget_, &req);
144 gint x = parent_x + parent_width / 2 - req.width / 2;
145 gint y = parent_y + parent_height / 2 - req.height / 2;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
feed.js 21 var req; variable
27 req = new XMLHttpRequest();
28 req.onload = handleResponse;
29 req.onerror = handleError;
30 req.open('GET', feedUrl, true);
31 req.send(null);
57 var doc = req.responseXML;
  /external/chromium/net/url_request/
https_prober.cc 37 URLRequest* req = new URLRequest(url, this); local
38 req->set_context(ctx);
39 req->Start();
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 79 struct wpabuf *req; local
89 req = p2p_build_dev_disc_req(p2p, go, dev->info.p2p_device_addr);
90 if (req == NULL)
105 wpabuf_head(req), wpabuf_len(req), 1000) < 0) {
108 wpabuf_free(req);
113 wpabuf_free(req);
p2p_pd.c 284 struct wpabuf *req; local
324 req = p2p_build_prov_disc_req(p2p, dev->dialog_token,
327 if (req == NULL)
333 wpabuf_head(req), wpabuf_len(req), 200) < 0) {
336 wpabuf_free(req);
342 wpabuf_free(req);
  /external/bluetooth/bluez/network/
common.c 128 struct bnep_conndel_req req; local
130 memset(&req, 0, sizeof(req));
131 baswap((bdaddr_t *)&req.dst, dst);
132 req.flags = 0;
133 if (ioctl(ctl, BNEPCONNDEL, &req)) {
144 struct bnep_connlist_req req; local
149 memset(&req, 0, sizeof(req));
150 req.cnum = 7
172 struct bnep_connadd_req req; local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 241 var req = new XMLHttpRequest();
242 req.onreadystatechange = function(e) {
256 req.open('GET', url, true);
257 req.send(null);
  /external/iproute2/ip/
ipaddrlabel.c 138 } req; local
145 memset(&req, 0, sizeof(req));
148 req.n.nlmsg_type = cmd;
149 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrlblmsg));
150 req.n.nlmsg_flags = NLM_F_REQUEST;
151 req.ifal.ifal_family = preferred_family;
152 req.ifal.ifal_prefixlen = 0;
153 req.ifal.ifal_index = 0;
156 req.n.nlmsg_flags |= NLM_F_CREATE|NLM_F_EXCL
    [all...]

Completed in 580 milliseconds

1 2 3 4 5 6 7 8 91011>>