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:timeVal
(Results
1 - 4
of
4
) sorted by relevance
/base/tee/tee_client/services/teecd/src/
H
A
D
misc_work_agent.c
31
struct timeval
timeVal
;
in GetTimeWork()
local
33
if (gettimeofday(&
timeVal
, NULL) == 0) {
in GetTimeWork()
35
transControl->Args.GetTime.seconds = (uint32_t)
timeVal
.tv_sec;
in GetTimeWork()
36
transControl->Args.GetTime.millis = (uint32_t)(
timeVal
.tv_usec / 1000);
in GetTimeWork()
37
struct tm *tstruct = localtime(&(
timeVal
.tv_sec));
in GetTimeWork()
43
tstruct->tm_min, tstruct->tm_sec, (int)(
timeVal
.tv_usec / 1000));
in GetTimeWork()
H
A
D
tee_agent.c
163
struct timeval
timeVal
;
in SyncSysTimeToSecure()
local
165
int ret = gettimeofday(&
timeVal
, NULL);
in SyncSysTimeToSecure()
170
if (
timeVal
.tv_sec < 0xFFFFF) {
in SyncSysTimeToSecure()
173
tcNsTime.seconds = (uint32_t)
timeVal
.tv_sec;
in SyncSysTimeToSecure()
174
tcNsTime.millis = (uint32_t)
timeVal
.tv_usec / 1000;
in SyncSysTimeToSecure()
/base/security/device_security_level/services/dfx/
H
A
D
dslm_hidumper.c
285
struct timeval
timeVal
= {0};
in PrintDefaultStatus()
local
286
gettimeofday(&
timeVal
, NULL);
in PrintDefaultStatus()
287
char *notice =
timeVal
.tv_sec <= YEAR_TIME_2023 ? "(please check the system time)" : "";
in PrintDefaultStatus()
/base/security/device_security_level/test/dslm_unit_test/
H
A
D
dslm_test.cpp
416
struct timeval
timeVal
= {0};
in SetUpTestCase()
local
419
gettimeofday(&
timeVal
, nullptr);
in SetUpTestCase()
420
if (
timeVal
.tv_sec <= yearTimeLeast) {
in SetUpTestCase()
421
timeVal
.tv_sec = yearTimeValid;
in SetUpTestCase()
422
settimeofday(&
timeVal
, nullptr);
in SetUpTestCase()
Completed in 6 milliseconds