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:hwTime
(Results
1 - 2
of
2
) sorted by relevance
/kernel/liteos_a/compat/posix/src/
H
A
D
time.c
276
STATIC VOID OsGetHwTime(struct timespec64 *
hwTime
)
in OsGetHwTime()
argument
281
hwTime
->tv_sec = nowNsec / OS_SYS_NS_PER_SECOND;
in OsGetHwTime()
282
hwTime
->tv_nsec = nowNsec -
hwTime
->tv_sec * OS_SYS_NS_PER_SECOND;
in OsGetHwTime()
289
struct timespec64
hwTime
= {0};
in OsSetTimeOfDay()
local
300
OsGetHwTime(&
hwTime
);
in OsSetTimeOfDay()
309
realTime = OsTimeSpecAdd(
hwTime
, g_accDeltaFromAdj);
in OsSetTimeOfDay()
360
struct timespec64
hwTime
= {0};
in OsGetTimeOfDay()
local
363
OsGetHwTime(&
hwTime
);
in OsGetTimeOfDay()
366
realTime = OsTimeSpecAdd(
hwTime
, g_accDeltaFromAd
in OsGetTimeOfDay()
588
struct timespec64
hwTime
= {0};
clock_gettime()
local
1180
struct timespec64
hwTime
= {0};
OsVdsoTimeGet()
local
[all...]
/kernel/liteos_m/kal/posix/src/
H
A
D
time.c
278
STATIC VOID OsGetHwTime(struct timespec *
hwTime
)
in OsGetHwTime()
argument
284
hwTime
->tv_sec = nowNsec / OS_SYS_NS_PER_SECOND;
in OsGetHwTime()
285
hwTime
->tv_nsec = nowNsec % OS_SYS_NS_PER_SECOND;
in OsGetHwTime()
291
struct timespec
hwTime
= {0};
in OsGetRealTime()
local
292
OsGetHwTime(&
hwTime
);
in OsGetRealTime()
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()
303
struct timespec
hwTime
= {0};
in OsSetRealTime()
local
304
OsGetHwTime(&
hwTime
);
in OsSetRealTime()
306
g_accDeltaFromSet.tv_nsec = realTime->tv_nsec -
hwTime
in OsSetRealTime()
474
struct timespec
hwTime
;
clock()
local
[all...]
Completed in 3 milliseconds