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:nanoSeconds
(Results
1 - 4
of
4
) sorted by relevance
/base/update/updater/utils/
H
A
D
utils_common.cpp
63
long
nanoSeconds
= static_cast<long>(usec) % USECONDS_PER_SECONDS * NANOSECS_PER_USECONDS;
in UsSleep()
local
64
struct timespec ts = { static_cast<time_t>(seconds),
nanoSeconds
};
in UsSleep()
/base/powermgr/battery_manager/charger/src/
H
A
D
charger_graphic_engine.cpp
88
long
nanoSeconds
= static_cast<long>(usec) % USECONDS_PER_SECONDS * NANOSECS_PER_USECONDS;
in UsSleep()
local
89
struct timespec ts = {static_cast<time_t>(seconds),
nanoSeconds
};
in UsSleep()
/base/hiviewdfx/hitrace/frameworks/native/
H
A
D
common_utils.cpp
84
constexpr unsigned int
nanoSeconds
= 1000000000; // seconds converted to nanoseconds
in MarkClockSync()
local
88
static_cast<int64_t>((rts.tv_sec *
nanoSeconds
+ rts.tv_nsec) / nanoToMill));
in MarkClockSync()
108
static_cast<float>(((static_cast<float>(mts.tv_sec)) *
nanoSeconds
+ mts.tv_nsec) / nanoToSecond));
in MarkClockSync()
/base/startup/init/services/modules/trace/
H
A
D
init_trace.c
421
const unsigned int
nanoSeconds
= 1000000000; // seconds converted to nanoseconds
in MarkOthersClockSync()
local
431
int64_t realtime = ((int64_t)rts.tv_sec *
nanoSeconds
+ rts.tv_nsec) / nanoToMill;
in MarkOthersClockSync()
432
float parentTs = (float)((((float)mts.tv_sec) *
nanoSeconds
+ mts.tv_nsec) / nanoToSecond);
in MarkOthersClockSync()
Completed in 3 milliseconds