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:curtime
(Results
1 - 4
of
4
) sorted by relevance
/foundation/resourceschedule/ffrt/src/dfx/log/linux/
H
A
D
log_base.cpp
34
struct tm
curtime
;
in GetCurrentTime()
local
35
localtime_r(&timet, &
curtime
);
in GetCurrentTime()
37
auto year = std::to_string(
curtime
.tm_year + startYear);
in GetCurrentTime()
38
auto mon = std::to_string(
curtime
.tm_mon + 1);
in GetCurrentTime()
39
auto day = std::to_string(
curtime
.tm_mday);
in GetCurrentTime()
40
auto hour = std::to_string(
curtime
.tm_hour);
in GetCurrentTime()
41
auto min = std::to_string(
curtime
.tm_min);
in GetCurrentTime()
42
auto sec = std::to_string(
curtime
.tm_sec);
in GetCurrentTime()
/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H
A
D
system_ability_state_scheduler_proc_test.cpp
101
int64_t
curtime
= GetTickCount();
in HWTEST_F()
local
103
processContext->restartCountsCtrl.push_back(
curtime
);
in HWTEST_F()
121
int64_t
curtime
= GetTickCount() - RESTART_TIME_INTERVAL_LIMIT;
in HWTEST_F()
local
123
processContext->restartCountsCtrl.push_back(
curtime
);
in HWTEST_F()
141
int64_t
curtime
= GetTickCount();
in HWTEST_F()
local
143
processContext->restartCountsCtrl.push_back(
curtime
);
in HWTEST_F()
/foundation/systemabilitymgr/samgr/services/samgr/native/source/schedule/
H
A
D
system_ability_state_scheduler.cpp
821
int64_t
curtime
= GetTickCount();
in CanRestartProcessLocked()
local
823
processContext->restartCountsCtrl.push_back(
curtime
);
in CanRestartProcessLocked()
826
if (
curtime
- processContext->restartCountsCtrl.front() < RESTART_TIME_INTERVAL_LIMIT) {
in CanRestartProcessLocked()
830
processContext->restartCountsCtrl.push_back(
curtime
);
in CanRestartProcessLocked()
/foundation/distributeddatamgr/pasteboard/services/test/unittest/src/
H
A
D
paste_service_test.cpp
188
time_t
curtime
;
in GetTime()
local
189
time(&
curtime
);
in GetTime()
190
tm *nowtime = localtime(&
curtime
);
in GetTime()
Completed in 6 milliseconds