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:Reactor
(Results
1 - 6
of
6
) sorted by relevance
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/include/
H
A
D
reactor.h
25
typedef struct
Reactor
Reactor
;
typedef
32
* @brief Perform instantiation of the
Reactor
.
33
* Succeed return
Reactor
instantiation, failed return NULL.
36
* @return
Reactor
pointer.
39
Reactor
*ReactorCreate();
42
* @brief Destroy instantiation of the
Reactor
.
44
* @param reactor
Reactor
pointer.
47
void ReactorDelete(
Reactor
*reactor);
50
* @brief
Reactor
star
[all...]
H
A
D
thread.h
71
* @brief Get Thread
Reactor
.
74
* @return
Reactor
of thread
77
Reactor
*ThreadGetReactor(const Thread *thread);
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/linux/
H
A
D
reactor_linux.c
27
typedef struct
Reactor
{
struct
40
Reactor
*reactor;
56
void ReactorSetThreadId(
Reactor
*reactor, unsigned long threadId)
in ReactorSetThreadId()
61
Reactor
*ReactorCreate()
in ReactorCreate()
63
Reactor
*reactor = (
Reactor
*)calloc(1, sizeof(
Reactor
));
in ReactorCreate()
106
void ReactorDelete(
Reactor
*reactor)
in ReactorDelete()
119
int32_t ReactorStart(
Reactor
*reactor)
in ReactorStart()
175
void ReactorStop(const
Reactor
*reacto
[all...]
H
A
D
thread_linux.c
38
Reactor
*reactor;
82
LOG_ERROR("ThreadStartFunc:
Reactor
run failed.");
in ThreadStartFunc()
87
// Execute all remain tasks in queue after stop
Reactor
.
in ThreadStartFunc()
205
Reactor
*ThreadGetReactor(const Thread *thread)
in ThreadGetReactor()
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/hci/
H
A
D
hci.c
99
Reactor
*reactor = ThreadGetReactor(g_hciTxThread);
in HciInitQueue()
108
Reactor
*reactor = ThreadGetReactor(BTM_GetProcessingThread());
in HciInitQueue()
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/btm/
H
A
D
btm_thread.c
76
Reactor
*reactor = ThreadGetReactor(g_processingThread);
in AllocProcessingQueue()
Completed in 3 milliseconds