Home
last modified time | relevance | path

Searched refs:period (Results 1 – 19 of 19) sorted by relevance

/openthread-3.5.0/src/core/mac/
Ddata_poll_sender.cpp193 uint32_t period = GetDefaultPollPeriod(); in GetKeepAlivePollPeriod() local
197 period = Min(period, mExternalPollPeriod); in GetKeepAlivePollPeriod()
200 return period; in GetKeepAlivePollPeriod()
495 uint32_t period = GetDefaultPollPeriod(); in CalculatePollPeriod() local
499 period = Min(period, kAttachDataPollPeriod); in CalculatePollPeriod()
504 period = Min(period, kRetxPollPeriod); in CalculatePollPeriod()
509 period = Min(period, Get<Mac::Mac>().GetCslPeriodInMsec()); in CalculatePollPeriod()
516 period = Min(period, kFastPollPeriod); in CalculatePollPeriod()
521 period = Min(period, mExternalPollPeriod); in CalculatePollPeriod()
524 if (period == 0) in CalculatePollPeriod()
[all …]
Dmac.cpp2264 uint16_t period = IsCslEnabled() ? GetCslPeriod() : 0; in UpdateCsl() local
2267 if (mLinks.UpdateCsl(period, channel, Get<Mle::Mle>().GetParent().GetRloc16(), in UpdateCsl()
2274 if (period != 0) in UpdateCsl()
/openthread-3.5.0/src/core/thread/
Dannounce_begin_server.cpp71 uint16_t period; in HandleTmf() local
77 SuccessOrExit(Tlv::Find<MeshCoP::PeriodTlv>(aMessage, period)); in HandleTmf()
79 SendAnnounce(mask, count, period); in HandleTmf()
Denergy_scan_server.cpp67 uint16_t period; in HandleTmf() local
76 SuccessOrExit(Tlv::Find<MeshCoP::PeriodTlv>(aMessage, period)); in HandleTmf()
96 mPeriod = period; in HandleTmf()
/openthread-3.5.0/tests/toranj/cli/
Dtest-005-traffic-router-to-child.py82 for period in poll_periods:
83 node3.set_pollperiod(period)
84 verify(int(node3.get_pollperiod()) == period)
Dcli.py334 def set_pollperiod(self, period): argument
335 self._cli_no_output('pollperiod', period)
/openthread-3.5.0/src/cli/
Dcli_commissioner.cpp48 uint16_t period; in Process() local
53 SuccessOrExit(error = aArgs[2].ParseAsUint16(period)); in Process()
56 error = otCommissionerAnnounceBegin(GetInstancePtr(), mask, count, period, &address); in Process()
67 uint16_t period; in Process() local
73 SuccessOrExit(error = aArgs[2].ParseAsUint16(period)); in Process()
77 error = otCommissionerEnergyScan(GetInstancePtr(), mask, count, period, scanDuration, &address, in Process()
DREADME_COMMISSIONER.md50 Usage: `commissioner announce <mask> <count> <period> <destination>`
56 - period: Period between successive MLE Announce transmissions (milliseconds).
66 Usage: `commissioner energy <mask> <count> <period> <scanDuration> <destination>`
72 - period: Period between successive IEEE 802.15.4 ED Scans (milliseconds).
DREADME.md988 CSL period is shown in microseconds.
1007 ### csl period \<period\>
1009 Set CSL period in microseconds. Disable CSL by setting this parameter to `0`.
1011 The CSL period MUST be a multiple 160 microseconds which is 802.15.4 "ten symbols time".
1014 > csl period 30000000
1043 - timesyncperiod: The time synchronization period, in seconds.
2162 csl - sync:no period:0 timeout:0 channel:0
2169 csl - sync:no period:0 timeout:0 channel:0
2782 Get the customized data poll period of sleepy end device (milliseconds). Only for certification tes…
2792 Set the customized data poll period for sleepy end device (milliseconds >= 10ms). Only for certific…
Dcli.cpp5134 uint16_t period; in Process() local
5137 SuccessOrExit(error = aArgs[0].ParseAsUint16(period)); in Process()
5139 SuccessOrExit(error = otNetworkTimeSetSyncPeriod(GetInstancePtr(), period)); in Process()
/openthread-3.5.0/tests/unit/
Dtest_link_quality.cpp425 for (uint16_t period = 1; period < 101; period++) in TestSuccessRateTracker() local
436 bool isSuccess = ((sampleCount % period) == 0); in TestSuccessRateTracker()
/openthread-3.5.0/src/ncp/
Dncp_base_ftd.cpp876 uint16_t period; in HandlePropertySet() local
881 SuccessOrExit(error = mDecoder.ReadUint16(period)); in HandlePropertySet()
884 error = otCommissionerAnnounceBegin(mInstance, channelMask, count, period, address); in HandlePropertySet()
895 uint16_t period; in HandlePropertySet() local
901 SuccessOrExit(error = mDecoder.ReadUint16(period)); in HandlePropertySet()
905 error = otCommissionerEnergyScan(mInstance, channelMask, count, period, scanDuration, address, in HandlePropertySet()
/openthread-3.5.0/tools/otci/otci/
Dotci.py1397 …def config_csl(self, channel: Optional[int] = None, period: Optional[int] = None, timeout: Optiona…
1405 if channel is None and period is None and timeout is None:
1411 if period is not None:
/openthread-3.5.0/third_party/mbedtls/repo/
DCONTRIBUTING.md42 …ng Term Support) branches, which are maintained continuously for a given period. The LTS branches …
/openthread-3.5.0/third_party/mbedtls/repo/include/mbedtls/
Dssl.h3681 const unsigned char period[8] );
/openthread-3.5.0/tests/scripts/thread-cert/
Dnode.py2425 def energy_scan(self, mask, count, period, scan_duration, ipaddr): argument
2429 period,
2679 def announce_begin(self, mask, count, period, ipaddr): argument
2683 period,
/openthread-3.5.0/tools/otci/tests/
Dtest_otci.py255 leader.config_csl(channel=13, period=16000, timeout=200)
/openthread-3.5.0/tools/harness-thci/
DOpenThread.py2929 def setCSLperiod(self, period=500): argument
2935 cmd = 'csl period %u' % (period * 1000)
/openthread-3.5.0/third_party/mbedtls/repo/library/
Dssl_tls.c4960 const unsigned char period[8] ) in mbedtls_ssl_conf_renegotiation_period()
4962 memcpy( conf->renego_period, period, 8 ); in mbedtls_ssl_conf_renegotiation_period()