MCPcopy Create free account
hub / github.com/acl-dev/acl / create

Function create

lib_acl_cpp/include/acl_cpp/stdlib/dbuf_pool.hpp:396–402  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

394 void set_increment(size_t incr);
395
396public:
397 template <typename T>
398 T* create() {
399 T* t = new (dbuf_alloc(sizeof(T))) T();
400 (void) push_back(t);
401 return t;
402 }
403
404 template <typename T, typename P1>
405 T* create(P1 p) {

Callers 4

set_charset_convMethod · 0.50
save_bodyMethod · 0.50
mime_node_dumpFunction · 0.50
saveMethod · 0.50

Calls 2

push_backFunction · 0.85
dbuf_allocFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…