|
rippled
|
Typedefs | |
| using | response_type = boost::beast::http::response< boost::beast::http::string_body > |
| using | seed_pair = std::pair< std::uint64_t, std::uint64_t > |
| template<class Engine , class Result = typename Engine::result_type> | |
| using | is_engine = std::is_invocable_r< Result, Engine > |
| template<class T > | |
| using | test_hardened_unordered_set = std::unordered_set< T, hardened_hash<> > |
| template<class T > | |
| using | test_hardened_unordered_map = std::unordered_map< T, int, hardened_hash<> > |
| template<class T > | |
| using | test_hardened_unordered_multiset = std::unordered_multiset< T, hardened_hash<> > |
| template<class T > | |
| using | test_hardened_unordered_multimap = std::unordered_multimap< T, int, hardened_hash<> > |
Functions | |
| constexpr static std::pair< bool, std::uint64_t > | sumOfFirstSquares (std::size_t xIn) |
| std::string | toString (LedgerInfo const &info) |
| Convenience function for printing out basic ledger info. More... | |
| template<bool = true> | |
| seed_pair | make_seed_pair () noexcept |
| void | accessViolation () noexcept |
| template<class = void> | |
| boost::thread_specific_ptr< detail::LocalValues > & | getLocalValues () |
| std::string | getSociSqliteInit (std::string const &name, std::string const &dir, std::string const &ext) |
| std::string | getSociInit (BasicConfig const &config, std::string const &dbName) |
| CashDiff | cashFlowDiff (CashFilter lhsFilter, ApplyViewBase const &lhs, CashFilter rhsFilter, ApplyViewBase const &rhs) |
| static bool | treatZeroOfferAsDeletion (CashSummary &result, bool isDelete, std::shared_ptr< SLE const > const &before, std::shared_ptr< SLE const > const &after) |
| static bool | getBasicCashFlow (CashSummary &result, bool isDelete, std::shared_ptr< SLE const > const &before, std::shared_ptr< SLE const > const &after) |
| static CashSummary | getCashFlow (ReadView const &view, CashFilter f, ApplyStateTable const &table) |
| template<typename BufferSequence > | |
| auto | buffersBegin (BufferSequence const &bufs) |
| template<typename BufferSequence > | |
| auto | buffersEnd (BufferSequence const &bufs) |
| template<class BufferSequence > | |
| std::optional< MessageHeader > | parseMessageHeader (boost::system::error_code &ec, BufferSequence const &bufs, std::size_t size) |
| Parse a message header. More... | |
| template<class T , class Buffers , class = std::enable_if_t< std::is_base_of<::google::protobuf::Message, T>::value>> | |
| std::shared_ptr< T > | parseMessageContent (MessageHeader const &header, Buffers const &buffers) |
| template<class T , class Buffers , class Handler , class = std::enable_if_t< std::is_base_of<::google::protobuf::Message, T>::value>> | |
| bool | invoke (MessageHeader const &header, Buffers const &buffers, Handler &handler) |
| std::vector< std::string > const & | supportedAmendments () |
| Amendments that this server supports, but doesn't enable by default. More... | |
| constexpr std::uint32_t | make_hash_prefix (char a, char b, char c) |
| STAmount | as_amount (Rate const &rate) |
| void | copy_uint32 (std::uint8_t *out, std::uint32_t v) |
| uint256 | deriveDeterministicRootKey (Seed const &seed) |
| template<class T , class... Args> | |
| STVar | make_stvar (Args &&... args) |
| bool | operator== (STVar const &lhs, STVar const &rhs) |
| bool | operator!= (STVar const &lhs, STVar const &rhs) |
| static std::unordered_map< TERUnderlyingType, std::pair< char const *const, char const *const > > const & | transResults () |
| static std::string | encodeBase58 (void const *message, std::size_t size, void *temp, std::size_t temp_size) |
| static std::string | decodeBase58 (std::string const &s) |
| std::string | configContents (std::string const &dbPath, std::string const &validatorsFile) |
| std::string | valFileContents () |
Variables | |
| defaultObject_t | defaultObject |
| nonPresentObject_t | nonPresentObject |
| constexpr std::string_view | isoCharSet |
| constexpr std::size_t | isoCodeOffset = 12 |
| constexpr std::size_t | isoCodeLength = 3 |
| using ripple::detail::response_type = typedef boost::beast::http::response<boost::beast::http::string_body> |
| using ripple::detail::seed_pair = typedef std::pair<std::uint64_t, std::uint64_t> |
Definition at line 39 of file hardened_hash.h.
| using ripple::detail::is_engine = typedef std::is_invocable_r<Result, Engine> |
Definition at line 51 of file ripple/basics/random.h.
| using ripple::detail::test_hardened_unordered_set = typedef std::unordered_set<T, hardened_hash<> > |
Definition at line 83 of file hardened_hash_test.cpp.
| using ripple::detail::test_hardened_unordered_map = typedef std::unordered_map<T, int, hardened_hash<> > |
Definition at line 86 of file hardened_hash_test.cpp.
| using ripple::detail::test_hardened_unordered_multiset = typedef std::unordered_multiset<T, hardened_hash<> > |
Definition at line 90 of file hardened_hash_test.cpp.
| using ripple::detail::test_hardened_unordered_multimap = typedef std::unordered_multimap<T, int, hardened_hash<> > |
Definition at line 94 of file hardened_hash_test.cpp.
|
staticconstexpr |
| std::string ripple::detail::toString | ( | LedgerInfo const & | info | ) |
Convenience function for printing out basic ledger info.
Definition at line 40 of file ReportingETL.cpp.
|
noexcept |
Definition at line 43 of file hardened_hash.h.
|
noexcept |
Definition at line 31 of file contract.cpp.
| boost::thread_specific_ptr<detail::LocalValues>& ripple::detail::getLocalValues | ( | ) |
Definition at line 74 of file LocalValue.h.
| std::string ripple::detail::getSociSqliteInit | ( | std::string const & | name, |
| std::string const & | dir, | ||
| std::string const & | ext | ||
| ) |
Definition at line 42 of file SociDB.cpp.
| std::string ripple::detail::getSociInit | ( | BasicConfig const & | config, |
| std::string const & | dbName | ||
| ) |
Definition at line 60 of file SociDB.cpp.
| CashDiff ripple::detail::cashFlowDiff | ( | CashFilter | lhsFilter, |
| ApplyViewBase const & | lhs, | ||
| CashFilter | rhsFilter, | ||
| ApplyViewBase const & | rhs | ||
| ) |
Definition at line 181 of file ApplyViewBase.cpp.
|
static |
Definition at line 111 of file CashDiff.cpp.
|
static |
Definition at line 159 of file CashDiff.cpp.
|
static |
Definition at line 249 of file CashDiff.cpp.
| auto ripple::detail::buffersBegin | ( | BufferSequence const & | bufs | ) |
Definition at line 149 of file ProtocolMessage.h.
| auto ripple::detail::buffersEnd | ( | BufferSequence const & | bufs | ) |
Definition at line 157 of file ProtocolMessage.h.
| std::optional<MessageHeader> ripple::detail::parseMessageHeader | ( | boost::system::error_code & | ec, |
| BufferSequence const & | bufs, | ||
| std::size_t | size | ||
| ) |
Parse a message header.
| ec | contains more information:
|
Definition at line 174 of file ProtocolMessage.h.
| std::shared_ptr<T> ripple::detail::parseMessageContent | ( | MessageHeader const & | header, |
| Buffers const & | buffers | ||
| ) |
Definition at line 269 of file ProtocolMessage.h.
| bool ripple::detail::invoke | ( | MessageHeader const & | header, |
| Buffers const & | buffers, | ||
| Handler & | handler | ||
| ) |
Definition at line 304 of file ProtocolMessage.h.
| std::vector< std::string > const & ripple::detail::supportedAmendments | ( | ) |
Amendments that this server supports, but doesn't enable by default.
Definition at line 81 of file Feature.cpp.
|
constexpr |
Definition at line 31 of file HashPrefix.h.
| void ripple::detail::copy_uint32 | ( | std::uint8_t * | out, |
| std::uint32_t | v | ||
| ) |
Definition at line 59 of file SecretKey.cpp.
Definition at line 68 of file SecretKey.cpp.
| STVar ripple::detail::make_stvar | ( | Args &&... | args | ) |
|
static |
|
static |
Definition at line 99 of file tokens.cpp.
|
static |
Definition at line 150 of file tokens.cpp.
| std::string ripple::detail::configContents | ( | std::string const & | dbPath, |
| std::string const & | validatorsFile | ||
| ) |
Definition at line 34 of file Config_test.cpp.
| std::string ripple::detail::valFileContents | ( | ) |
Definition at line 206 of file Config_test.cpp.
| defaultObject_t ripple::detail::defaultObject |
| nonPresentObject_t ripple::detail::nonPresentObject |
|
constexpr |
Definition at line 35 of file UintTypes.cpp.
|
constexpr |
Definition at line 42 of file UintTypes.cpp.
|
constexpr |
Definition at line 45 of file UintTypes.cpp.
1.8.17