Home
last modified time | relevance | path

Searched refs:response_string (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/cronet/net/dns/
H A Ddns_response_fuzzer.cc82 std::string response_string = data_provider.ConsumeRandomLengthString(); in LLVMFuzzerTestOneInput() local
85 base::MakeRefCounted<net::IOBufferWithSize>(response_string.size()); in LLVMFuzzerTestOneInput()
86 memcpy(response_packet->data(), response_string.data(), in LLVMFuzzerTestOneInput()
87 response_string.size()); in LLVMFuzzerTestOneInput()
89 net::DnsResponse received_response(response_packet, response_string.size()); in LLVMFuzzerTestOneInput()
90 received_response.InitParseWithoutQuery(response_string.size()); in LLVMFuzzerTestOneInput()
102 response_string.size()); in LLVMFuzzerTestOneInput()
103 received_response_with_query.InitParse(response_string.size(), query); in LLVMFuzzerTestOneInput()
/aosp_15_r20/external/libchrome/mojo/public/cpp/bindings/tests/
H A Drouter_test_util.cc75 std::string response_string(request_string); in SendResponse() local
76 response_string += " world!"; in SendResponse()
77 AllocResponseMessage(name, response_string.c_str(), request_id, &response); in SendResponse()
/aosp_15_r20/external/openscreen/cast/receiver/channel/
H A Ddevice_auth_namespace_handler.cc146 std::string response_string; in OnMessage() local
147 response_auth_message.SerializeToString(&response_string); in OnMessage()
153 response.set_payload_binary(std::move(response_string)); in OnMessage()
/aosp_15_r20/packages/apps/Nfc/testutils/pn532/
Dcasimir.py183 response_string = json.loads(response_data)
184 return json.loads(response_string)
/aosp_15_r20/external/libchrome/dbus/
H A Dend_to_end_async_unittest.cc191 std::string response_string; in OnResponse() local
192 ASSERT_TRUE(reader.PopString(&response_string)); in OnResponse()
193 response_strings_.push_back(response_string); in OnResponse()