/root/bitcoin/src/util/fs.h
Line | Count | Source |
1 | | // Copyright (c) 2017-present The Bitcoin Core developers |
2 | | // Distributed under the MIT software license, see the accompanying |
3 | | // file COPYING or http://www.opensource.org/licenses/mit-license.php. |
4 | | |
5 | | #ifndef BITCOIN_UTIL_FS_H |
6 | | #define BITCOIN_UTIL_FS_H |
7 | | |
8 | | // IWYU incorrectly suggests removing this header. |
9 | | // See https://github.com/include-what-you-use/include-what-you-use/issues/1931. |
10 | | #include <tinyformat.h> // IWYU pragma: keep |
11 | | |
12 | | #include <cstdio> |
13 | | // The `util/fs.h` header is designed to be a drop-in replacement for `filesystem`. |
14 | | #include <filesystem> // IWYU pragma: export |
15 | | #include <functional> |
16 | | #include <iomanip> |
17 | | #include <ios> |
18 | | #include <string> |
19 | | #include <string_view> |
20 | | #include <type_traits> |
21 | | #include <utility> |
22 | | |
23 | | /** Filesystem operations and types */ |
24 | | namespace fs { |
25 | | |
26 | | using namespace std::filesystem; |
27 | | |
28 | | /** |
29 | | * Path class wrapper to block calls to the fs::path(std::string) implicit |
30 | | * constructor and the fs::path::string() method, which have unsafe and |
31 | | * unpredictable behavior on Windows (see implementation note in |
32 | | * \ref PathToString for details) |
33 | | */ |
34 | | class path : public std::filesystem::path |
35 | | { |
36 | | public: |
37 | | using std::filesystem::path::path; |
38 | | |
39 | | // Convenience method for accessing standard path type without needing a cast. |
40 | 0 | std::filesystem::path& std_path() { return *this; } |
41 | 0 | const std::filesystem::path& std_path() const { return *this; } |
42 | | |
43 | | // Allow path objects arguments for compatibility. |
44 | 2.05k | path(std::filesystem::path path) : std::filesystem::path::path(std::move(path)) {} |
45 | 0 | path& operator=(std::filesystem::path path) { std::filesystem::path::operator=(std::move(path)); return *this; } |
46 | 0 | path& operator/=(const std::filesystem::path& path) { std::filesystem::path::operator/=(path); return *this; } |
47 | | |
48 | | // Allow literal string arguments, which are safe as long as the literals are ASCII. |
49 | 1.00k | path(const char* c) : std::filesystem::path(c) {} |
50 | 0 | path& operator=(const char* c) { std::filesystem::path::operator=(c); return *this; } |
51 | 11.0k | path& operator/=(const char* c) { std::filesystem::path::operator/=(c); return *this; } |
52 | 0 | path& append(const char* c) { std::filesystem::path::append(c); return *this; } |
53 | | |
54 | | // Disallow std::string arguments to avoid locale-dependent decoding on windows. |
55 | | path(std::string) = delete; |
56 | | path& operator=(std::string) = delete; |
57 | | path& operator/=(std::string) = delete; |
58 | | path& append(std::string) = delete; |
59 | | |
60 | | // Disallow std::string conversion method to avoid locale-dependent encoding on windows. |
61 | | std::string string() const = delete; |
62 | | |
63 | | // Disallow implicit string conversion to ensure code is portable. |
64 | | // `string_type` may be `string` or `wstring` depending on the platform, so |
65 | | // using this conversion could result in code that compiles on unix but |
66 | | // fails to compile on windows, or vice versa. |
67 | | operator string_type() const = delete; |
68 | | |
69 | | /** |
70 | | * Return a UTF-8 representation of the path as a std::string, for |
71 | | * compatibility with code using std::string. For code using the newer |
72 | | * std::u8string type, it is more efficient to call the inherited |
73 | | * std::filesystem::path::u8string method instead. |
74 | | */ |
75 | | std::string utf8string() const |
76 | 0 | { |
77 | 0 | const std::u8string& utf8_str{std::filesystem::path::u8string()}; |
78 | 0 | return std::string{utf8_str.begin(), utf8_str.end()}; |
79 | 0 | } |
80 | | }; |
81 | | |
82 | | static inline path u8path(std::string_view utf8_str) |
83 | 0 | { |
84 | 0 | return std::filesystem::path(std::u8string{utf8_str.begin(), utf8_str.end()}); |
85 | 0 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: addrman.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: asmap.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: autofile.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: banman.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: bip324.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: bitset.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: block.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: block_header.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: block_index.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: chain.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coins_view.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: connman.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: dbwrapper.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: deserialize.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: feefrac.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: fees.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: flatfile.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: float.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: headerssync.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: hex.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: http_request.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: i2p.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: integer.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: key.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: merkle.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: message.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: miniscript.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: minisketch.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: muhash.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: net.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: netaddress.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: pcp.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: package_eval.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: poolresource.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: pow.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: process_message.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: process_messages.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: protocol.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: random.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: rbf.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: rpc.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: script.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: script_format.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: script_ops.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: script_sign.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: signet.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: socks5.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: span.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: string.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: strprintf.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: system.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: threadpool.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: transaction.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txorphan.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txrequest.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: versionbits.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coinselection.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: crypter.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: spend.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mempool.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: fuzz.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: util.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: client.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: chainparams.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: messages.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: settings.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: request.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: config.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: fs.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: logging.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: streams.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: dump.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: migrate.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: wallet.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: walletdb.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: walletutil.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: db.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: interfaces.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: load.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: receive.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: sqlite.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: feebumper.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: addresses.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: backup.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coins.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: encrypt.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: signmessage.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: transactions.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mining.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: setup_common.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txmempool.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: validation.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: addrdb.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: httpserver.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: init.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coinstats.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mapport.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: net_processing.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: netgroup.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: caches.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: chainstate.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: context.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: database_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: miner.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: mining_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: rest.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: blockchain.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: node.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: output_script.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: server.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: server_util.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txdb.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: httprpc.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: base.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txindex.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: abort.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: coin.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: common.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL6u8pathESt17basic_string_viewIcSt11char_traitsIcEE |
86 | | |
87 | | // Disallow implicit std::string conversion for absolute to avoid |
88 | | // locale-dependent encoding on windows. |
89 | | static inline path absolute(const path& p) |
90 | 1 | { |
91 | 1 | return std::filesystem::absolute(p); |
92 | 1 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: addrman.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: asmap.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: autofile.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: banman.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: bip324.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: bitset.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: block.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: block_header.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: block_index.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: chain.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coins_view.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: connman.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: dbwrapper.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: deserialize.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: feefrac.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: fees.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: flatfile.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: float.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: headerssync.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: hex.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: http_request.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: i2p.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: integer.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: key.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: merkle.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: message.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: miniscript.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: minisketch.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: muhash.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: net.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: netaddress.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: pcp.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: package_eval.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: poolresource.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: pow.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: process_message.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: process_messages.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: protocol.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: random.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: rbf.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: rpc.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: script.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: script_format.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: script_ops.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: script_sign.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: signet.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: socks5.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: span.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: string.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: strprintf.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: system.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: threadpool.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: transaction.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txorphan.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txrequest.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: versionbits.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coinselection.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: crypter.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: spend.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mempool.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: fuzz.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: util.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: client.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: chainparams.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL8absoluteERKNS_4pathE args.cpp:_ZN2fsL8absoluteERKNS_4pathE Line | Count | Source | 90 | 1 | { | 91 | 1 | return std::filesystem::absolute(p); | 92 | 1 | } |
Unexecuted instantiation: messages.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: settings.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: request.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: config.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: fs.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: logging.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: streams.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: dump.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: migrate.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: wallet.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: walletdb.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: walletutil.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: db.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: interfaces.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: load.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: receive.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: sqlite.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: feebumper.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: addresses.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: backup.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coins.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: encrypt.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: signmessage.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: transactions.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mining.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: setup_common.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txmempool.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: validation.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: addrdb.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: httpserver.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: init.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coinstats.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mapport.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: net_processing.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: netgroup.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: caches.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: chainstate.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: context.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: database_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: miner.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: mining_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: rest.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: blockchain.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: node.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: output_script.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: server.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: server_util.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txdb.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: httprpc.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: base.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txindex.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: abort.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: coin.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: common.cpp:_ZN2fsL8absoluteERKNS_4pathE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL8absoluteERKNS_4pathE |
93 | | |
94 | | // Disallow implicit std::string conversion for exists to avoid |
95 | | // locale-dependent encoding on windows. |
96 | | static inline bool exists(const path& p) |
97 | 11.3k | { |
98 | 11.3k | return std::filesystem::exists(p); |
99 | 11.3k | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: addrman.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: asmap.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: autofile.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: banman.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: bip324.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: bitset.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: block.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: block_header.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: block_index.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: chain.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coins_view.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: connman.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: dbwrapper.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: deserialize.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: feefrac.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: fees.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: flatfile.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: float.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: headerssync.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: hex.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: http_request.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: i2p.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: integer.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: key.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: merkle.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: message.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: miniscript.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: minisketch.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: muhash.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: net.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: netaddress.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: pcp.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: package_eval.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: poolresource.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: pow.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: process_message.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: process_messages.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: protocol.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: random.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: rbf.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: rpc.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: script.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: script_format.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: script_ops.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: script_sign.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: signet.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: socks5.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: span.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: string.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: strprintf.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: system.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: threadpool.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: transaction.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txorphan.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txrequest.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: versionbits.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coinselection.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: crypter.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: spend.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mempool.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: fuzz.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: util.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: client.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: chainparams.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: messages.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: settings.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: request.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: config.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: fs.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: logging.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: streams.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: dump.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: migrate.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: wallet.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: walletdb.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: walletutil.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: db.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: interfaces.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: load.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: receive.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: sqlite.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: feebumper.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: addresses.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: backup.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coins.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: encrypt.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: signmessage.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: transactions.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mining.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: setup_common.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txmempool.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: validation.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: addrdb.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: httpserver.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: init.cpp:_ZN2fsL6existsERKNS_4pathE blocktreestorage.cpp:_ZN2fsL6existsERKNS_4pathE Line | Count | Source | 97 | 11.3k | { | 98 | 11.3k | return std::filesystem::exists(p); | 99 | 11.3k | } |
Unexecuted instantiation: coinstats.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mapport.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: net_processing.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: netgroup.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: caches.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: chainstate.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: context.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: database_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: miner.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: mining_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: rest.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: blockchain.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: node.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: output_script.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: server.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: server_util.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txdb.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: httprpc.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: base.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txindex.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: abort.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: coin.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: common.cpp:_ZN2fsL6existsERKNS_4pathE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL6existsERKNS_4pathE |
100 | | static inline bool exists(const std::filesystem::file_status& s) |
101 | 0 | { |
102 | 0 | return std::filesystem::exists(s); |
103 | 0 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: addrman.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: asmap.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: autofile.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: banman.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: bip324.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: bitset.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: block.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: block_header.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: block_index.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: chain.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coins_view.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: connman.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: dbwrapper.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: deserialize.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: feefrac.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: fees.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: flatfile.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: float.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: headerssync.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: hex.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: http_request.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: i2p.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: integer.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: key.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: merkle.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: message.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: miniscript.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: minisketch.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: muhash.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: net.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: netaddress.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: pcp.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: package_eval.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: poolresource.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: pow.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: process_message.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: process_messages.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: protocol.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: random.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: rbf.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: rpc.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: script.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: script_format.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: script_ops.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: script_sign.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: signet.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: socks5.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: span.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: string.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: strprintf.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: system.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: threadpool.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: transaction.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txorphan.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txrequest.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: versionbits.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coinselection.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: crypter.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: spend.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mempool.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: fuzz.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: util.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: client.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: chainparams.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: messages.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: settings.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: request.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: config.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: fs.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: logging.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: streams.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: dump.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: migrate.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: wallet.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: walletdb.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: walletutil.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: db.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: interfaces.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: load.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: receive.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: sqlite.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: feebumper.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: addresses.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: backup.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coins.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: encrypt.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: signmessage.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: transactions.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mining.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: setup_common.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txmempool.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: validation.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: addrdb.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: httpserver.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: init.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coinstats.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mapport.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: net_processing.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: netgroup.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: caches.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: chainstate.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: context.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: database_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: miner.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: mining_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: rest.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: blockchain.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: node.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: output_script.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: server.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: server_util.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txdb.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: httprpc.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: base.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txindex.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: abort.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: coin.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: common.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL6existsERKNSt10filesystem11file_statusE |
104 | | |
105 | | // Allow explicit quoted stream I/O. |
106 | | static inline auto quoted(const std::string& s) |
107 | 0 | { |
108 | 0 | return std::quoted(s, '"', '&'); |
109 | 0 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: addrman.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: asmap.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: autofile.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: banman.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bip324.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bitset.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_header.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_index.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chain.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coins_view.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: connman.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: dbwrapper.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: deserialize.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: feefrac.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fees.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: flatfile.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: float.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: headerssync.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: hex.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: http_request.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: i2p.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: integer.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: key.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: merkle.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: message.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: miniscript.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: minisketch.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: muhash.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: net.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: netaddress.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: pcp.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: package_eval.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: poolresource.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: pow.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: process_message.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: process_messages.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: protocol.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: random.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rbf.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rpc.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_format.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_ops.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_sign.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: signet.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: socks5.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: span.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: string.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: strprintf.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: system.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: threadpool.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: transaction.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txorphan.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txrequest.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: versionbits.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinselection.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypter.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: spend.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fuzz.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: util.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: client.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainparams.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: messages.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: settings.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: request.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: config.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fs.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: logging.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: streams.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: dump.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: migrate.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: wallet.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: walletdb.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: walletutil.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: db.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: interfaces.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: load.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: receive.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: sqlite.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: feebumper.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: addresses.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: backup.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coins.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: encrypt.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: signmessage.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: transactions.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mining.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: setup_common.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txmempool.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: validation.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: addrdb.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: httpserver.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: init.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinstats.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mapport.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: net_processing.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: netgroup.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: caches.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainstate.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: context.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: database_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: miner.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mining_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rest.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockchain.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: node.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: output_script.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: server.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: server_util.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txdb.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: httprpc.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: base.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txindex.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: abort.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coin.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: common.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL6quotedERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE |
110 | | |
111 | | // Allow safe path append operations. |
112 | | static inline path operator/(path p1, const path& p2) |
113 | 0 | { |
114 | 0 | p1 /= p2; |
115 | 0 | return p1; |
116 | 0 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: addrman.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: asmap.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: asmap_direct.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: autofile.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: banman.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: bip324.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: bitdeque.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: bitset.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: block.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: block_header.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: block_index.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: block_index_diff.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: block_index_tree.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: blockfilter.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: bloom_filter.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: buffered_file.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: chain.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: checkqueue.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: cmpctblock.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coins_view.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: connman.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_common.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: cuckoocache.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: dbwrapper.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: deserialize.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: feefrac.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: fee_rate.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: feeratediagram.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: fees.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: flatfile.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: float.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: golomb_rice.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: headerssync.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: hex.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: http_request.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: i2p.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: integer.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: key.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: merkle.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: merkleblock.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: message.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: miniscript.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: minisketch.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mini_miner.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: muhash.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: net.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: net_permissions.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: netaddress.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: node_eviction.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: pcp.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: package_eval.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: parse_univalue.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: policy_estimator.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: poolresource.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: pow.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: process_message.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: process_messages.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: protocol.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: random.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: rbf.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: rpc.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: script.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: script_format.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: script_interpreter.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: script_ops.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: script_sigcache.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: script_sign.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: signature_checker.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: signet.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: socks5.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: span.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: string.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: strprintf.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: system.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: threadpool.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: timeoffsets.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: torcontrol.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: transaction.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txdownloadman.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: tx_pool.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txorphan.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txrequest.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: vecdeque.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: versionbits.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coincontrol.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coinselection.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: crypter.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: spend.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mempool.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: fuzz.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: util.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: client.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: chainparams.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: messages.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: settings.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: request.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: config.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: fs.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: fs_helpers.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: readwritefile.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: logging.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: streams.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: dump.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: migrate.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: wallet.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: walletdb.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: walletutil.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: db.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: interfaces.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: load.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: receive.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: sqlite.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: feebumper.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: addresses.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: backup.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coins.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: encrypt.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: signmessage.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: transactions.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mining.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: setup_common.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txmempool.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: validation.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: addrdb.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: blockencodings.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: tx_verify.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: httpserver.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: init.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coinstats.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mapport.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: net_processing.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: netgroup.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: blockstorage.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: caches.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: chainstate.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coins_view_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: context.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: database_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mempool_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mempool_persist.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: miner.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: mining_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: peerman_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txorphanage.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txreconciliation.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: private_broadcast.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: rest.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: blockchain.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: node.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: output_script.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: rawtransaction.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: server.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: server_util.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txoutproof.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txdb.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: validationinterface.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: httprpc.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: base.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txindex.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: txospenderindex.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: abort.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: coin.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: common.cpp:_ZN2fsdvENS_4pathERKS0_ Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsdvENS_4pathERKS0_ |
117 | | static inline path operator/(path p1, const char* p2) |
118 | 11.0k | { |
119 | 11.0k | p1 /= p2; |
120 | 11.0k | return p1; |
121 | 11.0k | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: addrman.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: asmap.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: asmap_direct.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: autofile.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: banman.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: bip324.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: bitdeque.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: bitset.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: block.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: block_header.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: block_index.cpp:_ZN2fsdvENS_4pathEPKc block_index_diff.cpp:_ZN2fsdvENS_4pathEPKc Line | Count | Source | 118 | 1.00k | { | 119 | 1.00k | p1 /= p2; | 120 | 1.00k | return p1; | 121 | 1.00k | } |
Unexecuted instantiation: block_index_tree.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: blockfilter.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: bloom_filter.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: buffered_file.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: chain.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: checkqueue.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: cmpctblock.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coins_view.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: connman.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_common.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: cuckoocache.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: dbwrapper.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: deserialize.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: feefrac.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: fee_rate.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: feeratediagram.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: fees.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: flatfile.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: float.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: golomb_rice.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: headerssync.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: hex.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: http_request.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: i2p.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: integer.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: key.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: merkle.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: merkleblock.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: message.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: miniscript.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: minisketch.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mini_miner.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: muhash.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: net.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: net_permissions.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: netaddress.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: node_eviction.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: pcp.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: package_eval.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: parse_univalue.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: policy_estimator.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: poolresource.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: pow.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: process_message.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: process_messages.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: protocol.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: random.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: rbf.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: rpc.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: script.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: script_format.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: script_interpreter.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: script_ops.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: script_sigcache.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: script_sign.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: signature_checker.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: signet.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: socks5.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: span.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: string.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: strprintf.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: system.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: threadpool.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: timeoffsets.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: torcontrol.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: transaction.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txdownloadman.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: tx_pool.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txorphan.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txrequest.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: vecdeque.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: versionbits.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coincontrol.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coinselection.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: crypter.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: spend.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mempool.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: fuzz.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: util.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: client.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: chainparams.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: messages.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: settings.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: request.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: config.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: fs.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: fs_helpers.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: readwritefile.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: logging.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: streams.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: dump.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: migrate.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: wallet.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: walletdb.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: walletutil.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: db.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: interfaces.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: load.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: receive.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: sqlite.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: feebumper.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: addresses.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: backup.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coins.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: encrypt.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: signmessage.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: transactions.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mining.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: setup_common.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txmempool.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: validation.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: addrdb.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: blockencodings.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: tx_verify.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: httpserver.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: init.cpp:_ZN2fsdvENS_4pathEPKc blocktreestorage.cpp:_ZN2fsdvENS_4pathEPKc Line | Count | Source | 118 | 10.0k | { | 119 | 10.0k | p1 /= p2; | 120 | 10.0k | return p1; | 121 | 10.0k | } |
Unexecuted instantiation: coinstats.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mapport.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: net_processing.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: netgroup.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: blockstorage.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: caches.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: chainstate.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coins_view_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: context.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: database_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mempool_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mempool_persist.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: miner.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: mining_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: peerman_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txorphanage.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txreconciliation.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: private_broadcast.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: rest.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: blockchain.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: node.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: output_script.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: rawtransaction.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: server.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: server_util.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txoutproof.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txdb.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: validationinterface.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: httprpc.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: base.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txindex.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: txospenderindex.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: abort.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: coin.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: common.cpp:_ZN2fsdvENS_4pathEPKc Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsdvENS_4pathEPKc |
122 | | static inline path operator+(path p1, const char* p2) |
123 | 0 | { |
124 | 0 | p1 += p2; |
125 | 0 | return p1; |
126 | 0 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: addrman.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: asmap.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: asmap_direct.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: autofile.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: banman.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: bip324.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: bitdeque.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: bitset.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: block.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: block_header.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: block_index.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: block_index_diff.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: block_index_tree.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: blockfilter.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: bloom_filter.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: buffered_file.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: chain.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: checkqueue.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: cmpctblock.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coins_view.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: connman.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_common.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: cuckoocache.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: dbwrapper.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: deserialize.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: feefrac.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: fee_rate.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: feeratediagram.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: fees.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: flatfile.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: float.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: golomb_rice.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: headerssync.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: hex.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: http_request.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: i2p.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: integer.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: key.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: merkle.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: merkleblock.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: message.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: miniscript.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: minisketch.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mini_miner.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: muhash.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: net.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: net_permissions.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: netaddress.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: node_eviction.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: pcp.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: package_eval.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: parse_univalue.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: policy_estimator.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: poolresource.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: pow.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: process_message.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: process_messages.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: protocol.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: random.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: rbf.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: rpc.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: script.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: script_format.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: script_interpreter.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: script_ops.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: script_sigcache.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: script_sign.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: signature_checker.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: signet.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: socks5.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: span.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: string.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: strprintf.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: system.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: threadpool.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: timeoffsets.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: torcontrol.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: transaction.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txdownloadman.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: tx_pool.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txorphan.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txrequest.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: vecdeque.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: versionbits.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coincontrol.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coinselection.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: crypter.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: spend.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mempool.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: fuzz.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: util.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: client.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: chainparams.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: messages.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: settings.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: request.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: config.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: fs.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: fs_helpers.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: readwritefile.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: logging.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: streams.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: dump.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: migrate.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: wallet.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: walletdb.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: walletutil.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: db.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: interfaces.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: load.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: receive.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: sqlite.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: feebumper.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: addresses.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: backup.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coins.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: encrypt.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: signmessage.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: transactions.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mining.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: setup_common.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txmempool.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: validation.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: addrdb.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: blockencodings.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: tx_verify.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: httpserver.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: init.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coinstats.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mapport.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: net_processing.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: netgroup.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: blockstorage.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: caches.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: chainstate.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coins_view_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: context.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: database_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mempool_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mempool_persist.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: miner.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: mining_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: peerman_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txorphanage.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txreconciliation.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: private_broadcast.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: rest.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: blockchain.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: node.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: output_script.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: rawtransaction.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: server.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: server_util.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txoutproof.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txdb.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: validationinterface.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: httprpc.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: base.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txindex.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: txospenderindex.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: abort.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: coin.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: common.cpp:_ZN2fsplENS_4pathEPKc Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsplENS_4pathEPKc |
127 | | static inline path operator+(path p1, path::value_type p2) |
128 | 0 | { |
129 | 0 | p1 += p2; |
130 | 0 | return p1; |
131 | 0 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: addrman.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: asmap.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: asmap_direct.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: autofile.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: banman.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: bip324.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: bitdeque.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: bitset.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: block.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: block_header.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: block_index.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: block_index_diff.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: block_index_tree.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: blockfilter.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: bloom_filter.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: buffered_file.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: chain.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: checkqueue.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: cmpctblock.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coins_view.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: connman.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_common.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: cuckoocache.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: dbwrapper.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: deserialize.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: feefrac.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: fee_rate.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: feeratediagram.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: fees.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: flatfile.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: float.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: golomb_rice.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: headerssync.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: hex.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: http_request.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: i2p.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: integer.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: key.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: merkle.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: merkleblock.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: message.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: miniscript.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: minisketch.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mini_miner.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: muhash.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: net.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: net_permissions.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: netaddress.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: node_eviction.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: pcp.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: package_eval.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: parse_univalue.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: policy_estimator.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: poolresource.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: pow.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: process_message.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: process_messages.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: protocol.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: random.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: rbf.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: rpc.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: script.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: script_format.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: script_interpreter.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: script_ops.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: script_sigcache.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: script_sign.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: signature_checker.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: signet.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: socks5.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: span.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: string.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: strprintf.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: system.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: threadpool.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: timeoffsets.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: torcontrol.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: transaction.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txdownloadman.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: tx_pool.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txorphan.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txrequest.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: vecdeque.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: versionbits.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coincontrol.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coinselection.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: crypter.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: spend.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mempool.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: fuzz.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: util.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: client.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: chainparams.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: messages.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: settings.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: request.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: config.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: fs.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: fs_helpers.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: readwritefile.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: logging.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: streams.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: dump.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: migrate.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: wallet.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: walletdb.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: walletutil.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: db.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: interfaces.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: load.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: receive.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: sqlite.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: feebumper.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: addresses.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: backup.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coins.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: encrypt.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: signmessage.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: transactions.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mining.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: setup_common.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txmempool.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: validation.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: addrdb.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: blockencodings.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: tx_verify.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: httpserver.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: init.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coinstats.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mapport.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: net_processing.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: netgroup.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: blockstorage.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: caches.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: chainstate.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coins_view_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: context.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: database_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mempool_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mempool_persist.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: miner.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: mining_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: peerman_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txorphanage.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txreconciliation.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: private_broadcast.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: rest.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: blockchain.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: node.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: output_script.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: rawtransaction.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: server.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: server_util.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txoutproof.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txdb.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: validationinterface.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: httprpc.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: base.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txindex.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: txospenderindex.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: abort.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: coin.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: common.cpp:_ZN2fsplENS_4pathEc Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsplENS_4pathEc |
132 | | |
133 | | // Disallow unsafe path append operations. |
134 | | template<typename T> static inline path operator/(path p1, T p2) = delete; |
135 | | template<typename T> static inline path operator+(path p1, T p2) = delete; |
136 | | |
137 | | // Disallow implicit std::string conversion for copy_file |
138 | | // to avoid locale-dependent encoding on Windows. |
139 | | static inline bool copy_file(const path& from, const path& to, copy_options options) |
140 | 0 | { |
141 | 0 | return std::filesystem::copy_file(from, to, options); |
142 | 0 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: addrman.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: asmap.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: autofile.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: banman.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: bip324.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: bitset.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: block.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: block_header.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: block_index.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: chain.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coins_view.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: connman.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: dbwrapper.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: deserialize.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: feefrac.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: fees.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: flatfile.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: float.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: headerssync.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: hex.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: http_request.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: i2p.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: integer.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: key.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: merkle.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: message.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: miniscript.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: minisketch.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: muhash.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: net.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: netaddress.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: pcp.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: package_eval.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: poolresource.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: pow.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: process_message.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: process_messages.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: protocol.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: random.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: rbf.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: rpc.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: script.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: script_format.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: script_ops.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: script_sign.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: signet.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: socks5.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: span.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: string.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: strprintf.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: system.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: threadpool.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: transaction.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txorphan.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txrequest.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: versionbits.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coinselection.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: crypter.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: spend.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mempool.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: fuzz.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: util.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: client.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: chainparams.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: messages.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: settings.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: request.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: config.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: fs.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: logging.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: streams.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: dump.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: migrate.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: wallet.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: walletdb.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: walletutil.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: db.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: interfaces.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: load.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: receive.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: sqlite.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: feebumper.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: addresses.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: backup.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coins.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: encrypt.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: signmessage.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: transactions.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mining.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: setup_common.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txmempool.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: validation.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: addrdb.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: httpserver.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: init.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coinstats.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mapport.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: net_processing.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: netgroup.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: caches.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: chainstate.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: context.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: database_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: miner.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: mining_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: rest.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: blockchain.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: node.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: output_script.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: server.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: server_util.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txdb.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: httprpc.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: base.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txindex.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: abort.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: coin.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: common.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL9copy_fileERKNS_4pathES2_NSt10filesystem12copy_optionsE |
143 | | |
144 | | /** |
145 | | * Convert path object to a byte string. On POSIX, paths natively are byte |
146 | | * strings, so this is trivial. On Windows, paths natively are Unicode, so an |
147 | | * encoding step is necessary. The inverse of \ref PathToString is \ref |
148 | | * PathFromString. The strings returned and parsed by these functions can be |
149 | | * used to call POSIX APIs, and for roundtrip conversion, logging, and |
150 | | * debugging. |
151 | | * |
152 | | * Because \ref PathToString and \ref PathFromString functions don't specify an |
153 | | * encoding, they are meant to be used internally, not externally. They are not |
154 | | * appropriate to use in applications requiring UTF-8, where |
155 | | * fs::path::u8string() / fs::path::utf8string() and fs::u8path() methods should be used instead. Other |
156 | | * applications could require still different encodings. For example, JSON, XML, |
157 | | * or URI applications might prefer to use higher-level escapes (\uXXXX or |
158 | | * &XXXX; or %XX) instead of multibyte encoding. Rust, Python, Java applications |
159 | | * may require encoding paths with their respective UTF-8 derivatives WTF-8, |
160 | | * PEP-383, and CESU-8 (see https://en.wikipedia.org/wiki/UTF-8#Derivatives). |
161 | | */ |
162 | | static inline std::string PathToString(const path& path) |
163 | 3.00k | { |
164 | | // Implementation note: On Windows, the std::filesystem::path(string) |
165 | | // constructor and std::filesystem::path::string() method are not safe to |
166 | | // use here, because these methods encode the path using C++'s narrow |
167 | | // multibyte encoding, which on Windows corresponds to the current "code |
168 | | // page", which is unpredictable and typically not able to represent all |
169 | | // valid paths. So fs::path::utf8string() and |
170 | | // fs::u8path() functions are used instead on Windows. On |
171 | | // POSIX, u8string/utf8string/u8path functions are not safe to use because paths are |
172 | | // not always valid UTF-8, so plain string methods which do not transform |
173 | | // the path there are used. |
174 | | #ifdef WIN32 |
175 | | return path.utf8string(); |
176 | | #else |
177 | 3.00k | static_assert(std::is_same_v<path::string_type, std::string>, "PathToString not implemented on this platform"); |
178 | 3.00k | return path.std::filesystem::path::string(); |
179 | 3.00k | #endif |
180 | 3.00k | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: addrman.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: asmap.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: autofile.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: banman.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: bip324.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: bitset.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: block.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: block_header.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: block_index.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: chain.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coins_view.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: connman.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE dbwrapper.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Line | Count | Source | 163 | 3.00k | { | 164 | | // Implementation note: On Windows, the std::filesystem::path(string) | 165 | | // constructor and std::filesystem::path::string() method are not safe to | 166 | | // use here, because these methods encode the path using C++'s narrow | 167 | | // multibyte encoding, which on Windows corresponds to the current "code | 168 | | // page", which is unpredictable and typically not able to represent all | 169 | | // valid paths. So fs::path::utf8string() and | 170 | | // fs::u8path() functions are used instead on Windows. On | 171 | | // POSIX, u8string/utf8string/u8path functions are not safe to use because paths are | 172 | | // not always valid UTF-8, so plain string methods which do not transform | 173 | | // the path there are used. | 174 | | #ifdef WIN32 | 175 | | return path.utf8string(); | 176 | | #else | 177 | 3.00k | static_assert(std::is_same_v<path::string_type, std::string>, "PathToString not implemented on this platform"); | 178 | 3.00k | return path.std::filesystem::path::string(); | 179 | 3.00k | #endif | 180 | 3.00k | } |
Unexecuted instantiation: deserialize.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: feefrac.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: fees.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: flatfile.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: float.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: headerssync.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: hex.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: http_request.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: i2p.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: integer.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: key.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: merkle.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: message.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: miniscript.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: minisketch.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: muhash.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: net.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: netaddress.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: pcp.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: package_eval.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: poolresource.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: pow.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: process_message.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: process_messages.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: protocol.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: random.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: rbf.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: rpc.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: script.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: script_format.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: script_ops.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: script_sign.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: signet.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: socks5.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: span.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: string.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: strprintf.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: system.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: threadpool.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: transaction.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txorphan.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txrequest.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: versionbits.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coinselection.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: crypter.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: spend.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mempool.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: fuzz.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: util.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: client.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: chainparams.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: messages.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: settings.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: request.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: config.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: fs.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: logging.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: streams.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: dump.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: migrate.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: wallet.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: walletdb.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: walletutil.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: db.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: interfaces.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: load.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: receive.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: sqlite.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: feebumper.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: addresses.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: backup.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coins.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: encrypt.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: signmessage.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: transactions.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mining.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE setup_common.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Line | Count | Source | 163 | 1 | { | 164 | | // Implementation note: On Windows, the std::filesystem::path(string) | 165 | | // constructor and std::filesystem::path::string() method are not safe to | 166 | | // use here, because these methods encode the path using C++'s narrow | 167 | | // multibyte encoding, which on Windows corresponds to the current "code | 168 | | // page", which is unpredictable and typically not able to represent all | 169 | | // valid paths. So fs::path::utf8string() and | 170 | | // fs::u8path() functions are used instead on Windows. On | 171 | | // POSIX, u8string/utf8string/u8path functions are not safe to use because paths are | 172 | | // not always valid UTF-8, so plain string methods which do not transform | 173 | | // the path there are used. | 174 | | #ifdef WIN32 | 175 | | return path.utf8string(); | 176 | | #else | 177 | 1 | static_assert(std::is_same_v<path::string_type, std::string>, "PathToString not implemented on this platform"); | 178 | 1 | return path.std::filesystem::path::string(); | 179 | 1 | #endif | 180 | 1 | } |
Unexecuted instantiation: txmempool.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: validation.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: addrdb.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: httpserver.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: init.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coinstats.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mapport.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: net_processing.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: netgroup.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: caches.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: chainstate.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: context.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: database_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: miner.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: mining_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: rest.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: blockchain.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: node.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: output_script.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: server.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: server_util.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txdb.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: httprpc.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: base.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txindex.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: abort.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: coin.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: common.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL12PathToStringB5cxx11ERKNS_4pathE |
181 | | |
182 | | /** |
183 | | * Convert byte string to path object. Inverse of \ref PathToString. |
184 | | */ |
185 | | static inline path PathFromString(const std::string& string) |
186 | 1 | { |
187 | | #ifdef WIN32 |
188 | | return u8path(string); |
189 | | #else |
190 | 1 | return std::filesystem::path(string); |
191 | 1 | #endif |
192 | 1 | } Unexecuted instantiation: addition_overflow.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: addrman.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: asmap.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: asmap_direct.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: autofile.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: banman.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bip324.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bitdeque.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bitset.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_header.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_index.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_index_diff.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_index_tree.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockfilter.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: bloom_filter.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: buffered_file.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chain.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: checkqueue.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: cmpctblock.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coins_view.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinscache_sim.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: connman.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_aes256.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_aes256cbc.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_chacha20.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_chacha20poly1305.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_common.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_diff_fuzz_chacha20.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_hkdf_hmac_sha256_l32.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypto_poly1305.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: cuckoocache.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: dbwrapper.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: deserialize.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: feefrac.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fee_rate.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: feeratediagram.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fees.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: flatfile.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: float.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: golomb_rice.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: headerssync.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: hex.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: http_request.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: i2p.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: integer.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: key.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: kitchen_sink.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: load_external_block_file.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: merkle.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: merkleblock.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: message.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: miniscript.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: minisketch.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mini_miner.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: muhash.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: multiplication_overflow.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: net.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: net_permissions.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: netaddress.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: netbase_dns_lookup.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: node_eviction.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: p2p_handshake.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: p2p_headers_presync.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: p2p_transport_serialization.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: pcp.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: package_eval.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: parse_hd_keypath.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: parse_univalue.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: partially_downloaded_block.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: policy_estimator.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: policy_estimator_io.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: poolresource.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: pow.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: primitives_transaction.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: process_message.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: process_messages.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: protocol.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: random.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rbf.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rolling_bloom_filter.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rpc.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_descriptor_cache.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_format.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_interpreter.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_ops.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_sigcache.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: script_sign.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: scriptnum_ops.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: secp256k1_ec_seckey_import_export_der.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: secp256k1_ecdsa_signature_parse_der_lax.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: signature_checker.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: signet.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: socks5.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: span.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: string.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: strprintf.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: system.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: threadpool.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: timeoffsets.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: torcontrol.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: transaction.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txdownloadman.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: tx_pool.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txorphan.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txrequest.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: utxo_snapshot.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: utxo_total_supply.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: validation_load_mempool.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: vecdeque.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: versionbits.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coincontrol.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinselection.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: crypter.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: scriptpubkeyman.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: spend.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: wallet_bdb_parser.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: threadinterrupt.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fuzz.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: util.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: client.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainparams.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainparamsbase.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Line | Count | Source | 186 | 1 | { | 187 | | #ifdef WIN32 | 188 | | return u8path(string); | 189 | | #else | 190 | 1 | return std::filesystem::path(string); | 191 | 1 | #endif | 192 | 1 | } |
Unexecuted instantiation: messages.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: settings.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: request.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: config.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fs.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: fs_helpers.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: readwritefile.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: logging.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: streams.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: dump.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: migrate.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: wallet.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: walletdb.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: walletutil.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: db.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: external_signer_scriptpubkeyman.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: interfaces.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: load.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: receive.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: sqlite.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: feebumper.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: addresses.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: backup.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coins.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: encrypt.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: signmessage.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: transactions.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mining.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: setup_common.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txmempool.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: validation.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: addrdb.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockencodings.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: tx_verify.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: httpserver.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: init.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blocktreestorage.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinstats.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mapport.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: net_processing.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: netgroup.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockmanager_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockstorage.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: caches.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainstate.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: chainstatemanager_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coins_view_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: context.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: database_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: kernel_notifications.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool_persist.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mempool_persist_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: miner.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: mining_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: peerman_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txdownloadman_impl.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txorphanage.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txreconciliation.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_policy_estimator.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: block_policy_estimator_args.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: private_broadcast.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rest.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockchain.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: node.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: output_script.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rawtransaction.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: server.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: server_util.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txoutproof.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txdb.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: validationinterface.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: httprpc.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: base.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: blockfilterindex.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coinstatsindex.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txindex.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: txospenderindex.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: abort.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: coin.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: common.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: rawtransaction_util.cpp:_ZN2fsL14PathFromStringERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE |
193 | | } // namespace fs |
194 | | |
195 | | /** Bridge operations to C stdio */ |
196 | | namespace fsbridge { |
197 | | using FopenFn = std::function<FILE*(const fs::path&, const char*)>; |
198 | | FILE *fopen(const fs::path& p, const char *mode); |
199 | | |
200 | | /** |
201 | | * Helper function for joining two paths |
202 | | * |
203 | | * @param[in] base Base path |
204 | | * @param[in] path Path to combine with base |
205 | | * @returns path unchanged if it is an absolute path, otherwise returns base joined with path. Returns base unchanged if path is empty. |
206 | | * @pre Base path must be absolute |
207 | | * @post Returned path will always be absolute |
208 | | */ |
209 | | fs::path AbsPathJoin(const fs::path& base, const fs::path& path); |
210 | | |
211 | | class FileLock |
212 | | { |
213 | | public: |
214 | | FileLock() = delete; |
215 | | FileLock(const FileLock&) = delete; |
216 | | FileLock(FileLock&&) = delete; |
217 | | explicit FileLock(const fs::path& file); |
218 | | ~FileLock(); |
219 | | bool TryLock(); |
220 | 0 | std::string GetReason() { return reason; } |
221 | | |
222 | | private: |
223 | | std::string reason; |
224 | | #ifndef WIN32 |
225 | | int fd = -1; |
226 | | #else |
227 | | void* hFile = (void*)-1; // INVALID_HANDLE_VALUE |
228 | | #endif |
229 | | }; |
230 | | }; |
231 | | |
232 | | // Disallow path operator<< formatting in tinyformat to avoid locale-dependent |
233 | | // encoding on windows. |
234 | | namespace tinyformat { |
235 | | template<> inline void formatValue(std::ostream&, const char*, const char*, int, const std::filesystem::path&) = delete; |
236 | | template<> inline void formatValue(std::ostream&, const char*, const char*, int, const fs::path&) = delete; |
237 | | } // namespace tinyformat |
238 | | |
239 | | #endif // BITCOIN_UTIL_FS_H |