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:rawTime
(Results
1 - 5
of
5
) sorted by relevance
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H
A
D
system_time.cpp
35
struct timeval
rawTime
;
in GetCurrentSysTimeInMicrosecond()
local
36
int errCode = gettimeofday(&
rawTime
, nullptr);
in GetCurrentSysTimeInMicrosecond()
41
outTime = static_cast<uint64_t>(
rawTime
.tv_sec) * MULTIPLES_BETWEEN_SECONDS_AND_MICROSECONDS +
in GetCurrentSysTimeInMicrosecond()
42
static_cast<uint64_t>(
rawTime
.tv_usec);
in GetCurrentSysTimeInMicrosecond()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H
A
D
platform_specific.cpp
186
FILETIME
rawTime
;
in GetCurrentSysTimeInMicrosecond()
local
187
GetSystemTimeAsFileTime(&
rawTime
);
in GetCurrentSysTimeInMicrosecond()
188
outTime = ((static_cast<uint64_t>(
rawTime
.dwHighDateTime) << UINT32_BIT_LENGTH) +
in GetCurrentSysTimeInMicrosecond()
189
(static_cast<uint64_t>(
rawTime
.dwLowDateTime))) / MULTIPLES_BETWEEN_MICROSECONDS_AND_100_NANOSECONDS -
in GetCurrentSysTimeInMicrosecond()
198
LARGE_INTEGER
rawTime
;
in GetMonotonicRelativeTimeInMicrosecond()
local
209
if (!QueryPerformanceCounter(&
rawTime
)) {
in GetMonotonicRelativeTimeInMicrosecond()
214
outTime = (static_cast<uint64_t>(
rawTime
.QuadPart) * MULTIPLES_BETWEEN_MICROSECONDS_AND_NANOSECONDS) /
in GetMonotonicRelativeTimeInMicrosecond()
495
struct timeval
rawTime
;
496
int errCode = gettimeofday(&
rawTime
, nullptr);
501
outTime = static_cast<uint64_t>(
rawTime
[all...]
/foundation/ai/intelligent_voice_framework/utils/
H
A
D
time_util.cpp
105
time_t
rawTime
;
in GetCurrTime()
local
109
time(&
rawTime
);
in GetCurrTime()
110
timeInfo = localtime(&
rawTime
);
in GetCurrTime()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/relational/
H
A
D
relational_store_sqlite_ext.cpp
283
struct timeval
rawTime
;
in GetCurrentSysTimeInMicrosecond()
local
284
int errCode = gettimeofday(&
rawTime
, nullptr);
in GetCurrentSysTimeInMicrosecond()
288
outTime = static_cast<uint64_t>(
rawTime
.tv_sec) * MULTIPLES_BETWEEN_SECONDS_AND_MICROSECONDS +
in GetCurrentSysTimeInMicrosecond()
289
static_cast<uint64_t>(
rawTime
.tv_usec);
in GetCurrentSysTimeInMicrosecond()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/
H
A
D
distributeddb_cloud_interfaces_relational_ext_test.cpp
145
struct timeval
rawTime
;
in GetCurrentSysTimeIn100Ns()
local
146
int errCode = gettimeofday(&
rawTime
, nullptr);
in GetCurrentSysTimeIn100Ns()
150
outTime = static_cast<uint64_t>(
rawTime
.tv_sec) * MULTIPLES_BETWEEN_SECONDS_AND_MICROSECONDS +
in GetCurrentSysTimeIn100Ns()
151
static_cast<uint64_t>(
rawTime
.tv_usec);
in GetCurrentSysTimeIn100Ns()
Completed in 9 milliseconds