/openthread-latest/src/core/mac/ |
D | data_poll_sender.cpp | 193 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 …]
|
D | mac.cpp | 2304 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/ |
D | announce_begin_server.cpp | 71 uint16_t period; in HandleTmf() local 77 SuccessOrExit(Tlv::Find<MeshCoP::PeriodTlv>(aMessage, period)); in HandleTmf() 79 SendAnnounce(mask, count, period); in HandleTmf()
|
D | energy_scan_server.cpp | 67 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/ |
D | test-005-traffic-router-to-child.py | 82 for period in poll_periods: 83 node3.set_pollperiod(period) 84 verify(int(node3.get_pollperiod()) == period)
|
D | cli.py | 234 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/ |
D | cli_commissioner.cpp | 66 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()
|
D | README_COMMISSIONER.md | 54 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).
|
D | README.md | 1107 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…
|
D | README_DATASET.md | 175 The delay timer determines the time period after which the Pending Operational Dataset takes effect…
|
D | cli.cpp | 4852 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/ |
D | test_link_quality.cpp | 425 for (uint16_t period = 1; period < 101; period++) in TestSuccessRateTracker() local 436 bool isSuccess = ((sampleCount % period) == 0); in TestSuccessRateTracker()
|
/openthread-latest/ |
D | CODE_OF_CONDUCT.md | 57 …ed interaction with those enforcing the Code of Conduct, for a specified period of time. This incl… 63 …period of time. No public or private interaction with the people involved, including unsolicited i…
|
/openthread-latest/src/ncp/ |
D | ncp_base_ftd.cpp | 876 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/ |
D | rcp_caps_test.py | 223 self.__ref.config_csl(channel=15, period=320000, timeout=100)
|
/openthread-latest/third_party/mbedtls/repo/ |
D | CONTRIBUTING.md | 43 …ng Term Support) branches, which are maintained continuously for a given period. The LTS branches …
|
/openthread-latest/tests/scripts/thread-cert/ |
D | node.py | 2553 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/ |
D | test_otci.py | 255 leader.config_csl(channel=13, period=16000, timeout=200)
|
/openthread-latest/tools/otci/otci/ |
D | otci.py | 1428 …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/ |
D | ssl.h | 4617 const unsigned char period[8]);
|
/openthread-latest/tools/harness-thci/ |
D | OpenThread.py | 2932 def setCSLperiod(self, period=500): argument 2938 cmd = 'csl period %u' % (period * 1000)
|
/openthread-latest/third_party/mbedtls/repo/library/ |
D | ssl_tls.c | 2994 const unsigned char period[8]) in mbedtls_ssl_conf_renegotiation_period() 2996 memcpy(conf->renego_period, period, 8); in mbedtls_ssl_conf_renegotiation_period()
|