Home
last modified time | relevance | path

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

/openthread-latest/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()
493 uint32_t period = GetDefaultPollPeriod(); in CalculatePollPeriod() local
497 period = Min(period, kAttachDataPollPeriod); in CalculatePollPeriod()
502 period = Min(period, kRetxPollPeriod); in CalculatePollPeriod()
507 period = Min(period, Get<Mac::Mac>().GetCslPeriodInMsec()); in CalculatePollPeriod()
514 period = Min(period, kFastPollPeriod); in CalculatePollPeriod()
519 period = Min(period, mExternalPollPeriod); in CalculatePollPeriod()
522 if (period == 0) in CalculatePollPeriod()
[all …]
Dmac.cpp2304 uint16_t period = IsCslEnabled() ? GetCslPeriod() : 0; in UpdateCsl() local
2307 if (mLinks.UpdateCsl(period, channel, Get<Mle::Mle>().GetParent().GetRloc16(), in UpdateCsl()
2314 if (period != 0) in UpdateCsl()
/openthread-latest/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
75 SuccessOrExit(Tlv::Find<MeshCoP::PeriodTlv>(aMessage, period)); in HandleTmf()
93 mPeriod = period; in HandleTmf()
/openthread-latest/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.py234 def set_csl_period(self, period): argument
235 self._cli_no_output('csl period', period)
351 def set_pollperiod(self, period): argument
352 self._cli_no_output('pollperiod', period)
/openthread-latest/src/cli/
Dcli_commissioner.cpp66 uint16_t period; in Process() local
71 SuccessOrExit(error = aArgs[2].ParseAsUint16(period)); in Process()
74 error = otCommissionerAnnounceBegin(GetInstancePtr(), mask, count, period, &address); in Process()
106 uint16_t period; in Process() local
112 SuccessOrExit(error = aArgs[2].ParseAsUint16(period)); in Process()
116 error = otCommissionerEnergyScan(GetInstancePtr(), mask, count, period, scanDuration, &address, in Process()
DREADME_COMMISSIONER.md54 Usage: `commissioner announce <mask> <count> <period> <destination>`
60 - period: Period between successive MLE Announce transmissions (milliseconds).
70 Usage: `commissioner energy <mask> <count> <period> <scanDuration> <destination>`
76 - period: Period between successive IEEE 802.15.4 ED Scans (milliseconds).
DREADME.md1107 CSL period is shown in microseconds.
1126 ### csl period \<period\>
1128 Set CSL period in microseconds. Disable CSL by setting this parameter to `0`.
1130 The CSL period MUST be a multiple 160 microseconds which is 802.15.4 "ten symbols time".
1133 > csl period 30000000
2362 csl - sync:no period:0 timeout:0 channel:0
2369 csl - sync:no period:0 timeout:0 channel:0
2861 - timesyncperiod: The time synchronization period, in seconds.
3053 Get the customized data poll period of sleepy end device (milliseconds). Only for certification tes…
3063 Set the customized data poll period for sleepy end device (milliseconds >= 10ms). Only for certific…
DREADME_DATASET.md175 The delay timer determines the time period after which the Pending Operational Dataset takes effect…
Dcli.cpp4852 uint16_t period; in Process() local
4855 SuccessOrExit(error = aArgs[0].ParseAsUint16(period)); in Process()
4857 SuccessOrExit(error = otNetworkTimeSetSyncPeriod(GetInstancePtr(), period)); in Process()
/openthread-latest/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-latest/
DCODE_OF_CONDUCT.md57 …ed interaction with those enforcing the Code of Conduct, for a specified period of time. This incl…
63period of time. No public or private interaction with the people involved, including unsolicited i…
/openthread-latest/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-latest/tools/cp-caps/
Drcp_caps_test.py223 self.__ref.config_csl(channel=15, period=320000, timeout=100)
/openthread-latest/third_party/mbedtls/repo/
DCONTRIBUTING.md43 …ng Term Support) branches, which are maintained continuously for a given period. The LTS branches …
/openthread-latest/tests/scripts/thread-cert/
Dnode.py2553 def energy_scan(self, mask, count, period, scan_duration, ipaddr): argument
2557 period,
2819 def announce_begin(self, mask, count, period, ipaddr): argument
2823 period,
/openthread-latest/tools/otci/tests/
Dtest_otci.py255 leader.config_csl(channel=13, period=16000, timeout=200)
/openthread-latest/tools/otci/otci/
Dotci.py1428 …def config_csl(self, channel: Optional[int] = None, period: Optional[int] = None, timeout: Optiona…
1436 if channel is None and period is None and timeout is None:
1442 if period is not None:
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dssl.h4617 const unsigned char period[8]);
/openthread-latest/tools/harness-thci/
DOpenThread.py2932 def setCSLperiod(self, period=500): argument
2938 cmd = 'csl period %u' % (period * 1000)
/openthread-latest/third_party/mbedtls/repo/library/
Dssl_tls.c2994 const unsigned char period[8]) in mbedtls_ssl_conf_renegotiation_period()
2996 memcpy(conf->renego_period, period, 8); in mbedtls_ssl_conf_renegotiation_period()