Home
last modified time | relevance | path

Searched refs:async_stop_closure (Results 1 – 3 of 3) sorted by relevance

/external/perfetto/include/perfetto/tracing/internal/
Dtrack_event_data_source.h51 auto closure = std::move(async_stop_closure); in HandleStopAsynchronously()
52 async_stop_closure = std::function<void()>(); in HandleStopAsynchronously()
56 mutable std::function<void()> async_stop_closure; variable
252 inner_stop_args.async_stop_closure = [internal_instance_index,
262 if (inner_stop_args.async_stop_closure)
263 std::move(inner_stop_args.async_stop_closure)();
/external/perfetto/src/tracing/internal/
Dtracing_muxer_impl.cc121 auto closure = std::move(async_stop_closure); in HandleStopAsynchronously()
122 async_stop_closure = std::function<void()>(); in HandleStopAsynchronously()
126 mutable std::function<void()> async_stop_closure; member in perfetto::internal::__anon3be2c9c50111::StopArgsImpl
1519 stop_args.async_stop_closure = [this, backend_id, backend_connection_id, in StopDataSource_AsyncBeginImpl()
1547 if (stop_args.async_stop_closure) in StopDataSource_AsyncBeginImpl()
1548 std::move(stop_args.async_stop_closure)(); in StopDataSource_AsyncBeginImpl()
/external/perfetto/src/tracing/test/
Dapi_integrationtest.cc286 std::function<void()> async_stop_closure; member
942 handle_->async_stop_closure = args.HandleStopAsynchronously(); in OnStop()
4050 EXPECT_TRUE(data_source->async_stop_closure); in TEST_P()
4051 data_source->async_stop_closure(); in TEST_P()
5888 data_source->async_stop_closure(); in TEST_P()