Searched refs:impl (Results 1 - 25 of 218) sorted by relevance

123456789

/freebsd-current/contrib/kyua/utils/sqlite/
H A Dtransaction.cpp43 struct utils::sqlite::transaction::impl : utils::noncopyable { struct in class:utils::sqlite::transaction
61 impl(database& db_, const statuses status_) : function in struct:utils::sqlite::transaction::impl
70 ~impl(void)
72 if (status == impl::open_status) {
88 PRE(status == impl::open_status);
90 status = impl::committed_status;
100 PRE(status == impl::open_status);
102 status = impl::rolled_back_status;
114 _pimpl(new impl(db, impl
[all...]
H A Dtransaction.hpp50 struct impl;
53 std::shared_ptr< impl > _pimpl;
/freebsd-current/contrib/kyua/utils/text/
H A Dregex.hpp47 struct impl;
50 std::shared_ptr< impl > _pimpl;
53 regex_matches(std::shared_ptr< impl >);
69 struct impl;
72 std::shared_ptr< impl > _pimpl;
74 regex(std::shared_ptr< impl >);
/freebsd-current/contrib/kyua/utils/signals/
H A Dprogrammer.hpp47 struct impl;
50 std::auto_ptr< impl > _pimpl;
H A Dtimer.hpp60 struct impl;
63 std::auto_ptr< impl > _pimpl;
/freebsd-current/contrib/kyua/utils/process/
H A Dfdstream.hpp52 struct impl;
55 std::auto_ptr< impl > _pimpl;
H A Dfdstream.cpp40 struct ifdstream::impl : utils::noncopyable { struct in class:utils::process::ifdstream
47 impl(const int fd) : _systembuf(fd) {} function in struct:utils::process::ifdstream::impl
65 _pimpl(new impl(fd))
H A Dsystembuf.hpp52 struct impl;
55 std::auto_ptr< impl > _pimpl;
/freebsd-current/contrib/kyua/utils/fs/
H A Dauto_cleaners.hpp51 struct impl;
53 std::shared_ptr< impl > _pimpl;
71 struct impl;
73 std::shared_ptr< impl > _pimpl;
H A Ddirectory.hpp68 struct impl;
71 std::shared_ptr< impl > _pimpl;
73 directory_iterator(std::shared_ptr< impl >);
104 struct impl;
107 std::shared_ptr< impl > _pimpl;
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dfs.cpp58 namespace impl = atf::fs;
65 static bool safe_access(const impl::path&, int, int);
76 safe_access(const impl::path& p, int mode, int experr)
108 impl::path::path(const std::string& s)
115 impl::path::path(const path& p)
122 impl::path::path(const atf_fs_path_t *p)
129 impl::path::~path(void)
135 impl::path::c_str(void)
142 impl::path::c_path(void)
149 impl
[all...]
H A Dprocess.cpp41 namespace impl = atf::process;
82 impl::argv_array::argv_array(void) :
87 impl::argv_array::argv_array(const char* arg1, ...)
104 impl::argv_array::argv_array(const char* const* ca) :
110 impl::argv_array::argv_array(const argv_array& a) :
117 impl::argv_array::ctor_init_exec_argv(void)
123 impl::argv_array::exec_argv(void)
129 impl::argv_array::size_type
130 impl::argv_array::size(void)
137 impl
[all...]
H A Denv.cpp36 namespace impl = atf::env;
44 impl::get(const std::string& name)
50 impl::get(const std::string& name, const std::string& default_value)
56 impl::has(const std::string& name)
62 impl::set(const std::string& name, const std::string& val)
70 impl::unset(const std::string& name)
H A Dapplication.cpp54 namespace impl = atf::application;
61 impl::usage_error::usage_error(const char *fmt, ...)
72 impl::usage_error::~usage_error(void)
78 impl::usage_error::what(void)
88 impl::option::option(char ch,
98 impl::option::operator<(const impl::option& o)
104 impl::app::app(const std::string& description,
114 impl::app::~app(void)
119 impl
[all...]
/freebsd-current/contrib/kyua/store/
H A Dread_backend.hpp57 struct impl;
60 std::shared_ptr< impl > _pimpl;
62 read_backend(impl*);
H A Dwrite_backend.hpp59 struct impl;
62 std::shared_ptr< impl > _pimpl;
66 write_backend(impl*);
H A Dread_transaction.hpp70 struct impl;
73 std::shared_ptr< impl > _pimpl;
76 results_iterator(std::shared_ptr< impl >);
100 struct impl;
103 std::shared_ptr< impl > _pimpl;
/freebsd-current/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/
H A DM68kMemOperandPrinter.h24 Derived &impl() { return *static_cast<Derived *>(this); } function in class:llvm::M68kMemOperandPrinter
29 impl().printOperand(MI, OpNum, O);
35 impl().printOperand(MI, OpNum, O);
41 impl().printOperand(MI, OpNum, O);
47 impl().printDisp(MI, OpNum + M68k::MemDisp, O);
49 impl().printOperand(MI, OpNum + M68k::MemBase, O);
55 impl().printDisp(MI, OpNum + M68k::MemDisp, O);
57 impl().printOperand(MI, OpNum + M68k::MemBase, O);
59 impl().printOperand(MI, OpNum + M68k::MemIndex, O);
66 impl()
[all...]
/freebsd-current/contrib/atf/atf-c++/
H A Dcheck.cpp39 namespace impl = atf::check;
46 impl::check_result::check_result(const atf_check_result_t* result)
51 impl::check_result::~check_result(void)
57 impl::check_result::exited(void)
64 impl::check_result::exitcode(void)
72 impl::check_result::signaled(void)
79 impl::check_result::termsig(void)
87 impl::check_result::stdout_path(void) const
93 impl::check_result::stderr_path(void) const
103 impl
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/
H A DThreadLauncher.h32 std::function<lldb::thread_result_t()> impl; member in struct:lldb_private::ThreadLauncher::HostThreadCreateInfo
35 std::function<lldb::thread_result_t()> impl)
36 : thread_name(std::move(thread_name)), impl(std::move(impl)) {}
34 HostThreadCreateInfo(std::string thread_name, std::function<lldb::thread_result_t()> impl) argument
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DMutex.h29 std::recursive_mutex impl; member in class:llvm::sys::SmartMutex
35 impl.lock();
47 impl.unlock();
60 return impl.try_lock();
/freebsd-current/crypto/openssl/providers/implementations/encode_decode/
H A Dencode_key2blob.c105 * impl: The keytype to encode
121 #define MAKE_BLOB_ENCODER(impl, type, selection_name) \
123 impl##2blob_import_object; \
124 static OSSL_FUNC_encoder_free_object_fn impl##2blob_free_object; \
126 impl##2blob_does_selection; \
127 static OSSL_FUNC_encoder_encode_fn impl##2blob_encode; \
129 static void *impl##2blob_import_object(void *ctx, int selection, \
132 return ossl_prov_import_key(ossl_##impl##_keymgmt_functions, \
135 static void impl##2blob_free_object(void *key) \
137 ossl_prov_free_key(ossl_##impl##_keymgmt_function
[all...]
/freebsd-current/contrib/kyua/utils/config/
H A Dparser.hpp65 struct impl;
69 std::auto_ptr< impl > _pimpl;
/freebsd-current/contrib/kyua/engine/
H A Dscanner.hpp58 struct impl;
60 std::shared_ptr< impl > _pimpl;
/freebsd-current/contrib/lutok/
H A Dstack_cleaner.hpp72 struct impl;
75 std::auto_ptr< impl > _pimpl;

Completed in 167 milliseconds

123456789