Home
last modified time | relevance | path

Searched refs:Remove (Results 1 – 25 of 70) sorted by relevance

123

/openthread-latest/third_party/mbedtls/repo/
D.uncrustify.cfg61 # Remove spaces around the preprocessor '##' token-concatenate
91 # Remove spaces inside all kinds of parentheses:
93 # Remove spaces inside parentheses
113 # Remove spaces between nested parentheses '( (' -> '(('
118 # Remove spaces between ')' and adjacent '('
130 # Remove spaces between pointer stars
139 # Remove space after star in a function return type
148 # Remove a space before a ';'
150 # (Uncrustify >= 0.73.0) Remove space before a semi in a non-empty for
152 # (Uncrustify >= 0.73.0) Remove space in empty first statement of a for
[all …]
/openthread-latest/src/core/common/
Dtimer.cpp144 void TimerMilli::Stop(void) { Get<Scheduler>().Remove(*this); } in Stop()
156 Remove(aTimer, aAlarmApi); in Add()
179 void Timer::Scheduler::Remove(Timer &aTimer, const AlarmApi &aAlarmApi) in Remove() function in ot::Timer::Scheduler
190 IgnoreError(mTimerList.Remove(aTimer)); in Remove()
227 Remove(*timer, aAlarmApi); // `Remove()` will `SetAlarm` for next timer if there is any. in ProcessTimers()
284 void TimerMicro::Stop(void) { Get<Scheduler>().Remove(*this); } in Stop()
Dtimer.hpp187 void Remove(Timer &aTimer, const AlarmApi &aAlarmApi);
242 void Remove(TimerMilli &aTimer) { Timer::Scheduler::Remove(aTimer, sAlarmMilliApi); } in Remove() function in ot::TimerMilli::Scheduler
431 void Remove(TimerMicro &aTimer) { Timer::Scheduler::Remove(aTimer, sAlarmMicroApi); } in Remove() function in ot::TimerMicro::Scheduler
Darray.hpp367 void Remove(Type &aElement) in Remove() function in ot::Array
519 Remove(*entry); in RemoveMatching()
546 Remove(entry); in RemoveAllMatching()
/openthread-latest/src/core/thread/
Dnetwork_data_publisher.cpp378 Remove(/* aNextState */ kToAdd); in HandleTimer()
407 void Publisher::Entry::Remove(State aNextState) in Remove() function in ot::NetworkData::Publisher::Entry
412 static_cast<DnsSrpServiceEntry *>(this)->Remove(aNextState); in Remove()
419 static_cast<PrefixEntry *>(this)->Remove(aNextState); in Remove()
525 Remove(/* aNextState */ kNoEntry); in Publish()
541 Remove(/* aNextState */ kNoEntry); in Unpublish()
556 Remove(/* aNextState */ kAdding); in HandleNotifierEvents()
597 void Publisher::DnsSrpServiceEntry::Remove(State aNextState) in Remove() function in ot::NetworkData::Publisher::DnsSrpServiceEntry
810 Remove(/* aNextState */ kNoEntry); in Publish()
836 Remove(/* aNextState */ kNoEntry); in Unpublish()
[all …]
Dnetwork_data_publisher.hpp373 void Remove(State aNextState);
437 void Remove(State aNextState);
495 void Remove(State aNextState);
Daddress_resolver.cpp169 Remove(Mle::Rloc16FromRouterId(aRouterId), /* aMatchRouterId */ true); in RemoveEntriesForRouterId()
172 void AddressResolver::RemoveEntriesForRloc16(uint16_t aRloc16) { Remove(aRloc16, /* aMatchRouterId … in RemoveEntriesForRloc16()
179 void AddressResolver::Remove(uint16_t aRloc16, bool aMatchRouterId) in Remove() function in ot::AddressResolver
225 void AddressResolver::RemoveEntryForAddress(const Ip6::Address &aEid) { Remove(aEid, kReasonRemovin… in RemoveEntryForAddress()
227 void AddressResolver::Remove(const Ip6::Address &aEid, Reason aReason) in Remove() function in ot::AddressResolver
1075 Remove(ip6Header.GetDestination(), kReasonReceivedIcmpDstUnreachNoRoute); in HandleIcmpReceive()
Daddress_resolver.hpp360 void Remove(uint16_t aRloc16, bool aMatchRouterId);
361 void Remove(const Ip6::Address &aEid, Reason aReason);
Dradio_selector.hpp102 void RemoveSupportedRadioType(Mac::RadioType aType) { mSupportedRadioTypes.Remove(aType); } in RemoveSupportedRadioType()
/openthread-latest/third_party/mbedtls/repo/tests/
DCMakeLists.txt173 # Remove the ".data" extension
175 # Remove leading "test_suite_"
182 # Remove the ".data" extension
184 # Remove leading "test_suite_"
191 # Remove the ".data" extension
193 # Remove leading "test_suite_"
/openthread-latest/tests/unit/
Dtest_multicast_listeners_table.cpp77 table.Remove(static_cast<const Ip6::Address &>(MA401)); in TestMulticastListenersTable()
150 table.Remove(address); in TestMulticastListenersTable()
Dtest_srp_adv_proxy.cpp453 sHeapAllocatedPtrs.Remove(*entry); in otPlatFree()
691 idRange.Remove(4); in TestDnssdRequestIdRange()
694 idRange.Remove(6); in TestDnssdRequestIdRange()
697 idRange.Remove(5); in TestDnssdRequestIdRange()
719 idRange.Remove(10); in TestDnssdRequestIdRange()
721 idRange.Remove(15); in TestDnssdRequestIdRange()
724 idRange.Remove(8); in TestDnssdRequestIdRange()
726 idRange.Remove(17); in TestDnssdRequestIdRange()
729 idRange.Remove(9); in TestDnssdRequestIdRange()
731 idRange.Remove(16); in TestDnssdRequestIdRange()
[all …]
Dtest_linked_list.cpp191 SuccessOrQuit(list.Remove(c)); in TestLinkedList()
194 VerifyOrQuit(list.Remove(c) == kErrorNotFound); in TestLinkedList()
198 SuccessOrQuit(list.Remove(e)); in TestLinkedList()
202 SuccessOrQuit(list.Remove(a)); in TestLinkedList()
256 VerifyOrQuit(list.Remove(a) == kErrorNotFound, "succeeded when empty"); in TestLinkedList()
/openthread-latest/third_party/mbedtls/repo/docs/
D3.0-migration-guide.md90 ### Remove `MBEDTLS_CHECK_PARAMS` option
123 ### Remove the `MBEDTLS_TEST_NULL_ENTROPY` configuration option
134 ### Remove the HAVEGE module
147 ### Remove helpers for the transition from Mbed TLS 1.3 to Mbed TLS 2.0
285 ### Remove the mode parameter from RSA functions
357 ### Remove the RNG parameter from RSA verify functions
363 ### Remove the padding parameters from `mbedtls_rsa_init()`
419 ### Remove MD2, MD4, RC4, Blowfish and XTEA algorithms
545 ### Remove the certs module from the library
563 ### Remove the config option `MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION`
[all …]
/openthread-latest/src/posix/platform/
Dmainloop.hpp115 void Remove(Source &aSource);
Dmainloop.cpp47 void Manager::Remove(Source &aSource) in Remove() function in ot::Posix::Mainloop::Manager
Dmulticast_routing.hpp114 void Remove(const Ip6::Address &aAddress);
Dmulticast_routing.cpp88 Mainloop::Manager::Get().Remove(*this); in TearDown()
108 Remove(aAddress); in HandleBackboneMulticastListenerEvent()
144 void MulticastRoutingManager::Remove(const Ip6::Address &aAddress) in Remove() function in ot::Posix::MulticastRoutingManager
/openthread-latest/src/core/net/
Dip6_filter.cpp128 mUnsecurePorts.Remove(*entry); in UpdateUnsecurePorts()
Ddnssd.hpp166 void Remove(RequestId aId);
Ddns_dso.cpp250 IgnoreError(Get<Dso>().mClientConnections.Remove(*this)); in MarkAsDisconnected()
254 IgnoreError(Get<Dso>().mServerConnections.Remove(*this)); in MarkAsDisconnected()
868 mPendingRequests.Remove(aHeader.GetMessageId()); in ProcessResponseMessage()
1396 void Dso::Connection::PendingRequests::Remove(MessageId aMessageId) { mRequests.RemoveMatching(aMes… in Remove() function in ot::Dns::Dso::Connection::PendingRequests
Dnetif.cpp290 SuccessOrExit(mMulticastAddresses.Remove(aAddress)); in UnsubscribeMulticast()
382 SuccessOrExit(mUnicastAddresses.Remove(aAddress)); in RemoveUnicastAddress()
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dpsa-storage-resilience.md173 5. Remove the key from the transaction list.
184 3. Remove the key file.
185 4. Remove the key from the transaction list.
202 5. Remove the key from the transaction list.
207 2. Remove the key file.
209 4. Remove the key from the transaction list.
213 1. Remove the key file, treating `DOES_NOT_EXIST` as a success.
215 3. Remove the key from the transaction list.
227 5. Remove the key from the transaction list.
233 3. Remove the key file.
[all …]
/openthread-latest/src/core/backbone_router/
Dmulticast_listeners_table.hpp145 void Remove(const Ip6::Address &aAddress);
/openthread-latest/src/cli/
DREADME_SRP.md145 ### Remove the service
165 ### Remove the host and service names

123