Home
last modified time | relevance | path

Searched refs:m_pImpl (Results 1 – 22 of 22) sorted by relevance

/third_party/boost/boost/log/detail/
Dlight_function_pp.hpp88 impl_base* m_pImpl; member in light_function
91 BOOST_CONSTEXPR light_function() BOOST_NOEXCEPT : m_pImpl(NULL) in light_function()
96 if (that.m_pImpl) in light_function()
97 m_pImpl = that.m_pImpl->clone(that.m_pImpl); in light_function()
99 m_pImpl = NULL; in light_function()
104 m_pImpl = that.m_pImpl; in light_function()
105 that.m_pImpl = NULL; in light_function()
110 m_pImpl = that.m_pImpl; in light_function()
111 ((this_type&)that).m_pImpl = NULL; in light_function()
117m_pImpl(new impl< typename remove_cv< typename remove_reference< FunT >::type >::type >(boost::for… in light_function()
[all …]
Dlight_function.hpp163 impl_base* m_pImpl; member in boost::aux::light_function
166 BOOST_CONSTEXPR light_function() BOOST_NOEXCEPT : m_pImpl(NULL) in light_function()
171 if (that.m_pImpl) in light_function()
172 m_pImpl = that.m_pImpl->clone(that.m_pImpl); in light_function()
174 m_pImpl = NULL; in light_function()
179 m_pImpl = that.m_pImpl; in light_function()
180 that.m_pImpl = NULL; in light_function()
185 m_pImpl = that.m_pImpl; in light_function()
186 ((this_type&)that).m_pImpl = NULL; in light_function()
192m_pImpl(new impl< typename remove_cv< typename remove_reference< FunT >::type >::type >(boost::for… in light_function()
[all …]
Dthreadsafe_queue.hpp171 m_pImpl = threadsafe_queue_impl::create(p); in threadsafe_queue()
201 node* p = static_cast< node* >(m_pImpl->reset_last_node()); in ~threadsafe_queue()
205 delete m_pImpl; in ~threadsafe_queue()
211 bool unsafe_empty() const { return m_pImpl->unsafe_empty(); } in unsafe_empty()
231 m_pImpl->push(p); in push()
245 if (m_pImpl->try_pop(dealloc, destr)) in try_pop()
266 threadsafe_queue_impl* m_pImpl; member in boost::aux::threadsafe_queue
Dattribute_get_value_impl.hpp34 return m_pImpl->get_value(); in get_value()
/third_party/boost/boost/log/attributes/
Dattribute_value.hpp111 intrusive_ptr< impl > m_pImpl; member in boost::attribute_value
122 attribute_value(attribute_value const& that) BOOST_NOEXCEPT : m_pImpl(that.m_pImpl) {}
127 … attribute_value(BOOST_RV_REF(attribute_value) that) BOOST_NOEXCEPT { m_pImpl.swap(that.m_pImpl); } in attribute_value()
134 explicit attribute_value(intrusive_ptr< impl > p) BOOST_NOEXCEPT { m_pImpl.swap(p); } in attribute_value()
141 m_pImpl = that.m_pImpl; in operator =()
150 m_pImpl.swap(that.m_pImpl); in operator =()
161 bool operator! () const BOOST_NOEXCEPT { return !m_pImpl; }
171 if (m_pImpl.get()) in get_type()
172 return m_pImpl->get_type(); in get_type()
185 if (m_pImpl.get()) in detach_from_thread()
[all …]
Dattribute.hpp89 intrusive_ptr< impl > m_pImpl; member in boost::attribute
101 attribute(attribute const& that) BOOST_NOEXCEPT : m_pImpl(that.m_pImpl) {}
106 attribute(BOOST_RV_REF(attribute) that) BOOST_NOEXCEPT { m_pImpl.swap(that.m_pImpl); } in attribute()
113 explicit attribute(intrusive_ptr< impl > p) BOOST_NOEXCEPT { m_pImpl.swap(p); } in attribute()
120 m_pImpl = that.m_pImpl; in operator =()
129 m_pImpl.swap(that.m_pImpl); in operator =()
145 bool operator! () const BOOST_NOEXCEPT { return !m_pImpl; }
156 void swap(attribute& that) BOOST_NOEXCEPT { m_pImpl.swap(that.m_pImpl); } in swap()
162 impl* get_impl() const BOOST_NOEXCEPT { return m_pImpl.get(); } in get_impl()
168 void set_impl(intrusive_ptr< impl > p) BOOST_NOEXCEPT { m_pImpl.swap(p); } in set_impl()
Dattribute_value_set.hpp204 implementation* m_pImpl; member in boost::attribute_value_set
222 … attribute_value_set(BOOST_RV_REF(attribute_value_set) that) BOOST_NOEXCEPT : m_pImpl(that.m_pImpl) in attribute_value_set()
224 that.m_pImpl = NULL; in attribute_value_set()
280 size_type reserve_count = 8) : m_pImpl(NULL) in attribute_value_set()
314 implementation* const p = m_pImpl; in swap()
315 m_pImpl = that.m_pImpl; in swap()
316 that.m_pImpl = p; in swap()
Dattribute_cast.hpp38 attribute::impl* m_pImpl; member in boost::attributes::cast_source
44 explicit cast_source(attribute::impl* p) : m_pImpl(p) in cast_source()
54 T* as() const { return dynamic_cast< T* >(m_pImpl); } in as()
Dattribute_set.hpp258 implementation* m_pImpl; member in boost::attribute_set
278 attribute_set(BOOST_RV_REF(attribute_set) that) BOOST_NOEXCEPT : m_pImpl(that.m_pImpl) in attribute_set()
280 that.m_pImpl = NULL; in attribute_set()
306 implementation* const p = m_pImpl; in swap()
307 m_pImpl = that.m_pImpl; in swap()
308 that.m_pImpl = p; in swap()
/third_party/boost/libs/log/src/
Dtext_ostream_backend.cpp63 m_pImpl = new implementation(auto_newline, auto_flush); in construct()
70 delete m_pImpl; in ~basic_text_ostream_backend()
77 m_pImpl->m_AutoNewlineMode = mode; in set_auto_newline_mode()
85 std::find(m_pImpl->m_Streams.begin(), m_pImpl->m_Streams.end(), strm); in add_stream()
86 if (it == m_pImpl->m_Streams.end()) in add_stream()
88 m_pImpl->m_Streams.push_back(strm); in add_stream()
97 std::find(m_pImpl->m_Streams.begin(), m_pImpl->m_Streams.end(), strm); in remove_stream()
98 if (it != m_pImpl->m_Streams.end()) in remove_stream()
99 m_pImpl->m_Streams.erase(it); in remove_stream()
106 m_pImpl->m_fAutoFlush = f; in auto_flush()
[all …]
Dattribute_set.cpp57 m_pImpl(new implementation()) in attribute_set()
63 m_pImpl(new implementation(*that.m_pImpl)) in attribute_set()
70 delete m_pImpl; in ~attribute_set()
76 return m_pImpl->begin(); in begin()
80 return m_pImpl->end(); in end()
84 return const_iterator(m_pImpl->begin()); in begin()
88 return const_iterator(m_pImpl->end()); in end()
94 return m_pImpl->size(); in size()
101 return m_pImpl->insert(key, data); in insert()
107 iterator it = m_pImpl->find(key); in erase()
[all …]
Dtext_multifile_backend.cpp66 m_pImpl = new implementation(auto_newline); in construct()
72 delete m_pImpl; in ~text_multifile_backend()
78 m_pImpl->m_FileNameComposer = composer; in set_file_name_composer_internal()
84 m_pImpl->m_AutoNewlineMode = mode; in set_auto_newline_mode()
90 if (BOOST_LIKELY(!m_pImpl->m_FileNameComposer.empty())) in consume()
92 filesystem::path file_name = m_pImpl->make_absolute(m_pImpl->m_FileNameComposer(rec)); in consume()
94 m_pImpl->m_File.open(file_name, std::ios_base::out | std::ios_base::app); in consume()
95 if (BOOST_LIKELY(m_pImpl->m_File.is_open())) in consume()
97m_pImpl->m_File.write(formatted_message.data(), static_cast< std::streamsize >(formatted_message.s… in consume()
98 if (m_pImpl->m_AutoNewlineMode != disabled_auto_newline) in consume()
[all …]
Dattribute_value_set.cpp182 …source_attrs.m_pImpl->size() + thread_attrs.m_pImpl->size() + global_attrs.m_pImpl->size() + reser… in create()
183 source_attrs.m_pImpl, in create()
184 thread_attrs.m_pImpl, in create()
185 global_attrs.m_pImpl); in create()
196 …source_attrs.m_pImpl->size() + thread_attrs.m_pImpl->size() + global_attrs.m_pImpl->size() + reser… in create()
198 thread_attrs.m_pImpl, in create()
199 global_attrs.m_pImpl); in create()
200 p->copy_nodes_from(source_attrs.m_pImpl); in create()
211 implementation* p = source_attrs.m_pImpl; in create()
212 source_attrs.m_pImpl = NULL; in create()
[all …]
Dtext_file_backend.cpp1279 …if (m_pImpl->m_FinalRotationEnabled && m_pImpl->m_File.is_open() && m_pImpl->m_CharactersWritten >… in ~text_file_backend()
1286 delete m_pImpl; in ~text_file_backend()
1300 m_pImpl = new implementation(rotation_size, auto_newline, auto_flush, enable_final_rotation); in construct()
1310 m_pImpl->m_FileRotationSize = size; in set_rotation_size()
1316 m_pImpl->m_TimeBasedRotation = predicate; in set_time_based_rotation()
1322 m_pImpl->m_FinalRotationEnabled = enable; in enable_final_rotation()
1328 m_pImpl->m_AutoFlush = enable; in auto_flush()
1334 m_pImpl->m_AutoNewlineMode = mode; in set_auto_newline_mode()
1344 if (BOOST_UNLIKELY(!m_pImpl->m_File.good())) in consume()
1350 prev_file_name = m_pImpl->m_FileName; in consume()
[all …]
Dsyslog_backend.cpp480 delete m_pImpl; in ~syslog_backend()
486 m_pImpl->m_LevelMapper = mapper; in set_severity_mapper()
492 m_pImpl->send( in consume()
493 m_pImpl->m_LevelMapper.empty() ? syslog::info : m_pImpl->m_LevelMapper(rec), in consume()
505 m_pImpl = new native_impl(fac, ident); in construct()
524 m_pImpl = new udp_socket_based_impl(fac, protocol); in construct()
535 if (udp_socket_based_impl* impl = dynamic_cast< udp_socket_based_impl* >(m_pImpl)) in set_local_address()
566 if (udp_socket_based_impl* impl = dynamic_cast< udp_socket_based_impl* >(m_pImpl)) in set_local_address()
581 if (udp_socket_based_impl* impl = dynamic_cast< udp_socket_based_impl* >(m_pImpl)) in set_target_address()
612 if (udp_socket_based_impl* impl = dynamic_cast< udp_socket_based_impl* >(m_pImpl)) in set_target_address()
/third_party/boost/libs/log/src/windows/
Devent_log_backend.cpp244 DeregisterEventSource(m_pImpl->m_SourceHandle); in ~basic_simple_event_log_backend()
245 delete m_pImpl; in ~basic_simple_event_log_backend()
280 m_pImpl = p.release(); in construct()
305 m_pImpl->m_LevelMapper = mapper; in set_event_type_mapper()
314 if (!m_pImpl->m_LevelMapper.empty()) in consume()
315 evt_type = m_pImpl->m_LevelMapper(rec); in consume()
331 m_pImpl->m_SourceHandle, // Event log handle. in consume()
492 DeregisterEventSource(m_pImpl->m_SourceHandle); in ~basic_event_log_backend()
493 delete m_pImpl; in ~basic_event_log_backend()
536 m_pImpl = p.release(); in construct()
[all …]
/third_party/boost/libs/log/test/run/
Dutil_exception_handler.cpp131 boost::scoped_ptr< impl_base > m_pImpl; member
137 m_pImpl.reset(new impl< T >(fun)); in operator =()
143 m_pImpl->invoke(); in operator ()()
/third_party/boost/boost/log/sinks/
Dtext_ostream_backend.hpp69 implementation* m_pImpl; member in boost::sinks::basic_text_ostream_backend
Devent_log_backend.hpp419 implementation* m_pImpl; member in boost::sinks::basic_simple_event_log_backend
538 implementation* m_pImpl; member in boost::sinks::basic_event_log_backend
Dsyslog_backend.hpp169 implementation* m_pImpl; member in boost::sinks::syslog_backend
Dtext_multifile_backend.hpp160 implementation* m_pImpl; member in boost::sinks::text_multifile_backend
Dtext_file_backend.hpp363 implementation* m_pImpl; member in boost::sinks::text_file_backend