MCPcopy Create free account
hub / github.com/apache/qpid-proton / pni_class_refcount

Function pni_class_refcount

c/src/core/object/object.c:160–166  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

158}
159
160static inline int pni_class_refcount(const pn_class_t *clazz, void *object) {
161 if (clazz->refcount) {
162 return clazz->refcount(object);
163 } else {
164 return pni_default_refcount(object);
165 }
166}
167
168static inline void pni_class_free(const pn_class_t *clazz, void *object) {
169 if (clazz->free) {

Callers 7

pn_class_refcountFunction · 0.85
pn_class_decrefFunction · 0.85
pn_class_freeFunction · 0.85
pn_decrefFunction · 0.85
pn_refcountFunction · 0.85
pn_freeFunction · 0.85
pn_strongref_refcountFunction · 0.85

Calls 1

pni_default_refcountFunction · 0.85

Tested by

no test coverage detected