Go to the source code of this file.
|  | 
| class | ipc::util::Shared_name | 
|  | String-wrapping abstraction representing a name uniquely distinguishing a kernel-persistent entity from all others in the system, or a fragment of such a name.  More... 
 | 
|  | 
|  | 
| namespace | ipc | 
|  | Catch-all namespace for the Flow-IPC project: A library/API in modern C++17 providing high-performance communication between processes. 
 | 
|  | 
| namespace | ipc::util | 
|  | Flow-IPC module containing miscellaneous general-use facilities that ubiquitously used by ~all Flow-IPC modules and/or do not fit into any other Flow-IPC module. 
 | 
|  | 
|  | 
| template<typename Source > | 
| Shared_name | ipc::util::operator+ (const Shared_name &src1, const Source &raw_src2) | 
|  | Returns new object equal to Shared_name(src1) += raw_src2.  More...
 | 
|  | 
| template<typename Source > | 
| Shared_name | ipc::util::operator+ (const Source &raw_src1, const Shared_name &src2) | 
|  | Returns new object equal to Shared_name(src2)withraw_src1pre-pended to it.  More...
 | 
|  | 
| template<typename Source > | 
| Shared_name | ipc::util::operator/ (const Shared_name &src1, const Source &raw_src2) | 
|  | Returns new object equal to Shared_name(src1) /= raw_src2.  More...
 | 
|  | 
| template<typename Source > | 
| Shared_name | ipc::util::operator/ (const Source &raw_src1, const Shared_name &src2) | 
|  | Returns new object equal to Shared_name(raw_src1) /= src2.  More...
 | 
|  | 
| template<typename Persistent_object , typename Filter_func > | 
| unsigned int | ipc::util::remove_each_persistent_if (flow::log::Logger *logger_ptr, const Filter_func &filter_func) | 
|  | Utility that invokes Persistent_object::for_each_persistent(name_prefix_or_empty)and synchronously invokesPersistent_object::remove_persistent()on each resulting item that passes the given filter, wherePersistent_objectis a type that handles objects – such as SHM pools or POSIX MQs – with kernel-persistent semantics.  More...
 | 
|  | 
| template<typename Persistent_object > | 
| unsigned int | ipc::util::remove_each_persistent_with_name_prefix (flow::log::Logger *logger_ptr, const Shared_name &name_prefix_or_empty) | 
|  | Utility that invokes remove_each_persistent_if() with the filter that returns true(yes, remove) if and only if the item's name optionally matches a given Shared_name prefix.  More...
 | 
|  |