HomeSort by relevance Sort by last modified time
    Searched refs:req (Results 101 - 125 of 926) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mdnsresponder/mDNSShared/
uds_daemon.c 308 mDNSlocal void abort_request(request_state *req)
310 if (req->terminate == (req_termination_fn)~0)
311 { LogMsg("abort_request: ERROR: Attempt to abort operation %p with req->terminate %p", req, req->terminate); return; }
314 // If this is actually a shared connection operation, then its req->terminate function will scan
316 if (req->terminate) req->terminate(req);
318 if (!dnssd_SocketValid(req->sd)
938 request_state **req = &all_requests; local
976 request_state **req = &all_requests; local
1083 request_state *req; local
1737 request_state *req = question->QuestionContext; local
1994 request_state *req; local
2025 request_state *req; local
2231 request_state *req = question->QuestionContext; local
2636 request_state *req = question->QuestionContext; local
3751 request_state *req = info; local
4417 const request_state *req, *r; local
4570 const request_state *req, *p; local
4671 request_state **req = &all_requests; local
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_voice_gain_gnu.s 40 pWTVoice .req r0
41 pWTFrame .req r1
42 pInputBuffer .req r2
43 pMixBuffer .req r3
45 tmp0 .req r4
46 tmp1 .req r5
47 tmp2 .req r1 @ reuse register
48 tmp3 .req r6
50 numSamples .req r9
53 gainIncLeft .req r7
    [all...]
ARM-E_interpolate_loop_gnu.s 38 pWTVoice .req r0
39 pWTFrame .req r1
41 numSamples .req r2
42 phaseIncrement .req r3
43 pOutputBuffer .req r4
45 tmp0 .req r1 @reuse register
46 tmp1 .req r5
47 tmp2 .req r6
49 pLoopEnd .req r7
50 pLoopStart .req r8
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_voice_gain_gnu.s 40 pWTVoice .req r0
41 pWTFrame .req r1
42 pInputBuffer .req r2
43 pMixBuffer .req r3
45 tmp0 .req r4
46 tmp1 .req r5
47 tmp2 .req r1 @ reuse register
48 tmp3 .req r6
50 numSamples .req r9
53 gainIncLeft .req r7
    [all...]
ARM-E_interpolate_loop_gnu.s 38 pWTVoice .req r0
39 pWTFrame .req r1
41 numSamples .req r2
42 phaseIncrement .req r3
43 pOutputBuffer .req r4
45 tmp0 .req r1 @reuse register
46 tmp1 .req r5
47 tmp2 .req r6
49 pLoopEnd .req r7
50 pLoopStart .req r8
    [all...]
  /external/wpa_supplicant_8/src/wps/
http_client.c 24 struct wpabuf *req; member in struct:http_client
92 (unsigned long) wpabuf_len(c->req),
93 (unsigned long) wpabuf_len(c->req) - c->req_pos);
95 res = send(c->sd, wpabuf_head_u8(c->req) + c->req_pos,
96 wpabuf_len(c->req) - c->req_pos, 0);
105 if ((size_t) res < wpabuf_len(c->req) - c->req_pos) {
108 res, (unsigned long) wpabuf_len(c->req),
109 (unsigned long) wpabuf_len(c->req) - c->req_pos -
118 wpabuf_free(c->req);
119 c->req = NULL
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
ocsp.c 98 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md, X509 *issuer,
100 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, const EVP_MD * cert_id_md, X509 *issuer,
102 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
107 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
118 OCSP_REQUEST *req, int req_timeout);
137 OCSP_REQUEST *req = NULL; local
446 if(!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
459 if(!add_ocsp_serial(&req, *args, cert_id_md, issuer, ids))
569 if (!req && !reqin && !respin && !(port && ridx_filename)) badarg = 1;
633 if (!req && (add_nonce != 2)) add_nonce = 0
1213 OCSP_REQUEST *req = NULL; local
    [all...]
  /external/openssl/apps/
ocsp.c 98 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md, X509 *issuer,
100 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial, const EVP_MD * cert_id_md, X509 *issuer,
102 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
107 static int make_ocsp_response(OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db,
118 OCSP_REQUEST *req, int req_timeout);
137 OCSP_REQUEST *req = NULL; local
446 if(!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids))
459 if(!add_ocsp_serial(&req, *args, cert_id_md, issuer, ids))
569 if (!req && !reqin && !respin && !(port && ridx_filename)) badarg = 1;
633 if (!req && (add_nonce != 2)) add_nonce = 0
1213 OCSP_REQUEST *req = NULL; local
    [all...]
  /external/chromium/net/base/
host_resolver_impl.h 118 virtual void CancelRequest(RequestHandle req);
198 // Returns the index of the pool that request |req| maps to.
199 static JobPoolIndex GetJobPoolIndexForRequest(const Request* req);
201 JobPool* GetPoolForRequest(const Request* req) {
202 return job_pools_[GetJobPoolIndexForRequest(req)];
214 // Attaches |req| to a new job, and starts it. Returns that job.
215 Job* CreateAndStartJob(Request* req);
217 // Adds a pending request |req| to |pool|.
218 int EnqueueRequest(JobPool* pool, Request* req);
mapped_host_resolver.cc 34 void MappedHostResolver::CancelRequest(RequestHandle req) {
35 impl_->CancelRequest(req);
  /external/chromium_org/third_party/mesa/src/src/glx/
glx_query.c 122 xGLXGenericGetStringReq *req; local
138 GetReq(GLXGenericGetString, req);
139 req->reqType = opcode;
140 req->glxCode = glxCode;
141 req->for_whom = for_whom;
142 req->name = name;
  /external/mesa3d/src/glx/
glx_query.c 122 xGLXGenericGetStringReq *req; local
138 GetReq(GLXGenericGetString, req);
139 req->reqType = opcode;
140 req->glxCode = glxCode;
141 req->for_whom = for_whom;
142 req->name = name;
  /pdk/apps/CameraITS/tests/
test_linearity.py 48 req = {
81 req["android.colorCorrection.mode"] = 0
82 req["android.colorCorrection.transform"] = (
84 req["android.colorCorrection.gains"] = [1,1,1,1]
87 req["android.sensor.sensitivity"] = sens
88 fname, w, h, cap_md = cam.do_capture(req)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 240 req = Request(url)
241 cookiejar.add_cookie_header(req)
242 cookie_hdr = req.get_header("Cookie", "")
247 cookiejar.extract_cookies(res, req)
609 req = Request("http://www.example.com/rheum/rhaponticum;"
611 self.assertEqual(request_path(req),
614 req = Request("http://www.example.com/rheum/rhaponticum?"
616 self.assertEqual(request_path(req), "/rheum/rhaponticum")
618 req = Request("http://www.example.com")
619 self.assertEqual(request_path(req), "/")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cookielib.py 240 req = Request(url)
241 cookiejar.add_cookie_header(req)
242 cookie_hdr = req.get_header("Cookie", "")
247 cookiejar.extract_cookies(res, req)
609 req = Request("http://www.example.com/rheum/rhaponticum;"
611 self.assertEqual(request_path(req),
614 req = Request("http://www.example.com/rheum/rhaponticum?"
616 self.assertEqual(request_path(req), "/rheum/rhaponticum")
618 req = Request("http://www.example.com")
619 self.assertEqual(request_path(req), "/")
    [all...]
  /system/core/sdcard/
sdcard.c 61 * - don't forget that FORGET can forget multiple references (req->nlookup)
838 const struct fuse_in_header *hdr, const struct fuse_forget_in *req)
844 TRACE("[%d] FORGET #%lld @ %llx (%s)\n", handler->token, req->nlookup,
847 __u64 n = req->nlookup;
857 const struct fuse_in_header *hdr, const struct fuse_getattr_in *req)
865 req->getattr_flags, req->fh, hdr->nodeid, node ? node->name : "?");
879 const struct fuse_in_header *hdr, const struct fuse_setattr_in *req)
890 req->fh, req->valid, hdr->nodeid, node ? node->name : "?")
1428 const struct fuse_forget_in *req = data; local
1433 const struct fuse_getattr_in *req = data; local
1438 const struct fuse_setattr_in *req = data; local
1445 const struct fuse_mknod_in *req = data; local
1451 const struct fuse_mkdir_in *req = data; local
1467 const struct fuse_rename_in *req = data; local
1475 const struct fuse_open_in *req = data; local
1480 const struct fuse_read_in *req = data; local
1485 const struct fuse_write_in *req = data; local
1495 const struct fuse_release_in *req = data; local
1500 const struct fuse_fsync_in *req = data; local
1513 const struct fuse_open_in *req = data; local
1518 const struct fuse_read_in *req = data; local
1523 const struct fuse_release_in *req = data; local
1529 const struct fuse_init_in *req = data; local
    [all...]
  /hardware/qcom/display/msm8960/libcopybit/
copybit.cpp 212 struct mdp_blit_req *req, int flags)
214 req->alpha = dev->mAlpha;
215 req->transp_mask = MDP_TRANSP_NOP;
216 req->flags = dev->mFlags | flags;
219 req->flags |= MDP_MEMORY_ID_TYPE_FB;
222 req->flags |= MDP_BLEND_FG_PREMULT;
244 l->req[i].src.width,
245 l->req[i].src.height,
246 l->req[i].src.format,
247 l->req[i].src_rect.x
    [all...]
  /hardware/qcom/display/msm8974/libcopybit/
copybit.cpp 52 struct mdp_blit_req req[10]; member in struct:blitReq
215 struct mdp_blit_req *req, int flags)
217 req->alpha = dev->mAlpha;
218 req->transp_mask = MDP_TRANSP_NOP;
219 req->flags = dev->mFlags | flags;
222 req->flags |= MDP_MEMORY_ID_TYPE_FB;
225 req->flags |= MDP_BLEND_FG_PREMULT;
247 l->req[i].src.width,
248 l->req[i].src.height,
249 l->req[i].src.format
    [all...]
  /hardware/qcom/display/msm8x26/libcopybit/
copybit.cpp 212 struct mdp_blit_req *req, int flags)
214 req->alpha = dev->mAlpha;
215 req->transp_mask = MDP_TRANSP_NOP;
216 req->flags = dev->mFlags | flags;
219 req->flags |= MDP_MEMORY_ID_TYPE_FB;
222 req->flags |= MDP_BLEND_FG_PREMULT;
244 l->req[i].src.width,
245 l->req[i].src.height,
246 l->req[i].src.format,
247 l->req[i].src_rect.x
    [all...]
  /external/qemu/android/protocol/
core-commands-proxy.c 168 UICmdGetNetSpeed req; local
174 req.index = index;
175 status = _coreCmdProxy_send_command(AUICMD_GET_NETSPEED, &req, sizeof(req));
213 UICmdGetNetDelay req; local
219 req.index = index;
220 status = _coreCmdProxy_send_command(AUICMD_GET_NETDELAY, &req, sizeof(req));
267 UICmdGetQemuPath* req = (UICmdGetQemuPath*)malloc(cmd_data_size); local
268 if (req == NULL)
    [all...]
  /external/qemu/audio/
alsaaudio.c 485 static void alsa_dump_info (struct alsa_params_req *req,
490 dolog ("format | %10d | %10d\n", req->fmt, obtfmt);
492 req->nchannels, obt->nchannels);
493 dolog ("frequency | %10d | %10d\n", req->freq, obt->freq);
496 req->buffer_size, req->period_size);
530 static int alsa_open (int in, struct alsa_params_req *req,
543 freq = req->freq;
544 nchannels = req->nchannels;
545 size_in_usec = req->size_in_usec
880 struct alsa_params_req req; local
985 struct alsa_params_req req; local
    [all...]
  /dalvik/vm/mterp/mips/
OP_NEW_INSTANCE.S 20 EXPORT_PC() # req'd for init, resolve, alloc
  /external/stressapptest/src/
sattypes.h 158 timespec req; local
159 req.tv_sec = microseconds / 1000000;
161 req.tv_nsec = (microseconds % 1000000) * 1000;
162 return nanosleep(&req, NULL) == 0;
167 timespec req; local
168 req.tv_sec = seconds;
169 req.tv_nsec = 0;
170 return nanosleep(&req, NULL) == 0;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
nbd.h 37 #define nbd_cmd(req) ((req)->cmd[0])
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
nbd.h 37 #define nbd_cmd(req) ((req)->cmd[0])

Completed in 875 milliseconds

1 2 3 45 6 7 8 91011>>