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:epollMgr_
(Results
1 - 4
of
4
) sorted by relevance
/foundation/multimodalinput/input/intention/services/device_manager/src/
H
A
D
device_manager.cpp
103
epollMgr_
= std::make_shared<EpollManager>();
in OnEnable()
104
int32_t ret =
epollMgr_
->Open();
in OnEnable()
112
ret =
epollMgr_
->Add(monitor_);
in OnEnable()
123
epollMgr_
.reset();
in OnEnable()
142
CHKPR(
epollMgr_
, RET_ERR);
in OnDisable()
143
epollMgr_
->Remove(monitor_);
in OnDisable()
145
epollMgr_
.reset();
in OnDisable()
289
ev.data.ptr =
epollMgr_
.get();
in OnEpollDispatch()
291
CHKPR(
epollMgr_
, RET_ERR);
in OnEpollDispatch()
292
epollMgr_
in OnEpollDispatch()
[all...]
/foundation/multimodalinput/input/intention/services/device_manager/include/
H
A
D
device_manager.h
93
std::shared_ptr<EpollManager>
epollMgr_
{ nullptr };
100
return (
epollMgr_
!= nullptr ?
epollMgr_
->GetFd() : -1);
in GetFd()
/foundation/multimodalinput/input/intention/ipc/socket/include/
H
A
D
socket_session_manager.h
75
EpollManager
epollMgr_
;
member in OHOS::Msdp::DeviceStatus::final
83
return
epollMgr_
.GetFd();
in GetFd()
/foundation/multimodalinput/input/intention/ipc/socket/src/
H
A
D
socket_session_manager.cpp
40
return
epollMgr_
.Open();
in Init()
84
if (
epollMgr_
.Add(*session) != RET_OK) {
in AllocSocketFd()
139
int32_t cnt =
epollMgr_
.WaitTimeout(evs, MAX_EPOLL_EVENTS, 0);
in DispatchOne()
161
epollMgr_
.Remove(*session);
in ReleaseSession()
178
epollMgr_
.Remove(*session);
in ReleaseSessionByPid()
Completed in 2 milliseconds