Home
last modified time | relevance | path

Searched refs:Array (Results 1 – 25 of 37) sorted by relevance

12

/openthread-latest/src/core/common/
Dheap_array.hpp65 template <typename Type, uint16_t kCapacityIncrements = 2> class Array class
73 Array(void) in Array() function in ot::Heap::Array
83 ~Array(void) { Free(); } in ~Array()
160 void TakeFrom(Array &&aOther) in TakeFrom()
485 Array(const Array &) = delete;
486 Array &operator=(const Array &) = delete;
Darray.hpp113 class Array class
128 Array(void) in Array() function in ot::Array
141 Array(const Array &aOtherArray) { *this = aOtherArray; } in Array() function in ot::Array
151 explicit Array(Instance &aInstance) in Array() function in ot::Array
530 Array &operator=(const Array &aOtherArray) in operator =()
Dnotifier.hpp305 using ExternalCallbackArray = Array<ExternalCallback, kMaxExternalHandlers>;
/openthread-latest/tests/unit/
Dtest_heap_array.cpp87 void VerifyEntry(const EntryType &aEntry, const Heap::Array<EntryType, 2> &aArray, int aExpectedVal… in VerifyEntry()
100 template <> void VerifyEntry(const uint16_t &aEntry, const Heap::Array<uint16_t, 2> &aArray, int aE… in VerifyEntry()
106 template <> void VerifyEntry(const Entry &aEntry, const Heap::Array<Entry, 2> &aArray, int aExpecte… in VerifyEntry()
115 template <typename EntryType, typename... Args> void VerifyArray(const Heap::Array<EntryType, 2> &a… in VerifyArray()
183 Heap::Array<uint16_t, 2> array; in TestHeapArrayOfUint16()
184 Heap::Array<uint16_t, 2> array2; in TestHeapArrayOfUint16()
329 array2.TakeFrom(static_cast<Heap::Array<uint16_t, 2> &&>(array)); in TestHeapArrayOfUint16()
349 Heap::Array<Entry, 2> array; in TestHeapArray()
350 Heap::Array<Entry, 2> array2; in TestHeapArray()
468 array2.TakeFrom(static_cast<Heap::Array<Entry, 2> &&>(array)); in TestHeapArray()
Dtest_array.cpp51 Array<uint16_t, kMaxSize> array; in TestArray()
243 Array<Entry, kMaxSize> array1; in TestArrayCopyAndFindMatching()
244 Array<Entry, kMaxSize> array2; in TestArrayCopyAndFindMatching()
245 Array<Entry, kMaxSize> array3(array1); in TestArrayCopyAndFindMatching()
280 Array<Entry, kMaxSize> array4(array2); in TestArrayCopyAndFindMatching()
412 typedef Array<uint16_t, 255> Array1; in TestArrayIndexType()
413 typedef Array<uint16_t, 256> Array2; in TestArrayIndexType()
414 typedef Array<uint16_t, 100, uint16_t> Array3; in TestArrayIndexType()
Dtest_srp_adv_proxy.cpp128 static Array<DnssdRequest, kDnssdArraySize> sDnssdRegHostRequests;
129 static Array<DnssdRequest, kDnssdArraySize> sDnssdUnregHostRequests;
130 static Array<DnssdRequest, kDnssdArraySize> sDnssdRegServiceRequests;
131 static Array<DnssdRequest, kDnssdArraySize> sDnssdUnregServiceRequests;
132 static Array<DnssdRequest, kDnssdArraySize> sDnssdRegKeyRequests;
133 static Array<DnssdRequest, kDnssdArraySize> sDnssdUnregKeyRequests;
434 Array<void *, 500> sHeapAllocatedPtrs;
/openthread-latest/src/lib/spinel/
Dspinel_driver.hpp231 template <typename Type, uint16_t kMaxSize> class Array class in ot::Spinel::SpinelDriver
236 Array(void) in Array() function in ot::Spinel::SpinelDriver::Array
304 Array<spinel_iid_t, kSpinelHeaderMaxNumIid> mIidList;
316 Array<unsigned int, kCapsBufferSize> mCoprocessorCaps;
/openthread-latest/tests/nexus/platform/
Dnexus_radio.hpp73 Array<uint16_t, kMaxSrcMaatchShort> mSrcMatchShortEntries;
74 Array<Mac::ExtAddress, kMaxSrcMatchExt> mSrcMatchExtEntries;
/openthread-latest/src/core/thread/
Dmlr_manager.hpp102 …typedef Array<Ip6::Address, kMaxMlrAddresses> MlrAddressArray; ///< Registered MLR addresses array.
143 class AddressArray : public Array<Ip6::Address, Ip6AddressesTlv::kMaxAddresses>
Dchild.hpp128 typedef Array<Ip6AddrEntry, kNumIp6Addresses> Ip6AddressArray;
Dnetwork_data_types.hpp134 typedef Array<uint16_t, kMaxRlocs> Rlocs;
Drouter_table.hpp462 Array<Router, Mle::kMaxRouters> mRouters;
Dmle_types.hpp542 Array<uint8_t, kMaxSize> mArray;
/openthread-latest/src/core/net/
Dip6_filter.hpp145 Array<uint16_t, kMaxUnsecurePorts> mUnsecurePorts;
Dnat64_translator.hpp372 Array<Ip4::Address, kAddressMappingPoolSize> mIp4AddressPool;
Dsrp_server.hpp401 Heap::Array<Heap::String> mSubTypes;
574 Heap::Array<Ip6::Address> mAddresses;
Dmdns.hpp834 class AddressArray : public Heap::Array<Ip6::Address>
964 … struct TypeArray : public Array<uint16_t, kTypeArraySize> // Array of record types for NSEC record
1363 Heap::Array<Question> mQuestions;
1838 void ConstructResult(AddressResult &aResult, Heap::Array<AddressAndTtl> &aAddrArray) const;
1933 Heap::Array<const char *, kArrayCapacityIncrement> mSubTypeArray;
Dsrp_advertising_proxy.cpp931 Heap::Array<Ip6::Address> hostAddresses; in RegisterHost()
991 Heap::Array<Heap::String> subTypeHeapStrings; in RegisterService()
992 Heap::Array<const char *> subTypeLabels; in RegisterService()
Dnd6.hpp548 Heap::Array<uint8_t, kCapacityIncrement> mArray;
Ddns_dso.hpp691 Array<Entry, kMaxPendingRequests> mRequests;
/openthread-latest/src/core/utils/
Dpower_calibration.hpp160 typedef Array<CalibratedPowerEntry, kMaxNumCalibratedPowers> CalibratedPowerTable;
/openthread-latest/src/core/radio/
Dtrel_interface.hpp287 typedef Array<Peer, kPeerTableSize, uint16_t> PeerTable;
/openthread-latest/src/core/meshcop/
Ddataset_manager.hpp233 class TlvList : public Array<uint8_t, kMaxGetTypes>
/openthread-latest/src/core/border_router/
Drouting_manager.hpp1212 Array<OldPrefix, kMaxOldPrefixes> mOldLocalPrefixes;
1254 public Heap::Array<RioPrefix>
1256 public Array<RioPrefix, 2 * kMaxOnMeshPrefixes>
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dmain_test.function226 * \param argv Array of command line arguments.

12