/netbsd-src/external/bsd/kyua-cli/dist/utils/fs/ |
H A D | auto_cleaners.cpp | 43 struct utils::fs::auto_directory::impl { struct in utils::fs::auto_directory 45 fs::path _directory; 48 bool _cleaned; 53 impl(const path& directory_) : in impl() function 60 ~impl(void) in ~impl() 74 cleanup(void) in cleanup() 151 struct utils::fs::auto_file::impl { struct in utils::fs::auto_file 153 fs::path _file; 156 bool _removed; 161 impl(const path& file_) : in impl() function [all …]
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/config/ |
H A D | parser.cpp | 55 struct utils::config::parser::impl : utils::noncopyable { struct in utils::config::parser 57 parser* _parent; 60 lutok::state _state; 64 config::tree& _tree; 67 bool _syntax_called; 73 impl(parser* const parent_, tree& config_tree_) : in impl() argument 85 syntax_callback(const int syntax_version) in syntax_callback() 138 config::parser::impl* impl = *state.to_userdata< config::parser::impl* >(); in lua_syntax() local
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/sqlite/ |
H A D | transaction.cpp | 42 struct utils::sqlite::transaction::impl { struct in utils::sqlite::transaction 44 database& db; 47 enum statuses { 54 statuses status; 60 impl(database& db_, const statuses status_) : in impl() argument 69 ~impl(void) in ~impl() 85 commit(void) in commit() 97 rollback(void) in rollback()
|
H A D | database.cpp | 48 struct utils::sqlite::database::impl { struct in utils::sqlite::database 53 bool owned; 60 impl(::sqlite3* db_, const bool owned_) : in impl() argument 74 ~impl(void) in ~impl() 91 safe_open(const char* file, const int flags) in safe_open() 110 close(void) in close()
|
H A D | statement.cpp | 102 struct utils::sqlite::statement::impl { struct in utils::sqlite::statement 104 sqlite::database& db; 110 std::map< std::string, int > column_cache; 120 impl(database& db_, ::sqlite3_stmt* stmt_) : in impl() function 134 ~impl(void) in ~impl()
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/process/ |
H A D | systembuf.cpp | 42 struct systembuf::impl { struct in systembuf 44 int _fd; 47 std::size_t _bufsize; 50 utils::auto_array< char > _read_buf; 53 utils::auto_array< char > _write_buf; 59 impl(const int fd, const std::size_t bufsize) : in impl() function
|
H A D | fdstream.cpp | 39 struct ifdstream::impl { struct in utils::process::ifdstream 41 systembuf _systembuf; 46 impl(const int fd) : _systembuf(fd) {} in impl() function
|
H A D | child.cpp | 63 struct child::impl { struct in utils::process::child 65 pid_t _pid; 68 std::unique_ptr< process::ifdstream > _output; 74 impl(const pid_t pid, process::ifdstream* output) : in impl() function
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/signals/ |
H A D | programmer.cpp | 48 struct programmer::impl { struct in utils::signals::programmer 50 int signo; 53 bool programmed; 56 struct ::sigaction old_sa; 61 impl(const int signo_) : in impl() argument
|
/netbsd-src/external/bsd/lutok/dist/ |
H A D | stack_cleaner.cpp | 37 struct lutok::stack_cleaner::impl { struct in lutok::stack_cleaner 39 state& state_ref; 42 unsigned int original_depth; 48 impl(state& state_ref_, const unsigned int original_depth_) : in impl() function
|
H A D | debug.cpp | 40 struct lutok::debug::impl { struct in lutok::debug 42 lua_Debug lua_debug;
|
H A D | state.cpp | 219 struct lutok::state::impl { struct in lutok::state 221 lua_State* lua_state; 224 bool owned; 230 impl(lua_State* lua_, bool owned_) : in impl() function
|
/netbsd-src/external/bsd/kyua-cli/dist/engine/ |
H A D | action.cpp | 38 struct engine::action::impl { struct in engine::action 40 context _context; 45 impl(const context& context_) : in impl() function 56 operator==(const impl& other) const in operator ==()
|
H A D | context.cpp | 41 struct engine::context::impl { struct in engine::context 43 fs::path _cwd; 46 std::map< std::string, std::string > _env; 52 impl(const fs::path& cwd_, in impl() argument 65 operator==(const impl& other) const in operator ==()
|
H A D | test_program.cpp | 205 struct engine::test_program::impl { struct in engine::test_program 207 std::string interface_name; 210 fs::path binary; 213 fs::path root; 216 std::string test_suite_name; 219 metadata md; 222 optional< test_cases_vector > test_cases; 232 impl(const std::string& interface_name_, const fs::path& binary_, in impl() argument 252 operator==(const impl& other) const in operator ==()
|
H A D | test_case.cpp | 163 struct engine::test_case::impl { struct in engine::test_case 165 const std::string interface_name; 168 const test_program& _test_program; 171 std::string name; 174 metadata md; 177 optional< test_result > fake_result; 188 impl(const std::string& interface_name_, in impl() function 207 operator==(const impl& other) const in operator ==()
|
H A D | metadata.cpp | 507 struct engine::metadata::impl { struct in engine::metadata 509 config::tree props; 514 impl(const utils::config::tree& props_) : in impl() function 525 operator==(const impl& other) const in operator ==() 721 struct engine::metadata_builder::impl { struct in engine::metadata_builder 723 config::tree props; 726 bool built; 729 impl(void) : in impl() function 736 impl(const engine::metadata& base) : in impl() function
|
/netbsd-src/external/bsd/atf/dist/tools/ |
H A D | timers.cpp | 64 struct impl::timer::impl { struct in impl::timer 68 struct ::sigaction m_old_sa; 69 volatile bool m_fired; 71 impl(void) : m_fired(false) in impl() function
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/ |
H A D | gtest-matchers.h | 188 explicit MatcherInterfaceAdapter(const MatcherInterface<T>* impl) in MatcherInterfaceAdapter() 298 explicit MatcherBase(const MatcherInterface<const T&>* impl) : impl_(impl) {} in MatcherBase() 305 : impl_(new internal::MatcherInterfaceAdapter<U>(impl)) {} in impl_() 333 explicit Matcher(const MatcherInterface<const T&>* impl) in Matcher() 357 explicit Matcher(const MatcherInterface<const std::string&>* impl) in Matcher() 374 explicit Matcher(const MatcherInterface<const std::string&>* impl) in Matcher() 376 explicit Matcher(const MatcherInterface<std::string>* impl) in Matcher() 397 explicit Matcher(const MatcherInterface<const absl::string_view&>* impl) in Matcher() 417 explicit Matcher(const MatcherInterface<const absl::string_view&>* impl) in Matcher() 419 explicit Matcher(const MatcherInterface<absl::string_view>* impl) in Matcher() [all …]
|
/netbsd-src/sys/crypto/aes/ |
H A D | aes_selftest.c | 75 #define aes_selftest_fail(impl, actual, expected, nbytes, fmt, args...) \ argument 84 aes_selftest_encdec(const struct aes_impl *impl) in aes_selftest_encdec() 143 aes_selftest_encdec_cbc(const struct aes_impl *impl) in aes_selftest_encdec_cbc() 276 aes_selftest_encdec_xts(const struct aes_impl *impl) in aes_selftest_encdec_xts() 409 aes_selftest_cbcmac(const struct aes_impl *impl) in aes_selftest_cbcmac() 448 aes_selftest_ccm(const struct aes_impl *impl) in aes_selftest_ccm() 543 aes_selftest(const struct aes_impl *impl) in aes_selftest()
|
/netbsd-src/external/bsd/kyua-cli/dist/store/ |
H A D | transaction.cpp | 399 struct store::results_iterator::impl { struct in store::results_iterator 401 store::backend _backend; 404 sqlite::statement _stmt; 408 _last_test_program; 411 bool _valid; 414 impl(store::backend& backend_, const int64_t action_id_) : in impl() function 580 struct store::transaction::impl { struct in store::transaction 582 store::backend& _backend; 586 sqlite::database _db; 589 sqlite::transaction _tx; [all …]
|
H A D | backend.cpp | 238 struct store::backend::impl { struct in store::backend 240 sqlite::database database; 254 impl(sqlite::database& database_, const metadata& metadata_) : in impl() function
|
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/ |
H A D | encode_key2any.c | 1076 #define DO_PRIVATE_KEY(impl, type, kind, output) \ argument 1086 #define DO_PUBLIC_KEY(impl, type, kind, output) \ argument 1096 #define DO_PARAMETERS(impl, type, kind, output) \ argument 1139 #define DO_PrivateKeyInfo(impl, type, output) \ argument 1143 #define DO_EncryptedPrivateKeyInfo(impl, type, output) \ argument 1148 #define DO_SubjectPublicKeyInfo(impl, type, output) \ argument 1167 #define DO_type_specific_params(impl, type, output) \ argument 1171 #define DO_type_specific_keypair(impl, type, output) \ argument 1177 #define DO_type_specific(impl, type, output) \ argument 1182 #define DO_type_specific_no_pub(impl, type, output) \ argument [all …]
|
/netbsd-src/external/ibm-public/postfix/dist/src/xsasl/ |
H A D | xsasl.h | 70 #define xsasl_server_create(impl, args) \ argument 72 #define XSASL_SERVER_CREATE(impl, args, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) \ argument 76 #define xsasl_server_done(impl) (impl)->done((impl)); argument 115 #define xsasl_client_create(impl, args) \ argument 117 #define XSASL_CLIENT_CREATE(impl, args, a1, a2, a3, a4) \ argument 120 #define xsasl_client_done(impl) (impl)->done((impl)); argument
|
/netbsd-src/external/bsd/kyua-cli/dist/utils/ |
H A D | datetime.cpp | 166 struct timestamp::impl { struct in utils::datetime::timestamp 173 impl(const ::timeval& data_) : data(data_) in impl() function
|