HomeSort by: relevance | last modified time | path
    Searched defs:impl (Results 1 - 25 of 74) sorted by relevancy

1 2 3

  /src/external/bsd/kyua-cli/dist/utils/process/
fdstream.cpp 39 struct ifdstream::impl { struct in class:utils::process::ifdstream
46 impl(const int fd) : _systembuf(fd) {} function in struct:utils::process::ifdstream::impl
64 _pimpl(new impl(fd))
systembuf.cpp 42 struct systembuf::impl { struct in class:systembuf
59 impl(const int fd, const std::size_t bufsize) : function in struct:systembuf::impl
76 _pimpl(new impl(fd, bufsize))
  /src/external/bsd/kyua-cli/dist/utils/sqlite/
transaction.cpp 42 struct utils::sqlite::transaction::impl { struct in class:utils::sqlite::transaction
60 impl(database& db_, const statuses status_) : function in struct:utils::sqlite::transaction::impl
69 ~impl(void)
71 if (status == impl::open_status) {
87 PRE(status == impl::open_status);
89 status = impl::committed_status;
99 PRE(status == impl::open_status);
101 status = impl::rolled_back_status;
113 _pimpl(new impl(db, impl::open_status)
    [all...]
database.cpp 48 struct utils::sqlite::database::impl { struct in class:utils::sqlite::database
60 impl(::sqlite3* db_, const bool owned_) : function in struct:utils::sqlite::database::impl
68 /// It is important to keep this as part of the 'impl' class instead of the
69 /// container class. The 'impl' class is destroyed exactly once (because it
74 ~impl(void)
132 _pimpl(new impl(static_cast< ::sqlite3* >(db_), owned_))
156 return database(impl::safe_open(":memory:", SQLITE_OPEN_READWRITE), true);
192 return database(impl::safe_open(file.c_str(), flags), true);
205 return database(impl::safe_open("", SQLITE_OPEN_READWRITE), true);
  /src/external/gpl3/gdb.old/dist/gdbsupport/
task-group.cc 26 class task_group::impl : public std::enable_shared_from_this<task_group::impl> class in class:gdb::task_group
30 explicit impl (std::function<void ()> &&done) function in class:gdb::task_group::impl
33 DISABLE_COPY_AND_ASSIGN (impl);
35 ~impl ()
59 task_group::impl::start ()
61 std::shared_ptr<impl> shared_this = shared_from_this ();
74 : m_task (new impl (std::move (done)))
  /src/external/gpl3/gdb/dist/gdbsupport/
task-group.cc 26 class task_group::impl : public std::enable_shared_from_this<task_group::impl> class in class:gdb::task_group
30 explicit impl (std::function<void ()> &&done) function in class:gdb::task_group::impl
33 DISABLE_COPY_AND_ASSIGN (impl);
35 ~impl ()
59 task_group::impl::start ()
61 std::shared_ptr<impl> shared_this = shared_from_this ();
74 : m_task (new impl (std::move (done)))
  /src/external/bsd/kyua-cli/dist/engine/
action.cpp 38 struct engine::action::impl { struct in class:engine::action
45 impl(const context& context_) : function in struct:engine::action::impl
56 operator==(const impl& other) const
67 _pimpl(new impl(context_))
context.cpp 41 struct engine::context::impl { struct in class:engine::context
52 impl(const fs::path& cwd_, function in struct:engine::context::impl
65 operator==(const impl& other) const
78 _pimpl(new impl(cwd_, env_))
test_case.cpp 163 struct engine::test_case::impl { struct in class:engine::test_case
188 impl(const std::string& interface_name_, function in struct:engine::test_case::impl
207 operator==(const impl& other) const
233 _pimpl(new impl(interface_name_, test_program_, name_, md_, none))
266 _pimpl(new impl(interface_name_, test_program_, name_,
  /src/external/bsd/lutok/dist/
stack_cleaner.cpp 37 struct lutok::stack_cleaner::impl { struct in class:lutok::stack_cleaner
48 impl(state& state_ref_, const unsigned int original_depth_) : function in struct:lutok::stack_cleaner::impl
63 _pimpl(new impl(state_, state_.get_top()))
debug.cpp 40 struct lutok::debug::impl { struct in class:lutok::debug
48 _pimpl(new impl())
  /src/external/bsd/kyua-cli/dist/utils/fs/
auto_cleaners.cpp 43 struct utils::fs::auto_directory::impl { struct in class:utils::fs::auto_directory
53 impl(const path& directory_) : function in struct:utils::fs::auto_directory::impl
60 ~impl(void)
91 _pimpl(new impl(directory_))
151 struct utils::fs::auto_file::impl { struct in class:utils::fs::auto_file
161 impl(const path& file_) : function in struct:utils::fs::auto_file::impl
168 ~impl(void)
199 _pimpl(new impl(file_))
  /src/sys/external/isc/libsodium/dist/test/default/
randombytes.c 133 randombytes_implementation impl = randombytes_sysrandom_implementation; local
135 randombytes_implementation impl = randombytes_nativeclient_implementation;
139 impl.uniform = randombytes_uniform_impl;
141 randombytes_set_implementation(&impl);
148 impl.close = NULL;
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
LiveVariables.h 108 LiveVariables(void *impl);
109 void *impl; member in class:clang::LiveVariables
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Mutex.h 29 std::recursive_mutex impl; member in class:llvm::sys::SmartMutex
35 impl.lock();
48 impl.unlock();
62 return impl.try_lock();
RWMutex.h 98 std::shared_mutex impl; member in class:llvm::sys::SmartRWMutex
101 std::shared_timed_mutex impl;
103 RWMutexImpl impl;
112 impl.lock_shared();
124 impl.unlock_shared();
137 impl.lock();
150 impl.unlock();
  /src/external/bsd/kyua-cli/dist/utils/config/
parser.cpp 55 struct utils::config::parser::impl : utils::noncopyable { struct in class:utils::config::parser
73 impl(parser* const parent_, tree& config_tree_) : function in struct:utils::config::parser::impl
138 config::parser::impl* impl = *state.to_userdata< config::parser::impl* >(); local
141 impl->syntax_callback(syntax_version);
155 _pimpl(new impl(this, config_tree))
161 *_pimpl->_state.new_userdata< config::parser::impl* >() = _pimpl.get();
  /src/external/bsd/kyua-cli/dist/utils/signals/
programmer.cpp 48 struct programmer::impl { struct in class:utils::signals::programmer
61 impl(const int signo_) : function in struct:utils::signals::programmer::impl
83 _pimpl(new impl(signo))
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
PerGraphGOTAndPLTStubsBuilder.h 47 if (impl().isGOTEdgeToFix(E)) {
54 impl().fixGOTEdge(E, getGOTEntry(E.getTarget()));
55 } else if (impl().isExternalBranchEdge(E)) {
62 impl().fixPLTEdge(E, getPLTStub(E.getTarget()));
77 auto &GOTEntry = impl().createGOTEntry(Target);
98 auto &StubSymbol = impl().createPLTStub(Target);
115 BuilderImplT &impl() { return static_cast<BuilderImplT &>(*this); } function in class:llvm::jitlink::PerGraphGOTAndPLTStubsBuilder
JITLinkGeneric.h 143 const LinkerImpl &impl() const { function in class:llvm::jitlink::JITLinker
163 if (auto Err = impl().applyFixup(G, *B, E, BlockData))
  /src/lib/libc/locale/
nb_lc_template.h 99 _CATEGORY_TYPE *impl; member in struct:_nb_part_t
134 cached_impl = p->impl;
142 p->impl = _lc_C_locale.part_impl[_CATEGORY_ID];
146 name, &p->impl);
155 cached_impl = p->impl;
164 p->impl = cached_impl;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 140 /// Concrete, target specific sub-classes can be accessed via the impl()
144 template <typename Impl>
147 Impl &impl() { return static_cast<Impl &>(*this); } function in class:llvm::RuntimeDyldMachOCRTPBase
148 const Impl &impl() const { return static_cast<const Impl &>(*this); } function in class:llvm::RuntimeDyldMachOCRTPBase
  /src/external/bsd/atf/dist/tools/
timers.cpp 43 namespace impl = tools::timers;
55 impl::timer* timer = static_cast< impl::timer* >(si->si_value.sival_ptr);
64 struct impl::timer::impl { struct in class:impl::timer
71 impl(void) : m_fired(false) function in struct:impl::timer::impl
76 impl::timer::timer(const unsigned int seconds) :
77 m_pimpl(new impl())
112 impl::timer::~timer(void)
124 impl::timer::fired(void
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/
datetime.cpp 166 struct timestamp::impl { struct in class:utils::datetime::timestamp
170 /// Constructs an impl object from initialized data.
173 impl(const ::timeval& data_) : data(data_) function in struct:utils::datetime::timestamp::impl
185 /// \param pimpl_ An existing impl representation.
186 datetime::timestamp::timestamp(std::shared_ptr< impl > pimpl_) :
204 return timestamp(std::shared_ptr< impl >(new impl(data)));
260 return timestamp(std::shared_ptr< impl >(new impl(data)));
279 return timestamp(std::shared_ptr< impl >(new impl(data)))
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
dlz.c 491 dns_dlzimplementation_t *impl; local
497 impl = dlzdb->implementation;
499 if (impl->methods->configure == NULL) {
505 result = impl->methods->configure(impl->driverarg, dlzdb->dbdata, view,
514 dns_dlzimplementation_t *impl; local
520 impl = dlzdatabase->implementation;
522 if (impl->methods->ssumatch == NULL) {
529 r = impl->methods->ssumatch(signer, name, tcpaddr, type, key,
530 impl->driverarg, dlzdatabase->dbdata)
    [all...]

Completed in 76 milliseconds

1 2 3