/third_party/node/test/parallel/ |
H A D | test-http-keep-alive-close-on-header.js | 81 }, function(response) { 82 response.on('end', function() { 86 response.resume();
|
H A D | test-crypto-fips.js | 47 const response = buffer.toString(); 48 assert.notStrictEqual(response.length, 0); 51 assert.ok(response.includes(expectedOutput)); 53 const getFipsValue = Number(response);
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
H A D | basicauth.c | 104 * Queues a response to request basic authentication from the client. 105 * The given response object is expected to include the payload for 106 * the response; the "WWW-Authenticate" header will be added and the 107 * response queued with the 'UNAUTHORIZED' status code. 111 * @param response response object to modify and queue 118 struct MHD_Response *response) in MHD_queue_basic_auth_fail_response() 137 ret = MHD_add_response_header (response, in MHD_queue_basic_auth_fail_response() 144 response); in MHD_queue_basic_auth_fail_response() 116 MHD_queue_basic_auth_fail_response(struct MHD_Connection *connection, const char *realm, struct MHD_Response *response) MHD_queue_basic_auth_fail_response() argument
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/ |
H A D | test_termination.c | 74 struct MHD_Response *response = in connection_handler() local 77 int ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in connection_handler() 78 MHD_destroy_response (response); in connection_handler()
|
/base/telephony/ril_adapter/test/unittest/ril_adapter_gtest/ |
H A D | ril_adapter_service_test.cpp | 54 char **response = nullptr; in HWTEST_F() local 59 EXPECT_EQ(base.ConvertHexStringToInt(response, index, len), HRIL_ERR_GENERIC_FAILURE); in HWTEST_F() 138 char response[] = {"213234343345"} ; in HWTEST_F() local 139 size_t responseLen = strlen(response); in HWTEST_F() 140 hRilSms.CBConfigNotify(indType, error, response, responseLen); in HWTEST_F()
|
/base/update/updateservice/services/firmware/utils/src/ |
H A D | firmware_check_analyze_utils.cpp | 38 BlCheckResponse response; in DoAnalyze() local 55 ret += AnalyzeBlVersionCheckResults(root, response); in DoAnalyze() 65 int32_t FirmwareCheckAnalyzeUtils::AnalyzeBlVersionCheckResults(nlohmann::json &root, BlCheckResponse &response) in AnalyzeBlVersionCheckResults() argument 94 response.blVersionCheckResults.push_back(checkResult); in AnalyzeBlVersionCheckResults() 99 response.versionList.push_back(version); in AnalyzeBlVersionCheckResults()
|
/drivers/peripheral/secure_element/vendor_sim_adaptor/ |
H A D | se_vendor_adaptions.h | 50 int32_t getAtr(std::vector<uint8_t>& response);
54 int32_t openLogicalChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
57 int32_t openBasicChannel(const std::vector<uint8_t>& aid, uint8_t p2, std::vector<uint8_t>& response,
63 int32_t transmit(const std::vector<uint8_t>& command, std::vector<uint8_t>& response,
138 std::vector<uint8_t>& response, uint32_t *channelNum, int *status);
|
/kernel/linux/linux-5.10/drivers/staging/greybus/ |
H A D | usb.c | 104 struct gb_usb_hub_control_response *response; in hub_control() local 109 response_size = sizeof(*response) + wLength; in hub_control() 130 /* Greybus core has verified response size */ in hub_control() 131 response = operation->response->payload; in hub_control() 132 memcpy(buf, response->buf, wLength); in hub_control()
|
/kernel/linux/linux-6.6/drivers/staging/greybus/ |
H A D | usb.c | 104 struct gb_usb_hub_control_response *response; in hub_control() local 109 response_size = sizeof(*response) + wLength; in hub_control() 130 /* Greybus core has verified response size */ in hub_control() 131 response = operation->response->payload; in hub_control() 132 memcpy(buf, response->buf, wLength); in hub_control()
|
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/rdma/ |
H A D | ib_user_cm.h | 38 __aligned_u64 response; member 44 __aligned_u64 response; member 52 __aligned_u64 response; member 63 __aligned_u64 response; member 167 __aligned_u64 response; member
|
/third_party/libcoap/examples/riot/examples_libcoap_server/ |
H A D | server-coap.c | 36 coap_pdu_t *response) { in hnd_get_time() 49 coap_pdu_set_code(response, my_clock_base ? COAP_RESPONSE_CODE_CONTENT : in hnd_get_time() 52 coap_add_option(response, COAP_OPTION_CONTENT_FORMAT, in hnd_get_time() 58 coap_add_option(response, COAP_OPTION_MAXAGE, in hnd_get_time() 71 coap_add_data(response, len, buf); in hnd_get_time() 34 hnd_get_time(coap_resource_t *resource, coap_session_t *session, const coap_pdu_t *request, const coap_string_t *query, coap_pdu_t *response) hnd_get_time() argument
|
/third_party/libphonenumber/migrator/src/main/java/com/google/phonenumbers/migrator/ |
H A D | CommandLineMain.java | 127 String response = ""; in printFileReport() 130 while (!response.equals("0")) { in printFileReport() 135 response = scanner.nextLine(); in printFileReport() 136 if (response.equals("1")) { in printFileReport() 138 } else if (response.equals("2")) { in printFileReport()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | importMeta(module=commonjs,target=es5).js | 6 const response = await fetch(new URL("../hamsters.jpg", import.meta.url).toString()); 7 const blob = await response.blob(); 82 var response, blob, size, image;
87 response = _a.sent();
88 return [4 /*yield*/, response.blob()];
|
H A D | importMeta(module=es2020,target=es5).js | 6 const response = await fetch(new URL("../hamsters.jpg", import.meta.url).toString()); 7 const blob = await response.blob(); 80 var response, blob, size, image;
85 response = _a.sent();
86 return [4 /*yield*/, response.blob()];
|
H A D | importMeta(module=esnext,target=es5).js | 6 const response = await fetch(new URL("../hamsters.jpg", import.meta.url).toString()); 7 const blob = await response.blob(); 80 var response, blob, size, image;
85 response = _a.sent();
86 return [4 /*yield*/, response.blob()];
|
/base/print/print_fwk/services/print_service/include/ |
H A D | print_cups_attribute.h | 24 void ParsePrinterAttributes(ipp_t *response, PrinterCapability &printerCaps); 25 bool ParsePrinterStatusAttributes(ipp_t *response, PrinterStatus &status);
|
/third_party/skia/third_party/externals/brotli/scripts/dictionary/ |
H A D | step-01-download-rfc.py | 8 response = urllib2.urlopen('https://tools.ietf.org/rfc/rfc7932.txt') variable 10 text = response.read()
|
/third_party/skia/third_party/externals/microhttpd/src/spdy2http/ |
H A D | proxy.c | 163 struct SPDY_Response *response; member 507 struct SPDY_Response *response, in response_done_callback() 523 SPDY_destroy_response(response); in response_done_callback() 553 if(NULL != proxy->response) return 0; in curl_header_cb() 558 if(NULL == (proxy->response = SPDY_build_response_with_callback(proxy->status, in curl_header_cb() 566 DIE("no response"); in curl_header_cb() 576 proxy->response, in curl_header_cb() 587 SPDY_destroy_response(proxy->response); in curl_header_cb() 588 proxy->response = NULL; in curl_header_cb() 1176 if(proxy->spdy_done || proxy->spdy_error || (NULL == proxy->response in run() 506 response_done_callback(void *cls, struct SPDY_Response *response, struct SPDY_Request *request, enum SPDY_RESPONSE_RESULT status, bool streamopened) response_done_callback() argument [all...] |
/kernel/linux/linux-5.10/arch/powerpc/platforms/powernv/ |
H A D | opal-async.c | 32 struct opal_msg response; member 102 * Mark a DISPATCHED token as ABANDONED so that the response handling in __opal_async_release_token() 151 memcpy(msg, &opal_async_tokens[token].response, sizeof(*msg)); in opal_async_wait_response() 176 * until the response comes. in opal_async_wait_response_interruptible() 205 memcpy(msg, &opal_async_tokens[token].response, sizeof(*msg)); in opal_async_wait_response_interruptible() 234 memcpy(&opal_async_tokens[token].response, comp_msg, sizeof(*comp_msg)); in opal_async_comp_event()
|
/kernel/linux/linux-6.6/arch/powerpc/platforms/powernv/ |
H A D | opal-async.c | 32 struct opal_msg response; member 102 * Mark a DISPATCHED token as ABANDONED so that the response handling in __opal_async_release_token() 151 memcpy(msg, &opal_async_tokens[token].response, sizeof(*msg)); in opal_async_wait_response() 176 * until the response comes. in opal_async_wait_response_interruptible() 205 memcpy(msg, &opal_async_tokens[token].response, sizeof(*msg)); in opal_async_wait_response_interruptible() 234 memcpy(&opal_async_tokens[token].response, comp_msg, sizeof(*comp_msg)); in opal_async_comp_event()
|
/kernel/linux/linux-5.10/drivers/usb/misc/ |
H A D | ezusb.c | 57 int response = ezusb_writememory(dev, cpucs_reg, &reset_bit, 1, WRITE_INT_RAM); in ezusb_set_reset() local 58 if (response < 0) in ezusb_set_reset() 60 __func__, reset_bit, response); in ezusb_set_reset() 61 return response; in ezusb_set_reset()
|
/kernel/linux/linux-5.10/include/linux/greybus/ |
H A D | operation.h | 26 * whether the message is a request (bit clear) or response (bit set) 84 * size); and the response message payload (and size). Note that a 95 struct gb_message *response; member 193 void *response, int response_size, 201 void *response, int response_size) in gb_operation_sync() 204 request, request_size, response, response_size, in gb_operation_sync() 199 gb_operation_sync(struct gb_connection *connection, int type, void *request, int request_size, void *response, int response_size) gb_operation_sync() argument
|
/kernel/linux/linux-6.6/include/linux/greybus/ |
H A D | operation.h | 26 * whether the message is a request (bit clear) or response (bit set) 84 * size); and the response message payload (and size). Note that a 95 struct gb_message *response; member 193 void *response, int response_size, 201 void *response, int response_size) in gb_operation_sync() 204 request, request_size, response, response_size, in gb_operation_sync() 199 gb_operation_sync(struct gb_connection *connection, int type, void *request, int request_size, void *response, int response_size) gb_operation_sync() argument
|
/kernel/linux/linux-6.6/drivers/net/ipa/ |
H A D | ipa_uc.c | 25 * is used to indicate that a response to a request from the AP is available. 32 * before interrupting its peer, which will read the written data in response 49 * @response: response code (microcontroller->AP) 51 * @response_param: response parameter (microcontroller->AP) 73 u8 response; /* enum ipa_uc_response */ member 103 /** enum ipa_uc_response - microcontroller response codes */ 140 /* Microcontroller response IPA interrupt handler */ 146 /* An INIT_COMPLETED response message is sent to the AP by the in ipa_uc_response_hdlr() 154 switch (shared->response) { in ipa_uc_response_hdlr() [all...] |
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
H A D | test_empty_response.c | 50 struct MHD_Response *response; in ahc_echo() local 53 response = MHD_create_response_from_buffer (0, NULL, in ahc_echo() 55 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo() 56 MHD_destroy_response (response); in ahc_echo()
|