Home
last modified time | relevance | path

Searched refs:AddFileDescriptorWatch (Results 1 – 18 of 18) sorted by relevance

/external/perfetto/src/base/
Dtask_runner_unittest.cc108 TEST_F(TaskRunnerTest, AddFileDescriptorWatch) { in TEST_F() argument
111 task_runner.AddFileDescriptorWatch(evt.fd(), in TEST_F()
123 task_runner.AddFileDescriptorWatch(evt.fd(), in TEST_F()
141 task_runner.AddFileDescriptorWatch(evt.fd(), in TEST_F()
155 task_runner.AddFileDescriptorWatch(evt.fd(), [&task_runner, &evt, &evt2] { in TEST_F()
157 task_runner.AddFileDescriptorWatch(evt2.fd(), in TEST_F()
170 task_runner.AddFileDescriptorWatch(evt.fd(), [&task_runner, &evt, &evt2] { in TEST_F()
175 task_runner.AddFileDescriptorWatch(evt2.fd(), in TEST_F()
190 task_runner.AddFileDescriptorWatch(evt.fd(), [&task_runner, &evt, &evt2] { in TEST_F()
194 task_runner.AddFileDescriptorWatch(evt2.fd(), in TEST_F()
[all …]
Dthread_task_runner.cc126 void ThreadTaskRunner::AddFileDescriptorWatch( in AddFileDescriptorWatch() function in perfetto::base::ThreadTaskRunner
129 task_runner_->AddFileDescriptorWatch(handle, std::move(watch_task)); in AddFileDescriptorWatch()
Dunix_task_runner.cc40 AddFileDescriptorWatch(event_.fd(), [] { in UnixTaskRunner()
269 void UnixTaskRunner::AddFileDescriptorWatch(PlatformHandle fd, in AddFileDescriptorWatch() function in perfetto::base::UnixTaskRunner
Dperiodic_task.cc83 task_runner_->AddFileDescriptorWatch( in Start()
Dunix_socket.cc698 task_runner_->AddFileDescriptorWatch(sock_raw_.watch_handle(), [weak_ptr] { in UnixSocket()
/external/perfetto/src/base/test/
Dtest_task_runner.cc101 void TestTaskRunner::AddFileDescriptorWatch(PlatformHandle fd, in AddFileDescriptorWatch() function in perfetto::base::TestTaskRunner
103 task_runner_.AddFileDescriptorWatch(fd, std::move(callback)); in AddFileDescriptorWatch()
Dtest_task_runner.h48 void AddFileDescriptorWatch(PlatformHandle,
/external/perfetto/include/perfetto/base/
Dtask_runner.h58 virtual void AddFileDescriptorWatch(PlatformHandle,
/external/perfetto/include/perfetto/ext/base/
Dthread_task_runner.h69 void AddFileDescriptorWatch(PlatformHandle, std::function<void()>) override;
Dunix_task_runner.h75 void AddFileDescriptorWatch(PlatformHandle, std::function<void()>) override;
/external/perfetto/src/profiling/memory/
Dmain.cc112 task_runner.AddFileDescriptorWatch(g_dump_evt->fd(), [&producer] { in StartCentralHeapprofd()
Dclient_api_factory_standalone.cc134 task_runner.AddFileDescriptorWatch( in StartHeapprofdIfStatic()
/external/perfetto/src/traced/probes/
Dkmem_activity_trigger.cc117 task_runner_->AddFileDescriptorWatch(scoped_fd.get(), [weak_this, cpu] { in ArmFtraceFDWatches()
/external/perfetto/src/traced/probes/android_log/
Dandroid_log_data_source.cc187 task_runner_->AddFileDescriptorWatch(logdr_sock_.fd(), [weak_this] { in EnableSocketWatchTask()
/external/perfetto/src/traced/probes/ftrace/
Dftrace_controller_unittest.cc65 MOCK_METHOD2(AddFileDescriptorWatch, void(int fd, std::function<void()>));
/external/perfetto/src/tracing/internal/
Dtracing_muxer_impl.cc81 void AddFileDescriptorWatch(base::PlatformHandle fd, in AddFileDescriptorWatch() function in perfetto::internal::__anonbbd249c00111::NonReentrantTaskRunner
84 [&] { task_runner_->AddFileDescriptorWatch(fd, std::move(callback)); }); in AddFileDescriptorWatch()
/external/perfetto/src/perfetto_cmd/
Dperfetto_cmd.cc950 task_runner_.AddFileDescriptorWatch(ctrl_c_evt_.fd(), [this] { in SetupCtrlCSignalHandler()
/external/perfetto/test/
Dend_to_end_integrationtest.cc822 helper.producer_thread()->get()->AddFileDescriptorWatch( in TEST_F()