Home
last modified time | relevance | path

Searched refs:response (Results 401 - 425 of 815) sorted by relevance

1...<<11121314151617181920>>...33

/foundation/ai/ai_engine/services/common/protocol/data_channel/source/
H A Dresponse.cpp16 #include "protocol/data_channel/include/response.h"
137 void IResponse::Destroy(IResponse *&response) in Destroy() argument
139 ResponseCast::Destroy(response); in Destroy()
/foundation/arkui/ace_engine/interfaces/native/node/
H A Danimate_impl.h114 ArkUI_CurveHandle SpringMotion(float response, float dampingFraction, float overlapDuration);
115 ArkUI_CurveHandle ResponsiveSpringMotion(float response, float dampingFraction, float overlapDuration);
/foundation/communication/netstack/utils/profiler_utils/src/
H A Dhttp_client_network_message.cpp27 HttpClient::HttpClientResponse &response, CURL *handle) in HttpClientNetworkMessage()
31 response_(response) {} in HttpClientNetworkMessage()
26 HttpClientNetworkMessage(std::string requestId, HttpClient::HttpClientRequest &request, HttpClient::HttpClientResponse &response, CURL *handle) HttpClientNetworkMessage() argument
H A Dhttp_network_message.cpp27 Http::HttpResponse &response, CURL *handle) in HttpNetworkMessage()
31 response_(response) {} in HttpNetworkMessage()
26 HttpNetworkMessage(std::string requestId, Http::HttpRequestOptions &request, Http::HttpResponse &response, CURL *handle) HttpNetworkMessage() argument
/foundation/communication/netstack/interfaces/innerkits/rust/ylong_http_client/src/reqwest_impl/async_impl/downloader/
H A Dmod.rs29 /// A downloader that can help you download the response body.
61 /// # async fn download_and_show_progress_on_console(response: Response) {
63 /// let mut downloader = Downloader::console(response);
75 /// # async fn download_and_show_progress(response: Response) {
102 /// .body(response)
127 /// # async fn download_and_show_progress_on_console(response: Response) {
129 /// let mut downloader = Downloader::console(response);
133 pub fn console(response: Response) -> Downloader<Console> { in console()
134 Self::builder().body(response).console().build() in console()
163 /// # async fn download_response_body(response
[all...]
/foundation/communication/wifi/wifi/test/wifi_standard/native/
H A Dwifi_c_hid2d_test.cpp100 RecommendChannelResponse response; in HWTEST_F() local
101 Hid2dGetRecommendChannel(&request, &response); in HWTEST_F()
/foundation/communication/connected_nfc_tag/interfaces/inner_api/src/
H A Dnfc_tag_session_proxy.cpp90 ErrCode NfcTagSessionProxy::ReadNdefTag(std::string &response) in ReadNdefTag() argument
114 response = reply.ReadString(); in ReadNdefTag()
/third_party/node/test/parallel/
H A Dtest-inspector-esm.js67 const response = await session.send({
76 assertScopeValues(response, { t: 1001, k: 1, message: 'A message' });
H A Dtest-stream-readable-async-iterators.js810 const server = http.createServer((request, response) => {
811 response.statusCode = 404;
812 response.write('never ends');
817 .on('response', common.mustCall(async (res) => {
856 const server = http.createServer(async (request, response) => {
858 response.statusCode = 200;
860 response.end(JSON.stringify(body));
869 .on('response', async (res) => {
/third_party/node/test/sequential/
H A Dtest-child-process-execsync.js113 const response = execSync(cmd, { cwd });
115 assert.strictEqual(response.toString().trim(), cwd);
/third_party/libcoap/include/coap3/
H A Dcoap_block.h255 * Adds the appropriate part of @p data to the @p response pdu. If blocks are
265 * @param response The response pdu.
274 coap_pdu_t *response,
342 * Associates given data with the @p response pdu that is passed as fourth
352 * Used by a server request handler to create the response.
355 * (Q-)Block2 (response) option with the addition of the Size2 and ETag
376 * @param response The response pdu.
394 coap_pdu_t *response,
[all...]
/third_party/protobuf/conformance/
H A Dbinary_json_conformance_suite.h87 const conformance::ConformanceResponse& response,
90 const conformance::ConformanceResponse& response,
/third_party/protobuf/csharp/src/Google.Protobuf.Conformance/
H A DProgram.cs76 ConformanceResponse response = PerformRequest(request, typeRegistry); in RunTest()
77 byte[] outputData = response.ToByteArray(); in RunTest()
/test/xts/acts/distributed_schedule_lite/system_ability_manager_posix/src/
H A DSendRequestTest.cpp33 MSG_NO, // receiver and no response
34 MSG_RT, // receiver then send response
201 Response response = { in FEATURE_OnMessage() local
205 returnCode = SAMGR_SendResponse(request, &response); in FEATURE_OnMessage()
312 static void DemoHandlerAndCheck(const Request *request, const Response *response) in DemoHandlerAndCheck() argument
318 ASSERT_EQ(strcmp((char *)response->data, responseData), 0); in DemoHandlerAndCheck()
616 * @tc.name : Feature send an asynchronous message and register handler then can receive response
644 auto onHandlerAndCheck = [] (const Request *request, const Response *response) { in HWTEST_F()
649 ASSERT_EQ(strcmp((char *)response->data, responseData), 0); in HWTEST_F()
/third_party/backends/backend/
H A Dhp5590_low.c241 uint8_t response; in hp5590_control_msg() local
389 /* Getting response after data transmission */ in hp5590_control_msg()
390 DBG (DBG_usb, "%s: USB-in-USB: getting response\n", __func__); in hp5590_control_msg()
393 sizeof (response), &response); in hp5590_control_msg()
396 DBG (DBG_err, "%s: USB-in-USB: error getting response\n", __func__); in hp5590_control_msg()
400 /* Necessary response after normal (non-CORE) data is 0x00, in hp5590_control_msg()
404 if (response == needed_response) in hp5590_control_msg()
405 DBG (DBG_usb, "%s: USB-in-USB: got correct response\n", in hp5590_control_msg()
408 if (response ! in hp5590_control_msg()
[all...]
/third_party/skia/src/ports/
H A DSkFontMgr_fuchsia.cpp442 fuchsia::fonts::TypefaceResponse response; in FetchTypeface() local
443 int result = fFontProvider->GetTypeface(std::move(request), &response); in FetchTypeface()
446 // The service may return an empty response if there is no font matching the request. in FetchTypeface()
447 if (response.IsEmpty()) return nullptr; in FetchTypeface()
449 return GetOrCreateTypeface(TypefaceId{response.buffer_id(), response.font_index()}, in FetchTypeface()
450 response.buffer()); in FetchTypeface()
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dresponse.h21 * @file response.h
22 * @brief Methods for managing response objects
31 * Increment response RC. Should this be part of the
35 MHD_increment_response_rc (struct MHD_Response *response);
/foundation/multimedia/drm_framework/frameworks/native/test/common/include/
H A Dhttp.h19 int HttpPost(std::string url, unsigned char *request, uint32_t requestLen, unsigned char *response,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/
H A Dchap.h15 size_t challenge_len, u8 *response);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
H A Dchap.h15 size_t challenge_len, u8 *response);
/foundation/ai/ai_engine/services/server/server_executor/include/
H A Di_sync_task_manager.h32 * @param [out] response Output info.
35 virtual int SyncExecute(IRequest *request, IResponse *&response) = 0;
/foundation/arkui/ace_engine/frameworks/core/components/web/resource/
H A Dweb_client_impl.cpp320 std::shared_ptr<OHOS::NWeb::NWebUrlResourceResponse> response) in OnHttpError()
331 [webClient = webClientWeak, request, response] { in OnHttpError()
338 delegate->OnHttpErrorReceive(request, response); in OnHttpError()
379 std::shared_ptr<OHOS::NWeb::NWebUrlResourceResponse> response) in OnHandleInterceptRequest()
403 response->PutResponseData(data); in OnHandleInterceptRequest()
404 response->PutResponseHeaders(webResponse->GetHeaders()); in OnHandleInterceptRequest()
405 response->PutResponseMimeType(webResponse->GetMimeType()); in OnHandleInterceptRequest()
406 response->PutResponseEncoding(webResponse->GetEncoding()); in OnHandleInterceptRequest()
407 response->PutResponseStateAndStatuscode(webResponse->GetStatusCode(), webResponse->GetReason()); in OnHandleInterceptRequest()
410 response in OnHandleInterceptRequest()
319 OnHttpError(std::shared_ptr<OHOS::NWeb::NWebUrlResourceRequest> request, std::shared_ptr<OHOS::NWeb::NWebUrlResourceResponse> response) OnHttpError() argument
378 OnHandleInterceptRequest(std::shared_ptr<OHOS::NWeb::NWebUrlResourceRequest> request, std::shared_ptr<OHOS::NWeb::NWebUrlResourceResponse> response) OnHandleInterceptRequest() argument
[all...]
/foundation/communication/nfc/services/src/nci_adapter/nci_native_default/src/
H A Dtag_nci_adapter.cpp68 static const uint8_t MIFARE_RESPONSE_LEN = 0x10; // Mifare response len
69 static const uint8_t T2T_ACK_RESPONSE = 0x0A; // T2T ack response
578 bool TagNciAdapter::IsT2TNackRsp(const uint8_t* response, uint32_t responseLen) in IsT2TNackRsp() argument
581 return (response[0] != T2T_ACK_RESPONSE); in IsT2TNackRsp()
586 tNFA_STATUS TagNciAdapter::HandleMfcTransceiveData(std::string& response) in HandleMfcTransceiveData() argument
616 response = KITS::NfcSdkCommon::BytesVecToHexString(data, len); in HandleMfcTransceiveData()
624 int TagNciAdapter::Transceive(const std::string& request, std::string& response) in Transceive() argument
657 ErrorLog("TagNciAdapter::Transceive: wait response timeout transceiveTimeout: %{public}d," in Transceive()
673 status = HandleMfcTransceiveData(response); in Transceive()
675 response in Transceive()
946 ReadNdef(std::string& response) ReadNdef() argument
1680 std::string response; IsNdefFormattable() local
[all...]
/foundation/ai/ai_engine/services/server/plugin/
H A Di_plugin_callback.h38 * @param [in] response Results of encapsulated algorithmic inference.
41 virtual int OnEvent(PluginEvent event, IResponse *response) = 0;
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_hal/unittest/
H A Dmock_wpa_ctrl.h30 void MockSetWpaExpectCmdResponse(const std::string &cmd, const std::string &response);

Completed in 18 milliseconds

1...<<11121314151617181920>>...33