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:next_
(Results
1 - 3
of
3
) sorted by relevance
/commonlibrary/c_utils/base/src/
H
A
D
io_event_handler.cpp
25
:prev_(nullptr),
next_
(nullptr), fd_(IO_EVENT_INVALID_FD), events_(Events::EVENT_NONE),
in IOEventHandler()
29
:prev_(nullptr),
next_
(nullptr), fd_(fd), events_(events), cb_(cb), enabled_(false) {}
in IOEventHandler()
34
prev_->
next_
=
next_
;
in ~IOEventHandler()
37
if (
next_
!= nullptr) {
in ~IOEventHandler()
38
next_
->prev_ = prev_;
in ~IOEventHandler()
42
next_
= nullptr;
in ~IOEventHandler()
H
A
D
io_event_reactor.cpp
57
target->
next_
= h->
next_
;
in InsertNodeFront()
59
if (h->
next_
!= nullptr) {
in InsertNodeFront()
60
h->
next_
->prev_ = target;
in InsertNodeFront()
62
h->
next_
= target;
in InsertNodeFront()
67
target->prev_->
next_
= target->
next_
;
in RemoveNode()
69
if (target->
next_
!= nullptr) {
in RemoveNode()
70
target->
next_
->prev_ = target->prev_;
in RemoveNode()
74
target->
next_
in RemoveNode()
[all...]
/commonlibrary/c_utils/base/include/
H
A
D
io_event_handler.h
77
return
next_
;
in Next()
91
IOEventHandler*
next_
;
member in OHOS::Utils::IOEventHandler
Completed in 2 milliseconds