Home
last modified time | relevance | path

Searched refs:req (Results 351 - 375 of 1773) sorted by relevance

1...<<11121314151617181920>>...71

/third_party/ffmpeg/libavcodec/arm/
H A Dmdct_vfp.S24 CONTEXT .req a1
25 ORIGOUT .req a2
26 IN .req a3
27 OUT .req v1
28 REVTAB .req v2
29 TCOS .req v3
30 TSIN .req v4
31 OLDFPSCR .req v5
32 J0 .req a2
33 J1 .req a
[all...]
/third_party/libdrm/tests/amdgpu/
H A Dcs_tests.c207 struct amdgpu_bo_alloc_request req = {0}; in amdgpu_cs_uvd_create() local
214 req.alloc_size = 4*1024; in amdgpu_cs_uvd_create()
215 req.preferred_heap = AMDGPU_GEM_DOMAIN_GTT; in amdgpu_cs_uvd_create()
217 r = amdgpu_bo_alloc(device_handle, &req, &buf_handle); in amdgpu_cs_uvd_create()
277 struct amdgpu_bo_alloc_request req = {0}; in amdgpu_cs_uvd_decode() local
285 req.alloc_size = 4*1024; /* msg */ in amdgpu_cs_uvd_decode()
286 req.alloc_size += 4*1024; /* fb */ in amdgpu_cs_uvd_decode()
288 req.alloc_size += 4096; /*it_scaling_table*/ in amdgpu_cs_uvd_decode()
289 req.alloc_size += ALIGN(sizeof(uvd_bitstream), 4*1024); in amdgpu_cs_uvd_decode()
290 req in amdgpu_cs_uvd_decode()
418 struct amdgpu_bo_alloc_request req = {0}; amdgpu_cs_uvd_destroy() local
[all...]
/third_party/mbedtls/tests/data_files/
H A DMakefile51 test-ca.req.sha256: $(test_ca_key_file_rsa)
53 all_intermediate += test-ca.req.sha256
55 parse_input/test-ca.crt test-ca.crt: $(test_ca_key_file_rsa) test-ca.req.sha256
56 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA1 version=3 output_file=$@
74 test-ca-sha1.crt: $(test_ca_key_file_rsa) test-ca.req.sha256
75 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA1 version=3 output_file=$@
82 test-ca-sha256.crt: $(test_ca_key_file_rsa) test-ca.req.sha256
83 $(MBEDTLS_CERT_WRITE) is_ca=1 serial=3 request_file=test-ca.req.sha256 selfsign=1 issuer_name="C=NL,O=PolarSSL,CN=PolarSSL Test CA" issuer_key=$(test_ca_key_file_rsa) issuer_pwd=$(test_ca_pwd_rsa) not_before=20190210144400 not_after=20290210144400 md=SHA256 version=3 output_file=$@
91 $(OPENSSL) req -x509 -new -nodes -key $(test_ca_key_file_rsa) -passin "pass:$(test_ca_pwd_rsa)" -set_serial 3 -config $(test_ca_config_file) -sha1 -days 3653 -utf8 -subj "/C=NL/O=PolarSSL/CN=PolarSSL Test CA" -out $@
95 $(OPENSSL) req
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H A Dobex_mp_client.cpp25 int ObexMpClient::Put(const ObexHeader &req) in Put() argument
27 return ObexClient::Put(req); in Put()
30 int ObexMpClient::Put(const ObexHeader &req, std::shared_ptr<ObexBodyObject> reader) in Put() argument
33 if (!CheckBeforeRequest(req.GetFieldCode())) { in Put()
36 if (req.GetFieldCode() != static_cast<uint8_t>(ObexOpeId::PUT) && in Put()
37 req.GetFieldCode() != static_cast<uint8_t>(ObexOpeId::PUT_FINAL)) { in Put()
41 if (req.HasHeader(ObexHeader::BODY) || req.HasHeader(ObexHeader::END_OF_BODY)) { in Put()
49 auto &sendObject = clientSession_->CreateSendObject(req, reader, mtu); in Put()
64 int ObexMpClient::Get(const ObexHeader &req) in Get() argument
69 Get(const ObexHeader &req, std::shared_ptr<ObexBodyObject> writer, int srmpCount) Get() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dhttp_client.c24 struct wpabuf *req; member
90 send_len = wpabuf_len(c->req) - c->req_pos; in http_client_tx_ready()
94 (unsigned long) wpabuf_len(c->req), in http_client_tx_ready()
97 res = send(c->sd, wpabuf_head_u8(c->req) + c->req_pos, send_len, 0); in http_client_tx_ready()
109 res, (unsigned long) wpabuf_len(c->req), in http_client_tx_ready()
118 wpabuf_free(c->req); in http_client_tx_ready()
119 c->req = NULL; in http_client_tx_ready()
131 struct wpabuf *req, size_t max_response, in http_client_addr()
177 c->req = req; in http_client_addr()
130 http_client_addr(struct sockaddr_in *dst, struct wpabuf *req, size_t max_response, void (*cb)(void *ctx, struct http_client *c, enum http_client_event event), void *cb_ctx) http_client_addr() argument
236 http_client_url(const char *url, struct wpabuf *req, size_t max_response, void (*cb)(void *ctx, struct http_client *c, enum http_client_event event), void *cb_ctx) http_client_url() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dhttp_client.c24 struct wpabuf *req; member
90 send_len = wpabuf_len(c->req) - c->req_pos; in http_client_tx_ready()
94 (unsigned long) wpabuf_len(c->req), in http_client_tx_ready()
97 res = send(c->sd, wpabuf_head_u8(c->req) + c->req_pos, send_len, 0); in http_client_tx_ready()
109 res, (unsigned long) wpabuf_len(c->req), in http_client_tx_ready()
118 wpabuf_free(c->req); in http_client_tx_ready()
119 c->req = NULL; in http_client_tx_ready()
131 struct wpabuf *req, size_t max_response, in http_client_addr()
177 c->req = req; in http_client_addr()
130 http_client_addr(struct sockaddr_in *dst, struct wpabuf *req, size_t max_response, void (*cb)(void *ctx, struct http_client *c, enum http_client_event event), void *cb_ctx) http_client_addr() argument
236 http_client_url(const char *url, struct wpabuf *req, size_t max_response, void (*cb)(void *ctx, struct http_client *c, enum http_client_event event), void *cb_ctx) http_client_url() argument
[all...]
/foundation/systemabilitymgr/samgr_lite/samgr_endpoint/source/
H A Dendpoint.c148 IpcIo req; in SAMGR_AddSysCap() local
150 IpcIoInit(&req, data, MAX_DATA_LEN, 0); in SAMGR_AddSysCap()
151 IpcIoPushUint32(&req, RES_SYSCAP); in SAMGR_AddSysCap()
152 IpcIoPushUint32(&req, OP_PUT); in SAMGR_AddSysCap()
153 IpcIoPushString(&req, sysCap); in SAMGR_AddSysCap()
154 IpcIoPushBool(&req, isReg); in SAMGR_AddSysCap()
159 int ret = Transact(endpoint->context, samgr, INVALID_INDEX, &req, &reply, in SAMGR_AddSysCap()
180 IpcIo req; in SAMGR_GetSysCap() local
182 IpcIoInit(&req, data, MAX_DATA_LEN, 0); in SAMGR_GetSysCap()
183 IpcIoPushUint32(&req, RES_SYSCA in SAMGR_GetSysCap()
209 IpcIo req; SendGetAllSysCapsRequest() local
461 IpcIo req; HandleIpc() local
494 IpcIo req; RegisterIdentity() local
550 IpcIo req; RegisterRemoteEndpoint() local
[all...]
H A Dendpoint_rpc.c107 IpcIo req; in SAMGR_AddSysCap() local
109 IpcIoInit(&req, data, MAX_DATA_LEN, 0); in SAMGR_AddSysCap()
110 WriteInt32(&req, 0); in SAMGR_AddSysCap()
111 WriteUint32(&req, RES_SYSCAP); in SAMGR_AddSysCap()
112 WriteUint32(&req, OP_PUT); in SAMGR_AddSysCap()
113 WriteBool(&req, sysCap); in SAMGR_AddSysCap()
114 WriteBool(&req, isReg); in SAMGR_AddSysCap()
121 int ret = SendRequest(*samgr, INVALID_INDEX, &req, &reply, in SAMGR_AddSysCap()
143 IpcIo req; in SAMGR_GetSysCap() local
145 IpcIoInit(&req, dat in SAMGR_GetSysCap()
176 IpcIo req; SendGetAllSysCapsRequest() local
[all...]
/foundation/systemabilitymgr/samgr_lite/samgr_server/source/
H A Dsamgr_server_rpc.c46 typedef int(*ProcFunc)(SamgrServer *server, int32 option, void *origin, IpcIo *req, IpcIo *reply);
58 static int32 Invoke(IServerProxy *iProxy, int funcId, void *origin, IpcIo *req, IpcIo *reply);
60 static int ProcEndpoint(SamgrServer *server, int32 option, void *origin, IpcIo *req, IpcIo *reply);
61 static int32 ProcPutFeature(SamgrServer *server, const void *origin, IpcIo *req, IpcIo *reply, SvcIdentity *identity);
62 static int32 ProcGetFeature(SamgrServer *server, const void *origin, IpcIo *req, IpcIo *reply, SvcIdentity *identity);
63 static int ProcFeature(SamgrServer *server, int32 option, void *origin, IpcIo *req, IpcIo *reply);
69 static int ProcSysCap(SamgrServer *server, int32 option, void *origin, IpcIo *req, IpcIo *reply);
242 static int32 Invoke(IServerProxy *iProxy, int funcId, void *origin, IpcIo *req, IpcIo *reply) in Invoke() argument
246 ReadUint32(req, &resource); in Invoke()
248 ReadInt32(req, in Invoke()
261 ProcEndpoint(SamgrServer *server, int32 option, void *origin, IpcIo *req, IpcIo *reply) ProcEndpoint() argument
300 ProcPutFeature(SamgrServer *server, const void *origin, IpcIo *req, IpcIo *reply, SvcIdentity *identity) ProcPutFeature() argument
404 ProcGetFeature(SamgrServer *server, const void *origin, IpcIo *req, IpcIo *reply, SvcIdentity *identity) ProcGetFeature() argument
446 ProcFeature(SamgrServer *server, int32 option, void *origin, IpcIo *req, IpcIo *reply) ProcFeature() argument
482 ProcAddSysCap(SamgrServer *server, IpcIo *req) ProcAddSysCap() argument
507 ProcGetSysCap(SamgrServer *server, IpcIo *req) ProcGetSysCap() argument
549 ProcGetAllSysCap(SamgrServer *server, IpcIo *req, IpcIo *reply) ProcGetAllSysCap() argument
587 ProcSysCap(SamgrServer *server, int32 option, void *origin, IpcIo *req, IpcIo *reply) ProcSysCap() argument
[all...]
/third_party/libuv/test/
H A Dtest-tcp-read-stop-start.c35 static void on_write_close_immediately(uv_write_t* req, int status) { in on_write_close_immediately() argument
38 uv_close((uv_handle_t*)req->handle, NULL); /* Close immediately */ in on_write_close_immediately()
39 free(req); in on_write_close_immediately()
42 static void on_write(uv_write_t* req, int status) { in on_write() argument
45 free(req); in on_write()
49 uv_write_t* req = malloc(sizeof(*req)); in do_write() local
53 ASSERT_OK(uv_write(req, stream, &buf, 1, cb)); in do_write()
98 static void on_connect(uv_connect_t* req, int status) { in on_connect() argument
H A Dtest-threadpool.c31 static void work_cb(uv_work_t* req) { in work_cb() argument
32 ASSERT_PTR_EQ(req, &work_req); in work_cb()
33 ASSERT_PTR_EQ(req->data, &data); in work_cb()
38 static void after_work_cb(uv_work_t* req, int status) { in after_work_cb() argument
40 ASSERT_PTR_EQ(req, &work_req); in after_work_cb()
41 ASSERT_PTR_EQ(req->data, &data); in after_work_cb()
H A Dbenchmark-queue-work.c35 static void work_cb(uv_work_t* req) { in work_cb() argument
36 req->data = &result; in work_cb()
37 *(unsigned*)req->data = fastrand(); in work_cb()
40 static void after_work_cb(uv_work_t* req, int status) { in after_work_cb() argument
43 ASSERT_OK(uv_queue_work(req->loop, req, work_cb, after_work_cb)); in after_work_cb()
/third_party/libuv/docs/code/multi-echo-server/
H A Dworker.c12 uv_write_t req; member
16 void free_write_req(uv_write_t *req) { in free_write_req() argument
17 write_req_t *wr = (write_req_t*) req; in free_write_req()
27 void echo_write(uv_write_t *req, int status) { in echo_write() argument
31 free_write_req(req); in echo_write()
36 write_req_t *req = (write_req_t*) malloc(sizeof(write_req_t)); in echo_read() local
37 req->buf = uv_buf_init(buf->base, nread); in echo_read()
38 uv_write((uv_write_t*) req, client, &req->buf, 1, echo_write); in echo_read()
/third_party/node/lib/internal/webstreams/
H A Dadapters.js846 const req = new WriteWrap();
847 req.handle = streamBase;
848 req.oncomplete = onWriteComplete;
849 req.async = false;
850 req.bytes = 0;
851 req.buffer = null;
852 req.controller = controller;
853 req.promise = promise;
854 return req;
870 let req;
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
H A Deap_server_tnc.c107 struct wpabuf *req; in eap_tnc_build_start() local
109 req = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, 1, EAP_CODE_REQUEST, in eap_tnc_build_start()
111 if (req == NULL) { in eap_tnc_build_start()
118 wpabuf_put_u8(req, EAP_TNC_FLAGS_START | EAP_TNC_VERSION); in eap_tnc_build_start()
122 return req; in eap_tnc_build_start()
129 struct wpabuf *req; in eap_tnc_build() local
150 req = wpabuf_alloc(rlen); in eap_tnc_build()
151 if (req == NULL) { in eap_tnc_build()
157 wpabuf_put_data(req, start_buf, start_len); in eap_tnc_build()
160 rpos1 = wpabuf_put(req, in eap_tnc_build()
220 struct wpabuf *req; eap_tnc_build_msg() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Deap_server_tnc.c107 struct wpabuf *req; in eap_tnc_build_start() local
109 req = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, 1, EAP_CODE_REQUEST, in eap_tnc_build_start()
111 if (req == NULL) { in eap_tnc_build_start()
118 wpabuf_put_u8(req, EAP_TNC_FLAGS_START | EAP_TNC_VERSION); in eap_tnc_build_start()
122 return req; in eap_tnc_build_start()
129 struct wpabuf *req; in eap_tnc_build() local
150 req = wpabuf_alloc(rlen); in eap_tnc_build()
151 if (req == NULL) { in eap_tnc_build()
157 wpabuf_put_data(req, start_buf, start_len); in eap_tnc_build()
160 rpos1 = wpabuf_put(req, in eap_tnc_build()
220 struct wpabuf *req; eap_tnc_build_msg() local
[all...]
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/
H A Dwifi_p2p_dns_sd_service_request.cpp34 WifiP2pDnsSdServiceRequest req; in Create() local
35 return req; in Create()
40 WifiP2pDnsSdServiceRequest req( in Create()
42 return req; in Create()
48 WifiP2pDnsSdServiceRequest req(instanceName + "." + serviceType + ".local.", in Create()
51 return req; in Create()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/src/distributedcamera/
H A Ddcamera_sink_callback_proxy.cpp34 MessageParcel req; in OnNotifyResourceInfo() local
37 if (!req.WriteInterfaceToken(DCameraSinkCallbackProxy::GetDescriptor())) { in OnNotifyResourceInfo()
43 if (!req.WriteInt32(resType) || !req.WriteString(subtype) || !req.WriteString(networkId)) { in OnNotifyResourceInfo()
47 remote->SendRequest(NOTIFY_RESOURCEINFO, req, reply, option); in OnNotifyResourceInfo()
/third_party/libuv/docs/code/progress/
H A Dmain.c12 void fake_download(uv_work_t *req) { in fake_download() argument
13 int size = *((int*) req->data); in fake_download()
26 void after(uv_work_t *req, int status) { in after() argument
39 uv_work_t req; in main() local
41 req.data = (void*) &size; in main()
44 uv_queue_work(loop, &req, fake_download, after); in main()
/third_party/node/test/parallel/
H A Dtest-http-client-timeout-connect-listener.js14 const server = http.createServer((req, res) => {
23 const req = doRequest(options, common.mustCall(() => {
28 req.on('socket', common.mustCall((socket) => {
35 const req = http.get(options, (res) => {
40 req.setTimeout(timeout);
41 return req;
H A Dtest-http-server-connection-list-when-close.js16 const server = http.createServer((req, res) => {
19 req.socket.parser.free = common.mustCall();
20 req.socket.on('close', common.mustCall(() => {
30 const server = http.createServer((req, res) => {
32 const { parser } = req.socket;
38 req.socket.on('close', common.mustCall(() => {
H A Dtest-http2-server-shutdown-before-respond.js29 const req = client.request();
30 req.on('error', common.expectsError({
33 req.resume();
34 req.on('data', common.mustNotCall());
35 req.on('end', common.mustNotCall());
36 req.on('close', common.mustCall(() => server.close()));
H A Dtest-http2-socket-proxy-handler-for-has.js16 (req, res) => {
17 const request = req;
29 const req = client.request({});
30 req.on('response', common.mustCall((headers, flags) => {
34 req.on('end', common.mustCall(() => {
37 req.end();
/third_party/node/deps/openssl/openssl/apps/
H A Docsp.c59 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
62 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
65 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
69 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
223 OCSP_REQUEST *req = NULL; in ocsp_main() local
445 if (!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids)) in ocsp_main()
454 if (!add_ocsp_serial(&req, opt_arg(), cert_id_md, issuer, ids)) in ocsp_main()
554 if (req == NULL && reqin == NULL in ocsp_main()
562 if (req == NULL && (add_nonce != 2)) in ocsp_main()
565 if (req in ocsp_main()
903 add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids) add_ocsp_cert() argument
929 add_ocsp_serial(OCSP_REQUEST **req, char *serial, const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids) add_ocsp_serial() argument
966 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) print_ocsp_summary() argument
1028 make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db, STACK_OF(X509) *ca, X509 *rcert, EVP_PKEY *rkey, const EVP_MD *rmd, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(X509) *rother, unsigned long flags, int nmin, int ndays, int badsig, const EVP_MD *resp_md) make_ocsp_response() argument
1231 process_responder(OCSP_REQUEST *req, const char *host, const char *port, const char *path, const char *proxy, const char *no_proxy, int use_ssl, STACK_OF(CONF_VALUE) *headers, int req_timeout) process_responder() argument
[all...]
/third_party/openssl/apps/
H A Docsp.c59 static int add_ocsp_cert(OCSP_REQUEST **req, X509 *cert,
62 static int add_ocsp_serial(OCSP_REQUEST **req, char *serial,
65 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
69 static void make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req,
223 OCSP_REQUEST *req = NULL; in ocsp_main() local
445 if (!add_ocsp_cert(&req, cert, cert_id_md, issuer, ids)) in ocsp_main()
454 if (!add_ocsp_serial(&req, opt_arg(), cert_id_md, issuer, ids)) in ocsp_main()
554 if (req == NULL && reqin == NULL in ocsp_main()
562 if (req == NULL && (add_nonce != 2)) in ocsp_main()
565 if (req in ocsp_main()
903 add_ocsp_cert(OCSP_REQUEST **req, X509 *cert, const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids) add_ocsp_cert() argument
929 add_ocsp_serial(OCSP_REQUEST **req, char *serial, const EVP_MD *cert_id_md, X509 *issuer, STACK_OF(OCSP_CERTID) *ids) add_ocsp_serial() argument
966 print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req, STACK_OF(OPENSSL_STRING) *names, STACK_OF(OCSP_CERTID) *ids, long nsec, long maxage) print_ocsp_summary() argument
1028 make_ocsp_response(BIO *err, OCSP_RESPONSE **resp, OCSP_REQUEST *req, CA_DB *db, STACK_OF(X509) *ca, X509 *rcert, EVP_PKEY *rkey, const EVP_MD *rmd, STACK_OF(OPENSSL_STRING) *sigopts, STACK_OF(X509) *rother, unsigned long flags, int nmin, int ndays, int badsig, const EVP_MD *resp_md) make_ocsp_response() argument
1231 process_responder(OCSP_REQUEST *req, const char *host, const char *port, const char *path, const char *proxy, const char *no_proxy, int use_ssl, STACK_OF(CONF_VALUE) *headers, int req_timeout) process_responder() argument
[all...]

Completed in 13 milliseconds

1...<<11121314151617181920>>...71