HomeSort by relevance Sort by last modified time
    Searched refs:req (Results 151 - 175 of 1420) sorted by null

1 2 3 4 5 67 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
unaligned-text.s 1 .macro sym n:req
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urllib2.py 379 req = Request(fullurl, data)
381 req = fullurl
383 req.add_data(data)
385 req.timeout = timeout
386 protocol = req.get_type()
392 req = meth(req)
394 response = self._open(req, data)
400 response = meth(req, response)
404 def _open(self, req, data=None):
    [all...]
  /external/libevent/include/event2/
http.h 394 * @param req a request object
400 void evhttp_send_error(struct evhttp_request *req, int error,
411 * @param req a request object
417 void evhttp_send_reply(struct evhttp_request *req, int code,
432 @param req a request object
437 void evhttp_send_reply_start(struct evhttp_request *req, int code,
448 @param req a request object
452 void evhttp_send_reply_chunk(struct evhttp_request *req,
463 @param req a request object
475 @param req a request objec
    [all...]
  /hardware/qcom/display/msm8084/libcopybit/
copybit.cpp 52 struct mdp_blit_req req[10]; member in struct:blitReq
216 struct mdp_blit_req *req, int flags)
218 req->alpha = dev->mAlpha;
219 req->transp_mask = MDP_TRANSP_NOP;
220 req->flags = dev->mFlags | flags;
223 req->flags |= MDP_MEMORY_ID_TYPE_FB;
226 req->flags |= MDP_BLEND_FG_PREMULT;
253 l->req[i].src.width,
254 l->req[i].src.height,
255 l->req[i].src.format
    [all...]
  /hardware/qcom/display/msm8226/libcopybit/
copybit.cpp 52 struct mdp_blit_req req[10]; member in struct:blitReq
216 struct mdp_blit_req *req, int flags)
218 req->alpha = dev->mAlpha;
219 req->transp_mask = MDP_TRANSP_NOP;
220 req->flags = dev->mFlags | flags;
223 req->flags |= MDP_MEMORY_ID_TYPE_FB;
226 req->flags |= MDP_BLEND_FG_PREMULT;
253 l->req[i].src.width,
254 l->req[i].src.height,
255 l->req[i].src.format
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
request_test.go 26 req := &Request{Method: "GET"}
27 req.URL, _ = url.Parse("http://www.google.com/search?q=foo&q=bar")
28 if q := req.FormValue("q"); q != "foo" {
29 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q)
34 req, _ := NewRequest("POST", "http://www.google.com/search?q=foo&q=bar&both=x&prio=1&orphan=nope&empty=not",
36 req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value")
38 if q := req.FormValue("q"); q != "foo" {
39 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q)
41 if z := req.FormValue("z"); z != "post" {
42 t.Errorf(`req.FormValue("z") = %q, want "post"`, z
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
request_test.go 26 req := &Request{Method: "GET"}
27 req.URL, _ = url.Parse("http://www.google.com/search?q=foo&q=bar")
28 if q := req.FormValue("q"); q != "foo" {
29 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q)
34 req, _ := NewRequest("POST", "http://www.google.com/search?q=foo&q=bar&both=x&prio=1&orphan=nope&empty=not",
36 req.Header.Set("Content-Type", "application/x-www-form-urlencoded; param=value")
38 if q := req.FormValue("q"); q != "foo" {
39 t.Errorf(`req.FormValue("q") = %q, want "foo"`, q)
41 if z := req.FormValue("z"); z != "post" {
42 t.Errorf(`req.FormValue("z") = %q, want "post"`, z
    [all...]
  /external/libevent/test/
regress_testutils.c 150 regress_dns_server_cb(struct evdns_server_request *req, void *data)
155 if (req->nquestions != 1)
157 req->nquestions));
159 question = req->questions[0]->name;
174 tt_assert(! evdns_server_request_respond(req, err));
188 req, EVDNS_AUTHORITY_SECTION,
191 tt_assert(! evdns_server_request_respond(req, err));
198 evdns_server_request_add_a_reply(req, question, 1, &in.s_addr,
205 evdns_server_request_add_aaaa_reply(req,
210 tt_assert(! evdns_server_request_respond(req, 0)
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master.cc 307 void Master::CreateSession(const CreateSessionRequest* req,
309 SchedClosure([this, req, resp, done]() {
315 status = ValidateExternalGraphDefSyntax(req->graph_def());
329 if (req->config().has_cluster_def()) {
330 worker_cache_factory_options.cluster_def = &req->config().cluster_def();
335 if (req->target().compare(0, grpc_protocol.length(), grpc_protocol) ==
338 req->target().substr(grpc_protocol.length(), string::npos);
340 normalized_string = req->target();
342 for (auto&& job : req->config().cluster_def().job()) {
349 req->target(), "'. ClusterDef: "
562 CleanupAllRequest req; local
    [all...]
master_session.cc 111 LoggingRequest* req = new LoggingRequest; local
112 req->set_rpc_logging(active);
115 p.worker->LoggingAsync(req, resp, [this, req, resp](const Status& s) {
116 delete req;
135 LoggingRequest req; local
136 req.add_fetch_step_id(step_id);
144 &req, resp,
178 CallOptions* opts, const RunStepRequestWrapper& req,
192 Status CheckFetches(const RunStepRequestWrapper& req,
401 RegisterGraphRequest req; member in struct:tensorflow::Call
441 std::unique_ptr<MutableRunGraphRequestWrapper> req; member in struct:tensorflow::RunManyGraphs::Call
895 DeregisterGraphRequest req; member in struct:tensorflow::Call
    [all...]
  /external/libdrm/exynos/
exynos_drm.c 98 struct drm_exynos_gem_create req = { local
117 if (drmIoctl(dev->fd, DRM_IOCTL_EXYNOS_GEM_CREATE, &req)){
123 bo->handle = req.handle;
152 struct drm_exynos_gem_info req = { local
156 ret = drmIoctl(dev->fd, DRM_IOCTL_EXYNOS_GEM_GET, &req);
163 *size = req.size;
164 *flags = req.flags;
183 struct drm_gem_close req = { local
187 drmIoctl(bo->dev->fd, DRM_IOCTL_GEM_CLOSE, &req);
210 struct drm_gem_open req = local
252 struct drm_gem_flink req = { local
364 struct drm_exynos_vidi_connection req = { local
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_notls.c 172 static void check_gzip(struct Request *req, char **nv)
184 if(req->inflater) {
187 rv = spdylay_gzip_inflate_new(&req->inflater);
292 struct Request *req; local
294 req = spdylay_session_get_stream_user_data(session, stream_id);
295 if(req && req->stream_id == -1) {
296 req->stream_id = stream_id;
335 struct Request *req; local
357 req = spdylay_session_get_stream_user_data(session, stream_id)
381 struct Request *req; local
406 struct Request *req; local
609 struct Request req; local
    [all...]
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
WallpaperCropActivity.java 162 final LoadRequest req = (LoadRequest) msg.obj; local
165 if (req.src == null) {
175 req.result = new DrawableTileSource(this,
180 req.src.loadInBackground(new InBitmapProvider() {
217 req.result = new BitmapRegionTileSource(WallpaperCropActivity.this, req.src,
219 loadSuccess = req.src.getLoadingState() == BitmapSource.State.LOADED;
226 if (req == mCurrentLoadRequest) {
227 onLoadRequestComplete(req, loadSuccess);
229 addReusableBitmap(req.result)
304 final LoadRequest req = new LoadRequest(); local
    [all...]
  /system/core/trusty/storage/lib/
storage.c 147 struct storage_file_open_req req = { .flags = flags }; local
148 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}};
169 struct storage_file_close_req req = { .handle = _to_handle(fh)}; local
170 struct iovec tx[2] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}};
183 struct storage_file_delete_req req = { .flags = 0, }; local
184 struct iovec tx[3] = {{&msg, sizeof(msg)}, {&req, sizeof(req)}, {(void *)name, strlen(name)}};
194 struct storage_file_read_req req = { .handle = _to_handle(fh), .size = size, .offset = off } local
229 struct storage_file_write_req req = { .handle = _to_handle(fh), .offset = off, }; local
271 struct storage_file_set_size_req req = { .handle = _to_handle(fh), .size = file_size, }; local
282 struct storage_file_get_size_req req = { .handle = _to_handle(fh), }; local
    [all...]
  /external/mesa3d/src/glx/
glx_pbuffer.c 105 xGLXChangeDrawableAttributesReq *req; local
107 GetReqExtra(GLXChangeDrawableAttributes, 8 * num_attribs, req);
108 output = (CARD32 *) (req + 1);
110 req->reqType = opcode;
111 req->glxCode = X_GLXChangeDrawableAttributes;
112 req->drawable = drawable;
113 req->numAttribs = (CARD32) num_attribs;
351 xGLXGetDrawableAttributesReq *req; local
353 GetReq(GLXGetDrawableAttributes, req);
354 req->reqType = opcode
423 xGLXDestroyPbufferReq *req; local
448 xGLXCreateWindowReq *req; local
564 xGLXCreatePbufferReq *req; local
650 xGLXDestroyPbufferReq *req; local
    [all...]
  /cts/apps/CameraITS/tests/inprog/
test_crop_region.py 43 req = its.objects.auto_capture_request()
44 req['android.scaler.cropRegion'] = {
49 reqs.append(req)
50 crop = req['android.scaler.cropRegion']
  /cts/apps/CameraITS/tests/scene0/
test_unified_timestamps.py 32 req, fmt = its.objects.get_fastest_manual_capture_settings(props)
34 req, fmt = its.objects.get_fastest_auto_capture_settings(props)
35 cap = cam.do_capture(req, fmt)
53 cap = cam.do_capture(req, fmt)
  /external/libevent/
evrpc.c 189 struct evhttp_request *req, struct evbuffer *evbuf)
193 int res = hook->process(ctx, req, evbuf, hook->process_arg);
285 evrpc_request_cb(struct evhttp_request *req, void *arg)
291 if (req->type != EVHTTP_REQ_POST ||
292 evbuffer_get_length(req->input_buffer) <= 0)
299 rpc_state->http_req = req;
305 evrpc_hook_associate_meta_(&rpc_state->hook_meta, req->evcon);
311 rpc_state, req, req->input_buffer);
333 evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL)
342 struct evhttp_request *req; local
405 struct evhttp_request *req; local
476 struct evhttp_request *req; local
661 struct evhttp_request *req = NULL; local
721 struct evhttp_request *req = ctx->req; local
916 struct evhttp_request *req = ctx->req; local
1032 struct evrpc_request_wrapper *req = ctx; local
1054 struct evrpc_request_wrapper *req = ctx; local
1074 struct evrpc_request_wrapper *req = ctx; local
    [all...]
  /external/libevent/sample/
dns-example.c 105 evdns_server_callback(struct evdns_server_request *req, void *data)
111 for (i = 0; i < req->nquestions; ++i) {
113 if (req->questions[i]->type == EVDNS_TYPE_A &&
114 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) {
115 printf(" -- replying for %s (A)\n", req->questions[i]->name);
116 r = evdns_server_request_add_a_reply(req, req->questions[i]->name,
120 } else if (req->questions[i]->type == EVDNS_TYPE_PTR &&
121 req->questions[i]->dns_question_class == EVDNS_CLASS_INET) {
122 printf(" -- replying for %s (PTR)\n", req->questions[i]->name)
    [all...]
  /external/strace/tests/
nlattr_inet_diag_req_compat.c 53 struct inet_diag_req *const req = NLMSG_DATA(nlh); local
54 SET_STRUCT(struct inet_diag_req, req,
61 if (!inet_pton(AF_INET, address, req->id.idiag_src) ||
62 !inet_pton(AF_INET, address, req->id.idiag_dst))
  /external/strace/tests-m32/
nlattr_inet_diag_req_compat.c 53 struct inet_diag_req *const req = NLMSG_DATA(nlh); local
54 SET_STRUCT(struct inet_diag_req, req,
61 if (!inet_pton(AF_INET, address, req->id.idiag_src) ||
62 !inet_pton(AF_INET, address, req->id.idiag_dst))
  /external/strace/tests-mx32/
nlattr_inet_diag_req_compat.c 53 struct inet_diag_req *const req = NLMSG_DATA(nlh); local
54 SET_STRUCT(struct inet_diag_req, req,
61 if (!inet_pton(AF_INET, address, req->id.idiag_src) ||
62 !inet_pton(AF_INET, address, req->id.idiag_dst))
  /external/wpa_supplicant_8/src/utils/
browser-system.c 30 static void http_req(void *ctx, struct http_request *req)
37 url = http_request_get_uri(req);
50 http_request_deinit(req);
61 http_request_send_and_deinit(req, resp);
  /prebuilts/go/darwin-x86/src/syscall/
export_unix_test.go 9 func Ioctl(fd, req, arg uintptr) (err Errno) {
10 _, _, err = Syscall(SYS_IOCTL, fd, req, arg)
  /prebuilts/go/linux-x86/src/syscall/
export_unix_test.go 9 func Ioctl(fd, req, arg uintptr) (err Errno) {
10 _, _, err = Syscall(SYS_IOCTL, fd, req, arg)

Completed in 1120 milliseconds

1 2 3 4 5 67 8 91011>>