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:lastTime
(Results
1 - 6
of
6
) sorted by relevance
/base/sensors/sensor/utils/common/src/
H
A
D
print_sensor_data.cpp
70
it->second.
lastTime
= sensorData.timestamp;
in ControlSensorHdiPrint()
74
if (sensorData.timestamp - it->second.
lastTime
>= LOG_INTERVAL) {
in ControlSensorHdiPrint()
76
it->second.
lastTime
= sensorData.timestamp;
in ControlSensorHdiPrint()
142
it->second.
lastTime
= event.timestamp;
in ControlSensorClientPrint()
146
if (event.timestamp - it->second.
lastTime
>= LOG_INTERVAL) {
in ControlSensorClientPrint()
148
it->second.
lastTime
= event.timestamp;
in ControlSensorClientPrint()
210
it->second.
lastTime
= 0;
in ResetHdiCounter()
/base/hiviewdfx/hiview/framework/native/unified_collection/calculator/
H
A
D
cpu_calculator.cpp
34
double CalcSysCpuUsage(uint32_t deltaTime, uint32_t currTime, uint32_t
lastTime
)
in CalcSysCpuUsage()
argument
36
return currTime <=
lastTime
? 0 : (((currTime -
lastTime
) * 1.0) / deltaTime);
in CalcSysCpuUsage()
/base/sensors/sensor/utils/common/include/
H
A
D
print_sensor_data.h
47
int64_t
lastTime
{ 0 };
/base/msdp/device_status/services/interaction/drag/src/
H
A
D
drag_smooth_processor.cpp
182
uint64_t
lastTime
= 0;
in GetAvgCoordinate()
local
184
if ((
lastTime
== 0) || (
lastTime
!= event.timestamp)) {
in GetAvgCoordinate()
189
lastTime
= event.timestamp;
in GetAvgCoordinate()
/base/telephony/core_service/services/network_search/include/
H
A
D
network_search_handler.h
120
bool TimeOutCheck(int64_t &
lastTime
, bool checkTime = true);
/base/telephony/core_service/services/network_search/src/
H
A
D
network_search_handler.cpp
1011
bool NetworkSearchHandler::TimeOutCheck(int64_t &
lastTime
, bool checkTime)
in TimeOutCheck()
argument
1014
if (!checkTime || (now -
lastTime
) > REQ_INTERVAL) {
in TimeOutCheck()
1015
lastTime
= now;
in TimeOutCheck()
Completed in 5 milliseconds