Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:EventReactor
(Results
1 - 9
of
9
) sorted by relevance
/commonlibrary/c_utils/base/src/
H
A
D
event_reactor.h
34
class
EventReactor
{
class
43
EventReactor
();
44
EventReactor
(const
EventReactor
&) = delete;
45
EventReactor
& operator=(const
EventReactor
&) = delete;
46
EventReactor
(const
EventReactor
&&) = delete;
47
EventReactor
& operator=(const
EventReactor
[all...]
H
A
D
event_reactor.cpp
29
EventReactor
::
EventReactor
()
in EventReactor()
function in OHOS::Utils::EventReactor
34
EventReactor
::~
EventReactor
()
in ~EventReactor()
38
void
EventReactor
::UpdateEventHandler(EventHandler* handler)
in UpdateEventHandler()
47
uint32_t
EventReactor
::SetUp()
in SetUp()
63
void
EventReactor
::CleanUp()
in CleanUp()
71
void
EventReactor
::RunLoop(int timeout) const
in RunLoop()
88
void
EventReactor
::SwitchOn()
in SwitchOn()
93
void
EventReactor
[all...]
H
A
D
event_handler.cpp
23
EventHandler::EventHandler(int fd,
EventReactor
* r)
in EventHandler()
24
:fd_(fd), events_(
EventReactor
::NONE_EVENT), reactor_(r)
in EventHandler()
30
events_ |=
EventReactor
::READ_EVENT;
in EnableRead()
36
events_ =
EventReactor
::NONE_EVENT;
in DisableAll()
42
if (events & (
EventReactor
::READ_EVENT)) {
in HandleEvents()
H
A
D
event_handler.h
28
class
EventReactor
;
34
EventHandler(int fd,
EventReactor
* r);
48
const
EventReactor
* GetEventReactor() const { return reactor_; }
in GetEventReactor()
60
EventReactor
* reactor_;
H
A
D
event_demultiplexer.cpp
80
if (handler->Events() ==
EventReactor
::NONE_EVENT) {
in UpdateEventHandler()
157
return
EventReactor
::READ_EVENT;
in Epoll2Reactor()
160
return
EventReactor
::NONE_EVENT;
in Epoll2Reactor()
166
case
EventReactor
::NONE_EVENT:
in Reactor2Epoll()
168
case
EventReactor
::READ_EVENT:
in Reactor2Epoll()
H
A
D
timer_event_handler.h
27
class
EventReactor
;
33
TimerEventHandler(
EventReactor
* p, uint32_t timeout, bool once);
H
A
D
timer_event_handler.cpp
32
TimerEventHandler::TimerEventHandler(
EventReactor
* p, uint32_t timeout /* ms */, bool once)
in TimerEventHandler()
H
A
D
timer.cpp
29
reactor_(new
EventReactor
())
in Timer()
/commonlibrary/c_utils/base/include/
H
A
D
timer.h
30
class
EventReactor
;
144
EventReactor
*reactor_;
Completed in 3 milliseconds