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:refCount_
(Results
1 - 5
of
5
) sorted by relevance
/commonlibrary/ets_utils/js_concurrent_module/utils/locks/
H
A
D
async_lock.cpp
115
if (
refCount_
== 0) {
in ProcessPendingLockRequestUnsafe()
245
return ++
refCount_
;
in IncRefCount()
251
uint32_t count = --
refCount_
;
in DecRefCount()
H
A
D
async_lock.h
80
uint32_t
refCount_
= 1;
member in Commonlibrary::Concurrent::LocksModule::AsyncLock
/commonlibrary/ets_utils/js_concurrent_module/taskpool/
H
A
D
task.h
192
std::atomic<uint32_t>
refCount_
{false}; // when
refCount_
is 0, the task pointer can be deleted
H
A
D
task.cpp
104
if (task->IsMainThreadTask() || task->
refCount_
== 0) {
in TaskDestructor()
114
if (task->
refCount_
== 0) {
in TaskDestructor()
1406
refCount_
++; // when tasks are created or executed,
refCount_
will increment
in IncreaseTaskRefCount()
1411
refCount_
--; // when tasks finished,
refCount_
will decrement
in DecreaseTaskRefCount()
/commonlibrary/ets_utils/js_concurrent_module/taskpool/test/
H
A
D
test_taskpool.cpp
4605
task->
refCount_
= 1;
in HWTEST_F()
4608
ASSERT_TRUE(task->
refCount_
== 0);
in HWTEST_F()
Completed in 12 milliseconds