Home
last modified time | relevance | path

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

/external/perfetto/src/tracing/ipc/consumer/
Dconsumer_ipc_client_impl.cc88 ipc::Deferred<protos::gen::EnableTracingResponse> async_response; in EnableTracing() local
90 async_response.Bind( in EnableTracing()
99 consumer_port_.EnableTracing(req, std::move(async_response), *fd); in EnableTracing()
109 ipc::Deferred<protos::gen::ChangeTraceConfigResponse> async_response; in ChangeTraceConfig() local
110 async_response.Bind( in ChangeTraceConfig()
117 consumer_port_.ChangeTraceConfig(req, std::move(async_response)); in ChangeTraceConfig()
126 ipc::Deferred<protos::gen::StartTracingResponse> async_response; in StartTracing() local
127 async_response.Bind( in StartTracing()
133 consumer_port_.StartTracing(req, std::move(async_response)); in StartTracing()
142 ipc::Deferred<protos::gen::DisableTracingResponse> async_response; in DisableTracing() local
[all …]
/external/perfetto/src/tracing/ipc/producer/
Dproducer_ipc_client_impl.cc321 ipc::Deferred<protos::gen::RegisterDataSourceResponse> async_response; in RegisterDataSource() local
322 async_response.Bind( in RegisterDataSource()
327 producer_port_.RegisterDataSource(req, std::move(async_response)); in RegisterDataSource()
378 ipc::Deferred<protos::gen::CommitDataResponse> async_response; in CommitData() local
382 async_response.Bind( in CommitData()
391 producer_port_.CommitData(req, std::move(async_response)); in CommitData()
/external/llvm-project/lldb/unittests/Process/gdb-remote/
DGDBRemoteClientBaseTest.cpp135 StringExtractorGDBRemote continue_response, async_response, response; in TEST_F() local
151 return client.SendPacketAndWaitForResponse("qTest2", async_response, in TEST_F()
167 ASSERT_EQ("QTest2", async_response.GetStringRef()); in TEST_F()
235 StringExtractorGDBRemote continue_response, async_response, response; in TEST_F() local
264 return client.SendPacketAndWaitForResponse("qTest", async_response, in TEST_F()
271 ASSERT_EQ("QTest", async_response.GetStringRef()); in TEST_F()
/external/crosvm/devices/src/virtio/video/
Dworker.rs90 VideoEvtResponseType::AsyncCmd(async_response) => { in write_event_responses()
94 } = async_response; in write_event_responses()
182 for async_response in async_responses { in handle_command_desc()
186 } = async_response; in handle_command_desc()
/external/crosvm/devices/src/virtio/video/decoder/
Dmod.rs210 while let Some(async_response) = self.output_pending_picture() { in output_pending_pictures()
211 responses.push(VideoEvtResponseType::AsyncCmd(async_response)); in output_pending_pictures()
980 let async_response = AsyncCmdResponse::from_response( in process_event() localVariable
992 vec![AsyncCmd(async_response)] in process_event()