Home
last modified time | relevance | path

Searched refs:response (Results 701 - 725 of 1689) sorted by relevance

1...<<21222324252627282930>>...68

/third_party/NuttX/fs/nfs/
H A Dnfs_util.c166 void *response, size_t resplen) in nfs_request()
174 request, reqlen, response, resplen); in nfs_request()
196 request, reqlen, response, resplen); in nfs_request()
205 memcpy(&replyh, response, sizeof(struct nfs_reply_header)); in nfs_request()
164 nfs_request(struct nfsmount *nmp, int procnum, void *request, size_t reqlen, void *response, size_t resplen) nfs_request() argument
/third_party/protobuf/conformance/
H A Dconformance_test_runner.cc150 std::string* response) { in RunTest()
181 response_obj.SerializeToString(response); in RunTest()
185 response->resize(len); in RunTest()
186 CheckedRead(read_fd_, (void*)response->c_str(), len); in RunTest()
147 RunTest( const std::string& test_name, const std::string& request, std::string* response) RunTest() argument
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/
H A Dtls_test_common.c170 struct MHD_Response *response; in http_ahc() local
182 response = MHD_create_response_from_buffer (strlen (test_data), in http_ahc()
185 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in http_ahc()
186 MHD_destroy_response (response); in http_ahc()
/third_party/skia/third_party/externals/microhttpd/src/testzzuf/
H A Dtest_get.c73 struct MHD_Response *response; in ahc_echo() local
84 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
87 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
88 MHD_destroy_response (response); in ahc_echo()
H A Dtest_post.c116 struct MHD_Response *response; in ahc_echo() local
134 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
137 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
138 MHD_destroy_response (response); in ahc_echo()
H A Dtest_post_form.c119 struct MHD_Response *response; in ahc_echo() local
139 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
142 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
143 MHD_destroy_response (response); in ahc_echo()
H A Dtest_put.c87 struct MHD_Response *response; in ahc_echo() local
108 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
111 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
112 MHD_destroy_response (response); in ahc_echo()
H A Dtest_put_chunked.c87 struct MHD_Response *response; in ahc_echo() local
110 fprintf (stderr, "Not ready for response: %u/%u\n", *done, 8); in ahc_echo()
114 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
117 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
118 MHD_destroy_response (response); in ahc_echo()
H A Dtest_put_large.c95 struct MHD_Response *response; in ahc_echo() local
122 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
125 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
126 MHD_destroy_response (response); in ahc_echo()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
H A Dwps-ap-nfc.py116 # override to avoid parser error in request/response.pretty() in nfcpy
120 response = nfc.ndef.Message("\xd1\x02\x01Hs\x12")
129 response = self.process_request(request)
130 summary("send handover response {}".format(response.type))
131 return response
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dwps-ap-nfc.py116 # override to avoid parser error in request/response.pretty() in nfcpy
120 response = nfc.ndef.Message("\xd1\x02\x01Hs\x12")
129 response = self.process_request(request)
130 summary("send handover response {}".format(response.type))
131 return response
/base/startup/init/services/param/linux/
H A Dparam_service.c89 ParamResponseMessage *response = NULL; in SendResponseMsg() local
90 response = (ParamResponseMessage *)CreateParamMessage(msg->type, msg->key, sizeof(ParamResponseMessage)); in SendResponseMsg()
91 PARAM_CHECK(response != NULL, return PARAM_CODE_ERROR, "Failed to alloc memory for response"); in SendResponseMsg()
92 response->msg.id.msgId = msg->id.msgId; in SendResponseMsg()
93 response->result = result; in SendResponseMsg()
94 response->msg.msgSize = sizeof(ParamResponseMessage); in SendResponseMsg()
95 ParamTaskSendMsg(worker, (ParamMessage *)response); in SendResponseMsg()
96 PARAM_LOGV("Send response msg msgId %d result %d", msg->id.msgId, result); in SendResponseMsg()
258 // first check match, if match send response t in HandleParamWaitAdd()
[all...]
/third_party/cups-filters/utils/
H A Ddriverless.c606 ipp_t *response = NULL; in generate_ppd() local
627 response = get_printer_attributes4(uri, NULL, 0, NULL, 0, 1, isFax); in generate_ppd()
639 if (response == NULL) { in generate_ppd()
647 if (!ppdCreateFromIPP(ppdname, sizeof(ppdname), response, NULL, NULL, 0, in generate_ppd()
663 ippDelete(response); in generate_ppd()
675 if (response) in generate_ppd()
676 ippDelete(response); in generate_ppd()
/kernel/linux/linux-6.6/fs/notify/fanotify/
H A Dfanotify_user.c311 struct fanotify_perm_event *event, u32 response,
318 event->response = response & ~FAN_INFO;
319 if (response & FAN_INFO)
338 u32 response = response_struct->response; in process_access_response() local
342 pr_debug("%s: group=%p fd=%d response=%u buf=%p size=%zu\n", __func__, in process_access_response()
343 group, fd, response, info, info_len); in process_access_response()
345 * make sure the response is valid, if invalid we do nothing and either in process_access_response()
346 * userspace can send a valid response o in process_access_response()
875 struct fanotify_response response; fanotify_write() local
[all...]
/kernel/linux/linux-6.6/fs/smb/client/
H A Dsess.c921 returned by old servers in the SMB negprot response */ in decode_ascii_ssetup()
992 kfree_sensitive(ses->auth_key.response); in decode_ntlmssp_challenge()
993 ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen, in decode_ntlmssp_challenge()
995 if (!ses->auth_key.response) { in decode_ntlmssp_challenge()
1238 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE, in build_ntlmssp_auth_blob()
1413 server->session_key.response = in sess_establish_session()
1414 kmemdup(ses->auth_key.response, in sess_establish_session()
1416 if (!server->session_key.response) { in sess_establish_session()
1482 /* calculate nlmv2 response and session key */ in sess_auth_ntlmv2()
1489 memcpy(bcc_ptr, ses->auth_key.response in sess_auth_ntlmv2()
[all...]
/kernel/linux/linux-5.10/drivers/thunderbolt/
H A Dctl.c219 static struct tb_cfg_result decode_error(const struct ctl_pkg *response) in decode_error() argument
221 struct cfg_error_pkg *pkg = response->buffer; in decode_error()
222 struct tb_ctl *ctl = response->ctl; in decode_error()
226 res.err = check_header(response, sizeof(*pkg), TB_CFG_PKG_ERROR, in decode_error()
533 if (!req->response) in tb_cfg_request()
725 * Call this as response for hot plug/unplug event to ack it.
777 memcpy(req->response, pkg->buffer, req->response_size); in tb_cfg_copy()
781 /* Always complete when first response is received */ in tb_cfg_copy()
786 * tb_cfg_reset() - send a reset packet and wait for a response
811 req->response in tb_cfg_reset()
[all...]
/kernel/linux/linux-6.6/drivers/char/ipmi/
H A Dssif_bmc.c64 * SSIF_RES_SENDING 0x04 : Sending response
87 /* Timeout waiting for response */
103 struct ipmi_ssif_msg response; member
202 * The write must complete before the response timeout fired, otherwise in ssif_bmc_write()
203 * the response is aborted and wait for next request in ssif_bmc_write()
204 * Return -EINVAL if the response is aborted in ssif_bmc_write()
213 memcpy(&ssif_bmc->response, &msg, count); in ssif_bmc_write()
287 /* Invalidate response in buffer to denote it having been sent. */ in complete_response()
288 ssif_bmc->response.len = 0; in complete_response()
304 /* Do nothing if the response i in response_timeout()
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_afir.c291 if (s->response) { in convert_coeffs()
359 if (s->response) in activate()
372 else if (s->response && ff_outlink_frame_wanted(ctx->outputs[1])) in activate()
393 if (s->response && s->have_coeffs) { in activate()
415 if (s->response) in activate()
427 if (s->response && in activate()
451 if (s->response) { in query_formats()
586 if (s->response) { in init()
649 { "response", "show IR frequency response", OFFSE
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/
H A Dintel_sdvo.c497 /* the following two are to read the response */ in __intel_sdvo_write_cmd()
537 void *response, int response_len) in intel_sdvo_read_response()
556 * Also beware that the first response by many devices is to in intel_sdvo_read_response()
595 /* Read the command response */ in intel_sdvo_read_response()
599 &((u8 *)response)[i])) in intel_sdvo_read_response()
601 BUF_PRINT(" %02X", ((u8 *)response)[i]); in intel_sdvo_read_response()
663 * This function is making an assumption about the layout of the response,
668 struct intel_sdvo_get_trained_inputs_response response; in intel_sdvo_get_trained_inputs() local
670 BUILD_BUG_ON(sizeof(response) != 1); in intel_sdvo_get_trained_inputs()
672 &response, sizeo in intel_sdvo_get_trained_inputs()
536 intel_sdvo_read_response(struct intel_sdvo *intel_sdvo, void *response, int response_len) intel_sdvo_read_response() argument
2091 u16 response; intel_sdvo_detect() local
3096 u16 response, data_value[2]; intel_sdvo_create_enhance_property_tv() local
3207 u16 response, data_value[2]; intel_sdvo_create_enhance_property_lvds() local
3221 u16 response; intel_sdvo_create_enhance_property() member
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dintel_sdvo.c499 /* the following two are to read the response */ in __intel_sdvo_write_cmd()
539 void *response, int response_len) in intel_sdvo_read_response()
558 * Also beware that the first response by many devices is to in intel_sdvo_read_response()
597 /* Read the command response */ in intel_sdvo_read_response()
601 &((u8 *)response)[i])) in intel_sdvo_read_response()
603 BUF_PRINT(" %02X", ((u8 *)response)[i]); in intel_sdvo_read_response()
665 * This function is making an assumption about the layout of the response,
670 struct intel_sdvo_get_trained_inputs_response response; in intel_sdvo_get_trained_inputs() local
672 BUILD_BUG_ON(sizeof(response) != 1); in intel_sdvo_get_trained_inputs()
674 &response, sizeo in intel_sdvo_get_trained_inputs()
538 intel_sdvo_read_response(struct intel_sdvo *intel_sdvo, void *response, int response_len) intel_sdvo_read_response() argument
2136 u16 response; intel_sdvo_detect() local
3109 u16 response, data_value[2]; intel_sdvo_create_enhance_property_tv() local
3220 u16 response, data_value[2]; intel_sdvo_create_enhance_property_lvds() local
3234 u16 response; intel_sdvo_create_enhance_property() member
[all...]
/base/telephony/sms_mms/test/fuzztest/smsrecvitem_fuzzer/
H A Dsmsrecvitem_fuzzer.cpp132 AppExecFwk::InnerEvent::Pointer response = AppExecFwk::InnerEvent::Get(eventId, refId); in DoSomethingInterestingWithMyAPI() local
133 smsReceiveManager->gsmSmsReceiveHandler_->ProcessEvent(response); in DoSomethingInterestingWithMyAPI()
134 smsReceiveManager->cdmaSmsReceiveHandler_->ProcessEvent(response); in DoSomethingInterestingWithMyAPI()
/base/telephony/core_service/services/sim/include/
H A Dicc_dialling_numbers_handler.h196 void GetDiallingNumbers(int ef, int extensionEF, int recordNumber, AppExecFwk::InnerEvent::Pointer &response);
197 void GetAllDiallingNumbers(int ef, int extensionEF, AppExecFwk::InnerEvent::Pointer &response);
199 void UpdateDiallingNumbers(const DiallingNumberUpdateInfor &infor, AppExecFwk::InnerEvent::Pointer &response);
/foundation/bundlemanager/app_domain_verify/frameworks/verifier/src/
H A Dverify_task.cpp38 void VerifyTask::OnPostVerify(const std::string& uri, const OHOS::NetStack::HttpClient::HttpClientResponse& response) in OnPostVerify() argument
41 auto status = DomainVerifier::VerifyHost(response.GetResponseCode(), response.GetResult(), appVerifyBaseInfo_); in OnPostVerify()
/foundation/systemabilitymgr/samgr_lite/samgr/source/
H A Dtask_manager.c160 SAMGR_SendResponse(&exchange->request, &exchange->response); in ProcRequest()
174 exchange->handler(&exchange->request, &exchange->response); in ProcResponse()
187 exchange->handler(&exchange->request, &exchange->response); in ProcDirectRequest()
/kernel/linux/linux-5.10/drivers/net/wireless/ath/ath10k/
H A Dhif.h47 void *response, u32 *response_len);
126 void *response, u32 *response_len) in ath10k_hif_exchange_bmi_msg()
129 response, response_len); in ath10k_hif_exchange_bmi_msg()
124 ath10k_hif_exchange_bmi_msg(struct ath10k *ar, void *request, u32 request_len, void *response, u32 *response_len) ath10k_hif_exchange_bmi_msg() argument

Completed in 23 milliseconds

1...<<21222324252627282930>>...68