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:timers
(Results
1 - 7
of
7
) sorted by relevance
/foundation/multimedia/camera_framework/services/deferred_processing_service/src/base/timer/core/
H
A
D
timer_core.cpp
105
auto&
timers
= registeredTimers_[timestampMs];
in DeregisterTimer()
local
106
timers
.erase(std::remove_if(
timers
.begin(),
timers
.end(),
in DeregisterTimer()
107
[this, &timer](auto& weakTimer) { return IsSameOwner(timer, weakTimer); }),
timers
.end());
in DeregisterTimer()
108
if (
timers
.empty()) {
in DeregisterTimer()
147
std::vector<std::weak_ptr<Timer>>
timers
;
in DoTimeout()
local
161
timers
= std::move(registeredTimers_[timestamp]);
in DoTimeout()
164
for (auto& weakTimer :
timers
) {
in DoTimeout()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H
A
D
fillp_stack_app_config.c
89
resource->common.connectTimeout = globalConfig->
timers
.connectTimeout;
in CopyGlobalConfig()
90
resource->common.keepAliveTime = globalConfig->
timers
.keepAliveTime;
in CopyGlobalConfig()
99
resource->common.connRetryTimeout = globalConfig->
timers
.connRetrytimeout;
in CopyGlobalConfig()
100
resource->common.disconnectRetryTimeout = globalConfig->
timers
.disconnectRetrytimeout;
in CopyGlobalConfig()
180
gresource->
timers
.connectTimeout = resource->common.connectTimeout;
in CopySockConfig()
181
gresource->
timers
.keepAliveTime = resource->common.keepAliveTime;
in CopySockConfig()
188
gresource->
timers
.connRetrytimeout = resource->common.connRetryTimeout;
in CopySockConfig()
189
gresource->
timers
.disconnectRetrytimeout = resource->common.disconnectRetryTimeout;
in CopySockConfig()
H
A
D
fillp_stack_app_config_in.c
131
if ((globalResource->
timers
.connectTimeout == FILLP_NULL) ||
in FtAppValidateTimerParams()
132
(globalResource->
timers
.connectTimeout > FILLP_MAX_CONNECT_TIMEOUT)) {
in FtAppValidateTimerParams()
133
FILLP_LOGERR("connectTimeout %u is invalid parameter", globalResource->
timers
.connectTimeout);
in FtAppValidateTimerParams()
137
if ((globalResource->
timers
.keepAliveTime < FILLP_MIN_KEEP_ALIVE_TIMER) ||
in FtAppValidateTimerParams()
138
(globalResource->
timers
.keepAliveTime > FILLP_MAX_KEEP_ALIVE_TIME)) {
in FtAppValidateTimerParams()
139
FILLP_LOGERR("keepAliveTime %u is invalid parameter", globalResource->
timers
.keepAliveTime);
in FtAppValidateTimerParams()
144
if ((globalResource->
timers
.connRetrytimeout == FILLP_NULL) ||
in FtAppValidateTimerParams()
145
(globalResource->
timers
.connRetrytimeout > FILLP_MAX_CONNECT_RETRY_TIMER_INTERVAL)) {
in FtAppValidateTimerParams()
146
FILLP_LOGERR("connRetryTimeout %u is invalid parameter", globalResource->
timers
.connRetrytimeout);
in FtAppValidateTimerParams()
151
if ((globalResource->
timers
in FtAppValidateTimerParams()
[all...]
/foundation/multimodalinput/input/util/socket/src/
H
A
D
uds_session.cpp
173
std::vector<int32_t>
timers
;
in GetTimerIds()
local
175
timers
.push_back(item.timerId);
in GetTimerIds()
179
return
timers
;
in GetTimerIds()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/
H
A
D
fillp_stack_config_in.c
400
if ((resource->
timers
.recvCachePktNumBufferTimeout < FILLP_MIN_TIMER_RECV_CACHE_PKT_NUMBUFF) ||
in FtValidateTimersConfigParamsInner()
401
(resource->
timers
.recvCachePktNumBufferTimeout > FILLP_MAX_TIMER_RECV_CACHE_PKT_NUMBUFF)) {
in FtValidateTimersConfigParamsInner()
403
resource->
timers
.recvCachePktNumBufferTimeout);
in FtValidateTimersConfigParamsInner()
H
A
D
fillp_stack_config.c
98
g_resource.common.recvCachePktNumBufferTimeout = globalResource->
timers
.recvCachePktNumBufferTimeout;
in FtInitConfigSet()
139
globalResource->
timers
.recvCachePktNumBufferTimeout = g_resource.common.recvCachePktNumBufferTimeout;
in FtInitConfigGet()
/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H
A
D
fillpinc.h
887
FillpTimer
timers
; /* Indicates the set
timers
. */
member
1005
FillpAppTimerSt
timers
; /* Indicates the timer list. */
member
Completed in 9 milliseconds