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:mutex_
(Results
1 - 21
of
21
) sorted by relevance
/commonlibrary/c_utils/base/include/
H
A
D
safe_map.h
45
std::lock_guard<std::mutex> lock(
mutex_
);
in operator =()
53
std::lock_guard<std::mutex> lock(
mutex_
);
in ReadVal()
60
std::lock_guard<std::mutex> lock(
mutex_
);
in ChangeValueByLambda()
73
std::lock_guard<std::mutex> lock(
mutex_
);
in Size()
89
std::lock_guard<std::mutex> lock(
mutex_
);
in IsEmpty()
103
std::lock_guard<std::mutex> lock(
mutex_
);
in Insert()
118
std::lock_guard<std::mutex> lock(
mutex_
);
in EnsureInsert()
140
std::lock_guard<std::mutex> lock(
mutex_
);
in Find()
163
std::lock_guard<std::mutex> lock(
mutex_
);
in FindOldAndSetNew()
184
std::lock_guard<std::mutex> lock(
mutex_
);
in Erase()
217
mutable std::mutex
mutex_
;
global()
member in OHOS::SafeMap
[all...]
H
A
D
safe_queue.h
53
std::lock_guard<std::mutex> lock(
mutex_
);
in Erase()
64
std::lock_guard<std::mutex> lock(
mutex_
);
in Empty()
70
std::lock_guard<std::mutex> lock(
mutex_
);
in Push()
76
std::lock_guard<std::mutex> lock(
mutex_
);
in Clear()
86
std::lock_guard<std::mutex> lock(
mutex_
);
in Size()
92
std::lock_guard<std::mutex> lock(
mutex_
);
in Pop()
101
std::mutex
mutex_
;
member in OHOS::SafeQueueInner
114
using SafeQueueInner<T>::
mutex_
;
147
using SafeQueueInner<T>::
mutex_
;
H
A
D
singleton.h
113
static std::mutex
mutex_
; // Mutex, which guarantees that only one thread is accessing a common resource at any time.
member in OHOS::DelayedSingleton
120
std::mutex DelayedSingleton<T>::
mutex_
;
member in OHOS::DelayedSingleton
126
std::lock_guard<std::mutex> lock(
mutex_
);
in GetInstance()
139
std::lock_guard<std::mutex> lock(
mutex_
);
in DestroyInstance()
168
static std::mutex
mutex_
;
member in OHOS::DelayedRefSingleton
175
std::mutex DelayedRefSingleton<T>::
mutex_
;
member in OHOS::DelayedRefSingleton
181
std::lock_guard<std::mutex> lock(
mutex_
);
in GetInstance()
H
A
D
semaphore_ex.h
84
std::mutex
mutex_
;
member in OHOS::Semaphore
H
A
D
observer.h
109
std::mutex
mutex_
;
member in OHOS::Observable
H
A
D
thread_pool.h
107
std::mutex
mutex_
;
member in OHOS::ThreadPool
H
A
D
io_event_reactor.h
99
std::mutex
mutex_
;
member in OHOS::Utils::IOEventReactor
H
A
D
timer.h
146
std::mutex
mutex_
;
member in OHOS::Utils::Timer
/commonlibrary/c_utils/base/src/
H
A
D
observer.cpp
28
lock_guard<mutex> lock(
mutex_
);
in AddObserver()
38
lock_guard<mutex> lock(
mutex_
);
in RemoveObserver()
44
lock_guard<mutex> lock(
mutex_
);
in RemoveAllObservers()
55
lock_guard<mutex> lock(
mutex_
);
in GetObserversCount()
68
lock_guard<mutex> lock(
mutex_
);
in NotifyObservers()
H
A
D
thread_pool.cpp
64
std::unique_lock<std::mutex> lock(
mutex_
);
in Stop()
79
std::unique_lock<std::mutex> lock(
mutex_
);
in AddTask()
91
std::unique_lock<std::mutex> lock(
mutex_
);
in GetCurTaskNum()
98
std::unique_lock<std::mutex> lock(
mutex_
);
in ScheduleTask()
H
A
D
semaphore_ex.cpp
31
std::unique_lock<std::mutex> lck(
mutex_
);
in Wait()
39
std::unique_lock<mutex> lck(
mutex_
);
in Post()
H
A
D
event_reactor.cpp
65
std::lock_guard<std::recursive_mutex> lock(
mutex_
);
in CleanUp()
100
std::lock_guard<std::recursive_mutex> lock(
mutex_
);
in ScheduleTimer()
117
std::lock_guard<std::recursive_mutex> lock(
mutex_
);
in CancelTimer()
H
A
D
io_event_reactor.cpp
92
std::lock_guard<std::mutex> lock(
mutex_
);
in AddHandler()
151
std::lock_guard<std::mutex> lock(
mutex_
);
in RemoveHandler()
193
std::lock_guard<std::mutex> lock(
mutex_
);
in FindHandler()
237
std::lock_guard<std::mutex> lock(
mutex_
);
in HandleEvents()
286
std::lock_guard<std::mutex> lock(
mutex_
);
in Run()
334
std::lock_guard<std::mutex> lock(
mutex_
);
in CleanUp()
353
std::lock_guard<std::mutex> lock(
mutex_
);
in Clean()
H
A
D
timer.cpp
59
std::lock_guard<std::mutex> lock(
mutex_
);
in Shutdown()
84
std::lock_guard<std::mutex> lock(
mutex_
);
in Register()
117
std::lock_guard<std::mutex> lock(
mutex_
);
in Unregister()
182
std::lock_guard<std::mutex> lock(
mutex_
);
in OnTimer()
241
std::lock_guard<std::mutex> lock(
mutex_
);
in EraseUnusedTimerId()
H
A
D
event_demultiplexer.cpp
39
: epollFd_(epoll_create1(EPOLL_CLOEXEC)), maxEvents_(EPOLL_MAX_EVENS_INIT),
mutex_
(), eventHandlers_()
in EventDemultiplexer()
73
std::lock_guard<std::recursive_mutex> lock(
mutex_
);
in UpdateEventHandler()
129
std::lock_guard<std::recursive_mutex> lock(
mutex_
);
in Polling()
H
A
D
event_demultiplexer.h
50
std::recursive_mutex
mutex_
;
member in OHOS::Utils::EventDemultiplexer
51
std::map<int, std::shared_ptr<EventHandler>> eventHandlers_; // guard by
mutex_
H
A
D
event_reactor.h
76
std::recursive_mutex
mutex_
;
member in OHOS::Utils::EventReactor
/commonlibrary/c_utils/base/test/benchmarktest/event_benchmark_test/
H
A
D
event_benchmark_test.cpp
752
std::mutex
mutex_
;
member in OHOS::__anon12::Timer
842
std::lock_guard<std::mutex> lock(
mutex_
);
in Register()
887
std::lock_guard<std::mutex> lock(
mutex_
);
in Unregister()
/commonlibrary/c_utils/base/test/unittest/common/
H
A
D
utils_event_test.cpp
622
std::mutex
mutex_
;
member in OHOS::__anon33::Timer
703
std::lock_guard<std::mutex> lock(
mutex_
);
in Register()
748
std::lock_guard<std::mutex> lock(
mutex_
);
in Unregister()
H
A
D
utils_refbase_test.cpp
229
std::mutex
mutex_
;
member in OHOS::__anon38::IPCProcessSkeleton
255
std::lock_guard<std::mutex> lockGuard(
mutex_
);
in FindOrNewObject()
271
std::lock_guard<std::mutex> lockGuard(
mutex_
);
in DetachObject()
/commonlibrary/c_utils/base/test/benchmarktest/refbase_benchmark_test/
H
A
D
refbase_benchmark_test.cpp
262
std::mutex
mutex_
;
member in OHOS::__anon17::IPCProcessSkeleton
291
std::lock_guard<std::mutex> lockGuard(
mutex_
);
in FindOrNewObject()
307
std::lock_guard<std::mutex> lockGuard(
mutex_
);
in DetachObject()
Completed in 14 milliseconds