Home
last modified time | relevance | path

Searched refs:response (Results 526 - 550 of 1475) sorted by relevance

1...<<21222324252627282930>>...59

/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_post.c128 struct MHD_Response *response; in ahc_echo() local
147 response = MHD_create_response_from_buffer (strlen (url), in ahc_echo()
150 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
151 MHD_destroy_response (response); in ahc_echo()
461 struct MHD_Response *response; in ahc_cancel() local
475 response = MHD_create_response_from_buffer (0, NULL, in ahc_cancel()
477 ret = MHD_queue_response(connection, 500, response); in ahc_cancel()
479 fprintf(stderr, "Failed to queue response\n"); in ahc_cancel()
480 MHD_destroy_response(response); in ahc_cancel()
611 fprintf(stderr, "Unexpected response cod in testMultithreadedPostCancelPart()
[all...]
/third_party/ffmpeg/libavformat/
H A Dftp.c71 char *features; /**< List of server's features represented as raw response */
142 * This routine returns ftp server response code.
143 * Server may send more than one response for a certain command.
208 const int response_codes[], char **response) in ftp_send_command()
214 if (response) in ftp_send_command()
215 *response = NULL; in ftp_send_command()
227 return ftp_status(s, response, response_codes); in ftp_send_command()
565 char buf[CONTROL_BUFFER_SIZE], *response = NULL; in ftp_connect_control_connection() local
587 if (ftp_status(s, ((h->flags & AVIO_FLAG_WRITE) ? &response : NULL), connect_codes) != 220) { in ftp_connect_control_connection()
592 if ((h->flags & AVIO_FLAG_WRITE) && av_stristr(response, "pur in ftp_connect_control_connection()
207 ftp_send_command(FTPContext *s, const char *command, const int response_codes[], char **response) ftp_send_command() argument
843 char *response = NULL; ftp_read() local
[all...]
/third_party/cups-filters/utils/
H A Dcups-browsed.c1183 *response; /* IPP Response */ in get_number_of_jobs() local
1225 /* Do the request and get back a response... */ in get_number_of_jobs()
1227 if ((response = cupsDoRequest(http, request, "/")) != NULL) { in get_number_of_jobs()
1228 for (attr = ippFirstAttribute(response); attr; in get_number_of_jobs()
1229 attr = ippNextAttribute(response)){ in get_number_of_jobs()
1232 attr = ippNextAttribute(response); in get_number_of_jobs()
1242 attr = ippNextAttribute(response); in get_number_of_jobs()
1258 ippDelete(response); in get_number_of_jobs()
2988 response message, then select the first printer in the cluster */ in get_cluster_default_attributes()
3239 ipp_t *request, *response in supports_job_attributes_requested() local
3793 ipp_t *response = NULL; get_printer_uuid() local
3962 ipp_t *request, *response = NULL; prepare_browse_data() local
5158 ipp_t *request, *response; is_disabled() local
5364 ipp_t *request, *response; get_cups_default_printer() local
5536 ipp_t *request, *response; record_printer_options() local
6153 ipp_t *request, *response, *printer_attributes = NULL; on_job_state() local
6713 ipp_t *response = NULL; /* IPP Response */ queue_overwritten() local
10982 ipp_t *request, *response = NULL; browse_poll_get_printers() local
11075 ipp_t *request, *response = NULL; browse_poll_create_subscription() local
11141 ipp_t *request, *response = NULL; browse_poll_cancel_subscription() local
11186 ipp_t *request, *response = NULL; browse_poll_get_notifications() local
[all...]
/kernel/linux/linux-5.10/fs/cifs/
H A Dsess.c559 returned by old servers in the SMB negprot response */ in decode_ascii_ssetup()
604 ses->auth_key.response = kmemdup(bcc_ptr + tioffset, tilen, in decode_ntlmssp_challenge()
606 if (!ses->auth_key.response) { in decode_ntlmssp_challenge()
720 memcpy(tmp, ses->auth_key.response + CIFS_SESS_KEY_SIZE, in build_ntlmssp_auth_blob()
916 ses->server->session_key.response = in sess_establish_session()
917 kmemdup(ses->auth_key.response, in sess_establish_session()
919 if (!ses->server->session_key.response) { in sess_establish_session()
999 * security mode bit in Negotiate Protocol response states in sess_auth_lanman()
1000 * to use challenge/response method (i.e. Password bit is 1). in sess_auth_lanman()
1035 /* lanman response ha in sess_auth_lanman()
[all...]
/kernel/linux/linux-6.6/drivers/platform/x86/amd/pmc/
H A Dpmc.c597 u32 value, message, argument, response; in amd_pmc_dump_registers() local
602 response = AMD_S2D_REGISTER_RESPONSE; in amd_pmc_dump_registers()
606 response = AMD_PMC_REGISTER_RESPONSE; in amd_pmc_dump_registers()
609 value = amd_pmc_reg_read(dev, response); in amd_pmc_dump_registers()
622 u32 val, message, argument, response; in amd_pmc_send_cmd() local
629 response = AMD_S2D_REGISTER_RESPONSE; in amd_pmc_send_cmd()
633 response = AMD_PMC_REGISTER_RESPONSE; in amd_pmc_send_cmd()
636 /* Wait until we get a valid response */ in amd_pmc_send_cmd()
637 rc = readx_poll_timeout(ioread32, dev->regbase + response, in amd_pmc_send_cmd()
645 /* Write zero to response registe in amd_pmc_send_cmd()
[all...]
/foundation/ability/ability_runtime/test/fuzztest/appmgrclientrest_fuzzer/
H A Dappmgrclientrest_fuzzer.cpp59 sptr<IStartSpecifiedAbilityResponse> response; in DoSomethingInterestingWithMyAPI() local
60 appMgrClient->RegisterStartSpecifiedAbilityResponse(response); in DoSomethingInterestingWithMyAPI()
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_animate.h46 ArkUI_Float32 response, ArkUI_Float32 dampingFraction, ArkUI_Float32 overlapDuration);
48 ArkUI_Float32 response, ArkUI_Float32 dampingFraction, ArkUI_Float32 overlapDuration);
/foundation/multimedia/drm_framework/frameworks/native/test/common/src/
H A Dhttp.cpp36 int HttpPost(std::string url, unsigned char *request, uint32_t requestLen, unsigned char *response, in HttpPost() argument
55 // response raw data in HttpPost()
75 ret = memcpy_s(response, tempStr.size(), tempStr.c_str(), tempStr.size()); in HttpPost()
/foundation/communication/nfc/services/include/
H A Disodep_card_handler.h65 bool CheckApduResponse(const std::string &response, uint8_t cardIndex);
66 bool CheckApduResponse(const std::string &response);
/foundation/communication/connected_nfc_tag/services/src/
H A Dnfc_tag_service_impl.cpp105 ErrCode NfcTagServiceImpl::ReadNdefTag(std::string &response) in ReadNdefTag() argument
111 response = NfcTagHdiAdapter::GetInstance().ReadNdefTag(); in ReadNdefTag()
/kernel/linux/linux-6.6/drivers/net/wwan/iosm/
H A Diosm_ipc_protocol.h133 * @response: Can be NULL if result can be ignored
138 struct ipc_rsp *response; member
147 * @response: Pointer to a response object which has a
155 struct ipc_rsp *response);
158 * ipc_protocol_msg_send - Send ipc control message to CP and wait for response
/kernel/linux/linux-6.6/drivers/hid/amd-sfh-hid/sfh1_1/
H A Damd_sfh_interface.h48 u32 response : 8; member
53 } response; member
/test/testfwk/xdevice/src/xdevice/
H A D__main__.py56 response = request.urlopen(url, timeout=5)
59 f.write(response.read())
/third_party/node/test/parallel/
H A Dtest-whatwg-url-toascii.js12 response: require(
29 runTests(request.response)
/third_party/node/test/fixtures/wpt/FileAPI/url/
H A Durl-with-xhr.any.js10 resolve(xhr.response);
63 assert_equals(xhr.response, blob_contents);
/third_party/protobuf/conformance/
H A DConformanceJavaLite.java133 Conformance.ConformanceResponse response = doTest(request); in doTestIo()
134 byte[] serializedOutput = response.toByteArray(); in doTestIo()
/third_party/protobuf/src/google/protobuf/
H A Dservice.h66 // MyResponse* response,
68 // // ... read request and fill in response ...
82 // FooResponse response;
86 // stub.Foo(&controller, request, &response, NewCallback(HandleResponse));
151 // * request and response are of the exact same classes as the objects
155 // response must not be accessed at all until "done" is called.
165 // * If the RPC succeeded, "response" contains the response returned by
167 // * If the RPC failed, "response"'s contents are undefined. The
172 Message* response, Closur
[all...]
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksClient.hpp53 void SendRequest(REQUEST& request, RESPONSE& response) in SendRequest() argument
59 response = Deserialize<RESPONSE>(packet); in SendRequest()
/foundation/multimedia/drm_framework/services/drm_service/server/src/
H A Dkey_session_service_stub.cpp168 std::vector<uint8_t> response;
172 "The size of response is too large.");
176 DRM_ERR_LOG("ProcessMediaKeyResponse read response failed.");
179 response.assign(responseBuf, responseBuf + responseSize);
181 int32_t ret = stub->ProcessMediaKeyResponse(licenseId, response);
246 std::vector<uint8_t> response;
249 "The size of response is too large.");
253 DRM_ERR_LOG("ProcessOfflineReleaseResponse read response failed.");
256 response.assign(responseBuf, responseBuf + responseSize);
258 int32_t ret = stub->ProcessOfflineReleaseResponse(licenseId, response);
[all...]
/foundation/multimedia/drm_framework/services/drm_service/client/src/
H A Dmediakeysystem_service_proxy.cpp87 DRM_ERR_LOG("ProcessOfflineReleaseResponse read response failed."); in GenerateKeySystemRequest()
95 int32_t MediaKeySystemServiceProxy::ProcessKeySystemResponse(const std::vector<uint8_t> &response) in ProcessKeySystemResponse() argument
107 if (!data.WriteInt32(response.size())) { in ProcessKeySystemResponse()
108 DRM_ERR_LOG("ProcessKeySystemResponse Write response size failed."); in ProcessKeySystemResponse()
111 DRM_CHECK_AND_RETURN_RET_LOG(response.size() < RESPONSE_MAX_LEN, DRM_MEMORY_ERROR, in ProcessKeySystemResponse()
112 "The size of response is too large."); in ProcessKeySystemResponse()
113 if (response.size() != 0) { in ProcessKeySystemResponse()
114 if (!data.WriteBuffer(response.data(), response.size())) { in ProcessKeySystemResponse()
115 DRM_ERR_LOG("RestoreOfflineMediaKeys write response faile in ProcessKeySystemResponse()
[all...]
/kernel/linux/linux-5.10/samples/mei/
H A Dmei-amt-version.c413 struct amt_host_if_resp_header *response = NULL; in amt_get_code_versions() local
419 (uint8_t **)&response, in amt_get_code_versions()
425 status = amt_verify_code_versions(response); in amt_get_code_versions()
429 memcpy(versions, response->data, sizeof(struct amt_code_versions)); in amt_get_code_versions()
431 if (response != NULL) in amt_get_code_versions()
432 free(response); in amt_get_code_versions()
/kernel/linux/linux-5.10/drivers/media/usb/hdpvr/
H A Dhdpvr-core.c116 char *response; in device_authorization() local
170 response = dev->usbc_buf+38; in device_authorization()
173 response); in device_authorization()
175 challenge(response); in device_authorization()
177 v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev, " response: %8ph\n", in device_authorization()
178 response); in device_authorization()
186 response, 8, in device_authorization()
/kernel/linux/linux-6.6/drivers/media/usb/hdpvr/
H A Dhdpvr-core.c116 char *response; in device_authorization() local
170 response = dev->usbc_buf+38; in device_authorization()
173 response); in device_authorization()
175 challenge(response); in device_authorization()
177 v4l2_dbg(MSG_INFO, hdpvr_debug, &dev->v4l2_dev, " response: %8ph\n", in device_authorization()
178 response); in device_authorization()
186 response, 8, in device_authorization()
/kernel/linux/linux-6.6/samples/mei/
H A Dmei-amt-version.c422 struct amt_host_if_resp_header *response = NULL; in amt_get_code_versions() local
428 (uint8_t **)&response, in amt_get_code_versions()
434 status = amt_verify_code_versions(response); in amt_get_code_versions()
438 memcpy(versions, response->data, sizeof(struct amt_code_versions)); in amt_get_code_versions()
440 if (response != NULL) in amt_get_code_versions()
441 free(response); in amt_get_code_versions()
/third_party/node/deps/undici/src/lib/fetch/
H A Dutil.js24 function responseURL (response) {
26 // A response has an associated URL. It is a pointer to the last URL
27 // in response’s URL list and null if response’s URL list is empty.
28 const urlList = response.urlList
33 // https://fetch.spec.whatwg.org/#concept-response-location-url
34 function responseLocationURL (response, requestFragment) {
35 // 1. If response’s status is not a redirect status, then return null.
36 if (!redirectStatusSet.has(response.status)) {
41 // `Location` and response
[all...]

Completed in 21 milliseconds

1...<<21222324252627282930>>...59