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:sleepTime
(Results
1 - 4
of
4
) sorted by relevance
/commonlibrary/c_utils/base/test/unittest/common/
H
A
D
utils_timer_test.cpp
133
int
sleepTime
= 30;
in TestTimerEvent()
local
134
std::this_thread::sleep_for(std::chrono::milliseconds(
sleepTime
));
in TestTimerEvent()
223
int
sleepTime
= 10;
in TimerEventFun()
local
226
std::this_thread::sleep_for(std::chrono::milliseconds(
sleepTime
));
in TimerEventFun()
251
int
sleepTime
= 10;
in SleepLoopFunc()
local
255
std::this_thread::sleep_for(std::chrono::milliseconds(
sleepTime
));
in SleepLoopFunc()
H
A
D
utils_event_test.cpp
972
int
sleepTime
= 30;
in TestTimerEvent()
local
973
std::this_thread::sleep_for(std::chrono::milliseconds(
sleepTime
));
in TestTimerEvent()
1042
int
sleepTime
= 10;
in SleepLoop()
local
1045
std::this_thread::sleep_for(std::chrono::milliseconds(
sleepTime
));
in SleepLoop()
1056
int
sleepTime
= 10;
in TimerEvent()
local
1059
std::this_thread::sleep_for(std::chrono::milliseconds(
sleepTime
));
in TimerEvent()
/commonlibrary/c_utils/base/test/fuzztest/timer_fuzzer/
H
A
D
timer_fuzzer.cpp
45
uint32_t
sleepTime
= dataProvider->ConsumeIntegralInRange<uint32_t>(0, MAX_TIME_MS);
46
std::this_thread::sleep_for(std::chrono::milliseconds(
sleepTime
));
48
sleepTime
, g_data.load(std::memory_order_relaxed));
/commonlibrary/ets_utils/js_concurrent_module/taskpool/test/
H
A
D
test.cpp
902
uint32_t
sleepTime
= 50000; // 50000: is sleep 50ms
in WorkerConstructor()
local
904
usleep(
sleepTime
);
in WorkerConstructor()
Completed in 5 milliseconds