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:CONVERSION_FACTOR
(Results
1 - 5
of
5
) sorted by relevance
/foundation/ability/form_fwk/services/src/
H
A
D
form_serial_queue.cpp
25
constexpr uint32_t
CONVERSION_FACTOR
= 1000; // ms to us
member
41
if (ms > (std::numeric_limits<uint64_t>::max() /
CONVERSION_FACTOR
)) {
in ScheduleTask()
46
task_handle task_handle = queue_.submit_h(func, task_attr().delay(ms *
CONVERSION_FACTOR
));
in ScheduleTask()
60
task_handle task_handle = queue_.submit_h(func, task_attr().delay(ms *
CONVERSION_FACTOR
));
in ScheduleDelayTask()
/foundation/ability/form_fwk/services/form_render_service/src/
H
A
D
form_render_serial_queue.cpp
26
constexpr uint32_t
CONVERSION_FACTOR
= 1000; // ms to us
member
42
if (ms > (std::numeric_limits<uint64_t>::max() /
CONVERSION_FACTOR
)) {
in ScheduleTask()
47
task_handle task_handle = queue_.submit_h(func, task_attr().delay(ms *
CONVERSION_FACTOR
));
in ScheduleTask()
61
task_handle task_handle = queue_.submit_h(func, task_attr().delay(ms *
CONVERSION_FACTOR
));
in ScheduleDelayTask()
/foundation/systemabilitymgr/samgr/services/samgr/native/source/
H
A
D
ffrt_handler.cpp
26
constexpr uint64_t
CONVERSION_FACTOR
= 1000; // ms to us
member
69
if (delayTime > std::numeric_limits<uint64_t>::max() /
CONVERSION_FACTOR
) {
in PostTask()
73
task_handle handler = queue_->submit_h(func, task_attr().delay(delayTime *
CONVERSION_FACTOR
));
in PostTask()
83
if (delayTime > std::numeric_limits<uint64_t>::max() /
CONVERSION_FACTOR
) {
in PostTask()
88
task_handle handler = queue_->submit_h(func, task_attr().delay(delayTime *
CONVERSION_FACTOR
));
in PostTask()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/common/
H
A
D
serial_queue.cpp
24
constexpr uint16_t
CONVERSION_FACTOR
= 1000; // ms to us
member
41
if (ms > std::numeric_limits<uint64_t>::max() /
CONVERSION_FACTOR
) {
in ScheduleDelayTask()
46
task_handle task_handle = queue_->submit_h(func, task_attr().delay(ms *
CONVERSION_FACTOR
));
in ScheduleDelayTask()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/aot/
H
A
D
aot_handler.cpp
70
constexpr uint16_t
CONVERSION_FACTOR
= 1000; // s to ms
member
531
serialQueue_->ScheduleDelayTask(TASK_NAME, delayTimeSeconds *
CONVERSION_FACTOR
, task);
in BeforeOTACompile()
Completed in 4 milliseconds