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:thread_
(Results
1 - 6
of
6
) sorted by relevance
/commonlibrary/c_utils/base/src/
H
A
D
thread_ex.cpp
98
:
thread_
(INVALID_PTHREAD_T), status_(ThreadStatus::OK), exitPending_(false), running_(false)
in Thread()
116
thread_
= INVALID_PTHREAD_T;
in Start()
125
bool res = CreatePThread(para, stack, &
thread_
);
in Start()
129
thread_
= INVALID_PTHREAD_T;
in Start()
139
if (pthread_equal(
thread_
, pthread_self()) != 0) {
in NotifyExitSync()
200
self->
thread_
= INVALID_PTHREAD_T;
in ThreadStart()
H
A
D
timer.cpp
40
if (
thread_
.joinable()) { // avoid double assign to an active thread
in Setup()
45
thread_
.swap(loop_thread);
in Setup()
52
if (!
thread_
.joinable()) {
in Shutdown()
71
thread_
.detach();
in Shutdown()
76
thread_
.detach();
in Shutdown()
79
thread_
.join();
in Shutdown()
/commonlibrary/c_utils/base/include/
H
A
D
thread_ex.h
126
pthread_t GetThread() const { return
thread_
; }
in GetThread()
137
pthread_t
thread_
; // Thread ID
member in OHOS::Thread
H
A
D
timer.h
47
* `
thread_
` must be guaranteed.
143
std::thread
thread_
;
member in OHOS::Utils::Timer
/commonlibrary/c_utils/base/test/benchmarktest/event_benchmark_test/
H
A
D
event_benchmark_test.cpp
750
std::thread
thread_
;
member in OHOS::__anon12::Timer
777
if (
thread_
.joinable()) { // avoid double assign to an active thread
in Setup()
789
thread_
.swap(loopThread);
in Setup()
797
if (!
thread_
.joinable()) {
in Shutdown()
806
thread_
.detach();
in Shutdown()
809
thread_
.join();
in Shutdown()
/commonlibrary/c_utils/base/test/unittest/common/
H
A
D
utils_event_test.cpp
620
std::thread
thread_
;
member in OHOS::__anon33::Timer
643
if (
thread_
.joinable()) { // avoid double assign to an active thread
in Setup()
655
thread_
.swap(loopThread);
in Setup()
662
if (!
thread_
.joinable()) {
in Shutdown()
671
thread_
.detach();
in Shutdown()
674
thread_
.join();
in Shutdown()
Completed in 6 milliseconds