Home
last modified time | relevance | path

Searched refs:IOEventLoop (Results 1 – 17 of 17) sorted by relevance

/system/extras/simpleperf/
DIOEventLoop.cpp25 IOEventLoop* loop;
31 IOEvent(IOEventLoop* loop, const std::function<bool()>& callback) in IOEvent()
42 IOEventLoop::IOEventLoop() in IOEventLoop() function in IOEventLoop
45 IOEventLoop::~IOEventLoop() { in ~IOEventLoop()
52 bool IOEventLoop::UsePreciseTimer() { in UsePreciseTimer()
60 bool IOEventLoop::EnsureInit() { in EnsureInit()
95 void IOEventLoop::EventCallbackFn(int, int16_t, void* arg) { in EventCallbackFn()
112 IOEventRef IOEventLoop::AddReadEvent(int fd, in AddReadEvent()
120 IOEventRef IOEventLoop::AddWriteEvent(int fd, in AddWriteEvent()
128 bool IOEventLoop::AddSignalEvent(int sig, in AddSignalEvent()
[all …]
DIOEventLoop_test.cpp27 TEST(IOEventLoop, read) { in TEST() argument
30 IOEventLoop loop; in TEST()
66 TEST(IOEventLoop, write) { in TEST() argument
69 IOEventLoop loop; in TEST()
102 TEST(IOEventLoop, signal) { in TEST() argument
103 IOEventLoop loop; in TEST()
129 IOEventLoop loop; in TestPeriodicEvents()
151 TEST(IOEventLoop, periodic) { in TEST() argument
155 TEST(IOEventLoop, periodic_precise) { in TEST() argument
159 TEST(IOEventLoop, read_and_del_event) { in TEST() argument
[all …]
DIOEventLoop.h34 class IOEventLoop {
36 IOEventLoop();
37 ~IOEventLoop();
Dworkload_test.cpp26 IOEventLoop loop; in TEST()
45 IOEventLoop loop; in run_signaled_workload()
66 IOEventLoop loop; in run_exit_nonzero_workload()
DRecordReadThread.h141 bool RegisterDataCallback(IOEventLoop& loop, const std::function<bool()>& data_callback);
172 bool HandleCmd(IOEventLoop& loop);
173 bool HandleAddEventFds(IOEventLoop& loop, const std::vector<EventFd*>& event_fds);
DRecordReadThread_test.cpp129 MOCK_METHOD2(StartPolling, bool(IOEventLoop&, const std::function<bool()>&));
255 IOEventLoop loop; in TEST_F()
274 IOEventLoop loop; in TEST_F()
309 IOEventLoop loop; in TEST_F()
360 IOEventLoop loop; in TEST_F()
388 IOEventLoop loop; in TEST_F()
429 IOEventLoop loop; in TEST_F()
505 IOEventLoop loop; in TEST_F()
Devent_selection_set.h156 IOEventLoop* GetIOEventLoop() { in GetIOEventLoop()
212 std::unique_ptr<IOEventLoop> loop_;
DJITDebugReader.cpp263 bool JITDebugReader::RegisterDebugInfoCallback(IOEventLoop* loop, in RegisterDebugInfoCallback()
268 return (read_event_ != nullptr && IOEventLoop::DisableEvent(read_event_)); in RegisterDebugInfoCallback()
276 if (!IOEventLoop::EnableEvent(read_event_)) { in MonitorProcess()
335 if (!IOEventLoop::DisableEvent(read_event_)) { in ReadAllProcesses()
355 return IOEventLoop::EnableEvent(read_event_); in ReadAllProcesses()
Devent_fd.h106 virtual bool StartPolling(IOEventLoop& loop, const std::function<bool()>& callback);
Devent_fd.cpp323 bool EventFd::StartPolling(IOEventLoop& loop, in StartPolling()
329 bool EventFd::StopPolling() { return IOEventLoop::DelEvent(ioevent_ref_); } in StopPolling()
DRecordReadThread.cpp241 bool RecordReadThread::RegisterDataCallback(IOEventLoop& loop, in RegisterDataCallback()
322 IOEventLoop loop; in RunReadThread()
344 bool RecordReadThread::HandleCmd(IOEventLoop& loop) { in HandleCmd()
373 bool RecordReadThread::HandleAddEventFds(IOEventLoop& loop, in HandleAddEventFds()
DJITDebugReader.h118 bool RegisterDebugInfoCallback(IOEventLoop* loop, const debug_info_callback_t& callback);
Dcmd_record.cpp329 bool ProcessControlCmd(IOEventLoop* loop);
533 IOEventLoop* loop = event_selection_set_.GetIOEventLoop(); in PrepareRecording()
1437 bool RecordCommand::ProcessControlCmd(IOEventLoop* loop) { in ProcessControlCmd()
DAndroid.bp278 "IOEventLoop.cpp",
Devent_selection_set.cpp156 : for_stat_cmd_(for_stat_cmd), loop_(new IOEventLoop) {} in EventSelectionSet()
Dcmd_stat.cpp560 IOEventLoop* loop = event_selection_set_.GetIOEventLoop(); in Run()
Denvironment.cpp708 IOEventLoop loop; in RunCmdInApp()