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:realTime
(Results
1 - 2
of
2
) sorted by relevance
/kernel/liteos_a/compat/posix/src/
H
A
D
time.c
290
struct timespec64
realTime
= {0};
in OsSetTimeOfDay()
local
309
realTime
= OsTimeSpecAdd(hwTime, g_accDeltaFromAdj);
in OsSetTimeOfDay()
310
realTime
= OsTimeSpecAdd(
realTime
, g_accDeltaFromSet);
in OsSetTimeOfDay()
312
tmp = OsTimeSpecSub(setTime,
realTime
);
in OsSetTimeOfDay()
361
struct timespec64
realTime
= {0};
in OsGetTimeOfDay()
local
366
realTime
= OsTimeSpecAdd(hwTime, g_accDeltaFromAdj);
in OsGetTimeOfDay()
367
realTime
= OsTimeSpecAdd(
realTime
, g_accDeltaFromSet);
in OsGetTimeOfDay()
370
tv->tv_sec =
realTime
in OsGetTimeOfDay()
[all...]
/kernel/liteos_m/kal/posix/src/
H
A
D
time.c
288
STATIC VOID OsGetRealTime(struct timespec *
realTime
)
in OsGetRealTime()
argument
294
realTime
->tv_nsec = hwTime.tv_nsec + g_accDeltaFromSet.tv_nsec;
in OsGetRealTime()
295
realTime
->tv_sec = hwTime.tv_sec + g_accDeltaFromSet.tv_sec + (
realTime
->tv_nsec >= OS_SYS_NS_PER_SECOND);
in OsGetRealTime()
296
realTime
->tv_nsec %= OS_SYS_NS_PER_SECOND;
in OsGetRealTime()
300
STATIC VOID OsSetRealTime(const struct timespec *
realTime
)
in OsSetRealTime()
argument
306
g_accDeltaFromSet.tv_nsec =
realTime
->tv_nsec - hwTime.tv_nsec;
in OsSetRealTime()
307
g_accDeltaFromSet.tv_sec =
realTime
->tv_sec - hwTime.tv_sec - (g_accDeltaFromSet.tv_nsec < 0);
in OsSetRealTime()
Completed in 3 milliseconds