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

1 2 34 5 6 7 8 91011>>

  /external/iproute2/ip/
xdp.h 6 int xdp_parse(int *argc, char ***argv, struct iplink_req *req, bool generic,
xfrm_state.c 294 } req = { local
295 .n.nlmsg_len = NLMSG_LENGTH(sizeof(req.xsinfo)),
329 xfrm_mode_parse(&req.xsinfo.mode, &argc, &argv);
334 xfrm_reqid_parse(&req.xsinfo.reqid, &argc, &argv);
337 xfrm_seq_parse(&req.xsinfo.seq, &argc, &argv);
360 xfrm_state_flag_parse(&req.xsinfo.flags, &argc, &argv);
367 xfrm_selector_parse(&req.xsinfo.sel, &argc, &argv);
368 preferred_family = req.xsinfo.sel.family;
371 xfrm_lifetime_cfg_parse(&req.xsinfo.lft, &argc, &argv);
386 addattr_l(&req.n, sizeof(req.buf), XFRMA_ENCAP
744 } req = { local
996 } req = { local
1195 } req = { local
1245 } req = { local
1330 } req = { local
1356 } req = { local
    [all...]
  /external/libnetfilter_conntrack/src/conntrack/
filter_dump.c 34 void __build_filter_dump(struct nfnlhdr *req, size_t size,
38 nfnl_addattr32(&req->nlh, size, CTA_MARK,
40 nfnl_addattr32(&req->nlh, size, CTA_MARK_MASK,
44 struct nfgenmsg *nfg = NLMSG_DATA(&req->nlh);
  /external/llvm/test/MC/ARM/
dot-req.s 4 @ The line is duplicated on purpose, it is legal to redefine a req with
6 fred .req r5
7 fred .req r5
10 fred .req r6
  /frameworks/av/media/mtp/
MtpEventPacket.cpp 65 struct usb_request* const req = usb_request_wait(device, -1); local
66 if (req) {
67 mPacketSize = req->actual_length;
68 return req->actual_length;
  /system/extras/simpleperf/runtest/
run_and_sleep.cpp 25 struct timespec req; local
26 req.tv_sec = sleep_time_in_ns / 1000000000;
27 req.tv_nsec = sleep_time_in_ns % 1000000000;
28 nanosleep(&req, nullptr);
  /external/libevent/sample/
http-connect.c 25 static void get_cb(struct evhttp_request *req, void *arg)
30 VERIFY(req);
32 evbuf = evhttp_request_get_input_buffer(req);
48 struct evhttp_request *req = evhttp_request_new(get_cb, NULL); local
49 evhttp_add_header(req->output_headers, "Connection", "close");
50 VERIFY(!evhttp_make_request(evcon, req, EVHTTP_REQ_GET,
65 struct evhttp_request *req; local
102 VERIFY(req = evhttp_request_new(connect_cb, &connect_base));
104 evhttp_add_header(req->output_headers, "Connection", "keep-alive");
105 evhttp_add_header(req->output_headers, "Proxy-Connection", "keep-alive")
    [all...]
  /external/strace/
netlink_netlink_diag.c 46 struct netlink_diag_req req = { .sdiag_family = family }; local
47 const size_t offset = sizeof(req.sdiag_family);
49 PRINT_FIELD_XVAL("{", req, sdiag_family, addrfams, "AF_???");
51 if (len >= sizeof(req)) {
53 sizeof(req) - offset,
54 (char *) &req + offset)) {
55 if (NDIAG_PROTO_ALL == req.sdiag_protocol)
59 PRINT_FIELD_XVAL("", req, sdiag_protocol,
62 PRINT_FIELD_U(", ", req, ndiag_ino);
63 PRINT_FIELD_FLAGS(", ", req, ndiag_show
    [all...]
netlink_unix_diag.c 44 struct unix_diag_req req = { .sdiag_family = family }; local
45 const size_t offset = sizeof(req.sdiag_family);
47 PRINT_FIELD_XVAL("{", req, sdiag_family, addrfams, "AF_???");
49 if (len >= sizeof(req)) {
51 sizeof(req) - offset,
52 (char *) &req + offset)) {
53 PRINT_FIELD_U("", req, sdiag_protocol);
54 PRINT_FIELD_FLAGS(", ", req, udiag_states,
56 PRINT_FIELD_U(", ", req, udiag_ino);
57 PRINT_FIELD_FLAGS(", ", req, udiag_show
    [all...]
  /system/core/logd/
libaudit.c 75 struct audit_message req; local
78 memset(&req, 0, sizeof(req));
85 req.nlh.nlmsg_type = type;
86 req.nlh.nlmsg_len = NLMSG_SPACE(size);
87 req.nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
104 memcpy(NLMSG_DATA(&req.nlh), data, size);
119 req.nlh.nlmsg_seq = ++sequence;
123 rc = TEMP_FAILURE_RETRY(sendto(fd, &req, req.nlh.nlmsg_len, 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
multibuf.h 34 #define MbufGetReq(name,req,info) GetReq (name, req); \
35 req->reqType = info->codes->major_opcode; \
36 req->mbufReqType = X_##name;
38 #define MbufGetReq(name,req,info) GetReq (name, req); \
39 req->reqType = info->codes->major_opcode; \
40 req->mbufReqType = X_/**/name;
  /prebuilts/go/darwin-x86/src/net/http/httptest/
httptest.go 45 req, err := http.ReadRequest(bufio.NewReader(strings.NewReader(method + " " + target + " HTTP/1.0\r\n\r\n")))
51 req.Proto = "HTTP/1.1"
52 req.ProtoMinor = 1
53 req.Close = false
58 req.ContentLength = int64(v.Len())
60 req.ContentLength = int64(v.Len())
62 req.ContentLength = int64(v.Len())
64 req.ContentLength = -1
67 req.Body = rc
69 req.Body = ioutil.NopCloser(body
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httptest/
httptest.go 45 req, err := http.ReadRequest(bufio.NewReader(strings.NewReader(method + " " + target + " HTTP/1.0\r\n\r\n")))
51 req.Proto = "HTTP/1.1"
52 req.ProtoMinor = 1
53 req.Close = false
58 req.ContentLength = int64(v.Len())
60 req.ContentLength = int64(v.Len())
62 req.ContentLength = int64(v.Len())
64 req.ContentLength = -1
67 req.Body = rc
69 req.Body = ioutil.NopCloser(body
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
reg-alias.s 6 MMUPurgeTLBReg .req c6
7 MMUCP .req p15
  /external/strace/tests/
netlink_sock_diag.c 226 static const struct unix_diag_req req = { local
235 SOCK_DIAG_BY_FAMILY, NLM_F_REQUEST, req,
237 PRINT_FIELD_U(", ", req, sdiag_protocol);
239 PRINT_FIELD_U(", ", req, udiag_ino);
241 PRINT_FIELD_COOKIE(", ", req, udiag_cookie);
270 struct netlink_diag_req req = { local
278 SOCK_DIAG_BY_FAMILY, NLM_F_REQUEST, req,
281 PRINT_FIELD_U(", ", req, ndiag_ino);
283 PRINT_FIELD_COOKIE(", ", req, ndiag_cookie);
286 req.sdiag_protocol = NETLINK_ROUTE
331 static const struct packet_diag_req req = { local
375 struct inet_diag_req_v2 req = { local
439 struct inet_diag_req req = { local
483 struct inet_diag_req_v2 req = { local
574 struct smc_diag_req req = { local
    [all...]
  /external/strace/tests-m32/
netlink_sock_diag.c 226 static const struct unix_diag_req req = { local
235 SOCK_DIAG_BY_FAMILY, NLM_F_REQUEST, req,
237 PRINT_FIELD_U(", ", req, sdiag_protocol);
239 PRINT_FIELD_U(", ", req, udiag_ino);
241 PRINT_FIELD_COOKIE(", ", req, udiag_cookie);
270 struct netlink_diag_req req = { local
278 SOCK_DIAG_BY_FAMILY, NLM_F_REQUEST, req,
281 PRINT_FIELD_U(", ", req, ndiag_ino);
283 PRINT_FIELD_COOKIE(", ", req, ndiag_cookie);
286 req.sdiag_protocol = NETLINK_ROUTE
331 static const struct packet_diag_req req = { local
375 struct inet_diag_req_v2 req = { local
439 struct inet_diag_req req = { local
483 struct inet_diag_req_v2 req = { local
574 struct smc_diag_req req = { local
    [all...]
  /external/strace/tests-mx32/
netlink_sock_diag.c 226 static const struct unix_diag_req req = { local
235 SOCK_DIAG_BY_FAMILY, NLM_F_REQUEST, req,
237 PRINT_FIELD_U(", ", req, sdiag_protocol);
239 PRINT_FIELD_U(", ", req, udiag_ino);
241 PRINT_FIELD_COOKIE(", ", req, udiag_cookie);
270 struct netlink_diag_req req = { local
278 SOCK_DIAG_BY_FAMILY, NLM_F_REQUEST, req,
281 PRINT_FIELD_U(", ", req, ndiag_ino);
283 PRINT_FIELD_COOKIE(", ", req, ndiag_cookie);
286 req.sdiag_protocol = NETLINK_ROUTE
331 static const struct packet_diag_req req = { local
375 struct inet_diag_req_v2 req = { local
439 struct inet_diag_req req = { local
483 struct inet_diag_req_v2 req = { local
574 struct smc_diag_req req = { local
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_session.cc 101 CreateSessionRequest req; local
102 *req.mutable_config() = options_.config;
103 *req.mutable_graph_def() = graph;
104 req.set_target(options_.target);
105 ReEncodeConsts(req.mutable_graph_def());
107 Status s = master_->CreateSession(call_options, &req, &resp);
141 ExtendSessionRequest req; local
142 req.set_session_handle(handle_);
143 *req.mutable_graph_def() = graph;
144 req.set_current_graph_version(current_graph_version_)
292 PartialRunSetupRequest req; local
329 CloseSessionRequest req; local
345 ListDevicesRequest req; local
392 ResetRequest req; local
    [all...]
  /cts/apps/CameraITS/pymodules/its/
objects.py 95 req = {
117 req["android.tonemap.mode"] = 0
118 req["android.tonemap.curve"] = {
124 req["android.tonemap.mode"] = 3
125 req["android.tonemap.gamma"] = 1.0
129 return req
154 req = auto_capture_request()
155 turn_slow_filters_off(props, req)
157 return req
194 def set_filter_off_or_fast_if_possible(props, req, available_modes, filter)
    [all...]
  /external/libevent/test/
regress_http.c 74 static void http_basic_cb(struct evhttp_request *req, void *arg);
75 static void http_large_cb(struct evhttp_request *req, void *arg);
76 static void http_chunked_cb(struct evhttp_request *req, void *arg);
77 static void http_post_cb(struct evhttp_request *req, void *arg);
78 static void http_put_cb(struct evhttp_request *req, void *arg);
79 static void http_delete_cb(struct evhttp_request *req, void *arg);
80 static void http_delay_cb(struct evhttp_request *req, void *arg);
81 static void http_large_delay_cb(struct evhttp_request *req, void *arg);
82 static void http_badreq_cb(struct evhttp_request *req, void *arg);
83 static void http_dispatcher_cb(struct evhttp_request *req, void *arg)
249 struct evhttp_request *req = evhttp_request_new(NULL, NULL); local
370 struct evhttp_request *req; member in struct:chunk_req_state
555 struct evhttp_request *req = arg; local
606 struct evhttp_request *req = evhttp_request_new(NULL, NULL); local
1020 struct evhttp_request *req = NULL; local
1146 struct evhttp_request *req = NULL; local
1240 struct evhttp_request *req[2] = { NULL }; local
1335 struct evhttp_request *req = arg; local
1367 struct evhttp_request *req; local
1413 struct evhttp_request *req = NULL; local
1624 struct evhttp_request *req = NULL; local
1878 struct evhttp_request *req = NULL; local
1927 struct evhttp_request *req = NULL; local
2066 struct evhttp_request *req = NULL; local
2240 struct evhttp_request *req; local
2280 struct evhttp_request *req = NULL; local
3113 struct evhttp_request *req = NULL; local
3262 struct evhttp_request *req = NULL; local
3338 struct evhttp_request *req = NULL; local
3411 struct evhttp_request *req = NULL; local
3483 struct evhttp_request *req = NULL; local
3535 struct evhttp_request *req = NULL; local
3609 struct evhttp_request *req = NULL; local
3651 struct evhttp_request *req = NULL; local
3914 struct evhttp_request *req = NULL; local
3980 struct evhttp_request *req = NULL; local
4101 struct evhttp_request *req = NULL; local
4159 struct evhttp_request *req; member in struct:terminate_state
4379 struct evhttp_request *req = NULL; local
4485 struct evhttp_request *req = NULL; local
    [all...]
  /external/iproute2/tc/
tc_filter.c 52 } req = { local
79 if (req.t.tcm_parent) {
84 req.t.tcm_parent = TC_H_ROOT;
86 if (req.t.tcm_parent) {
91 req.t.tcm_parent = TC_H_MAKE(TC_H_CLSACT,
94 if (req.t.tcm_parent) {
99 req.t.tcm_parent = TC_H_MAKE(TC_H_CLSACT,
105 if (req.t.tcm_parent)
109 req.t.tcm_parent = handle;
156 req.t.tcm_info = TC_H_MAKE(prio<<16, protocol)
321 } req = { local
503 } req = { local
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httptrace/
example_test.go 15 req, _ := http.NewRequest("GET", "http://example.com", nil)
24 req = req.WithContext(httptrace.WithClientTrace(req.Context(), trace))
25 _, err := http.DefaultTransport.RoundTrip(req)
  /prebuilts/go/linux-x86/src/net/http/httptrace/
example_test.go 15 req, _ := http.NewRequest("GET", "http://example.com", nil)
24 req = req.WithContext(httptrace.WithClientTrace(req.Context(), trace))
25 _, err := http.DefaultTransport.RoundTrip(req)
  /device/google/cuttlefish_common/guest/commands/usbforward/
usb_server.cpp 144 AttachRequest req; local
145 if (fd_->Read(&req, sizeof(req)) != sizeof(req)) return;
159 ControlTransfer req; local
161 if (fd_->Read(&req, sizeof(req)) != sizeof(req)) return;
166 ((req.type & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_IN);
174 req));
205 DataTransfer req; local
364 RequestHeader req; local
    [all...]
  /external/apache-http/android/src/android/net/http/
Connection.java 155 Request req = null; local
187 req = mRequestFeeder.getRequest(mHost);
189 req = firstRequest;
192 if (req == null) {
196 req.setConnection(this);
199 if (req.mCancelled) {
202 + req);
203 req.complete();
215 if (!openHttpConnection(req)) {
225 req.mEventHandler.certificate(mCertificate)
    [all...]

Completed in 1707 milliseconds

1 2 34 5 6 7 8 91011>>