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

Function pni_class_decref

c/src/core/object/object.c:152–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150}
151
152static inline void pni_class_decref(const pn_class_t *clazz, void *object) {
153 if (clazz->decref) {
154 clazz->decref(object);
155 } else {
156 pni_default_decref(object);
157 }
158}
159
160static inline int pni_class_refcount(const pn_class_t *clazz, void *object) {
161 if (clazz->refcount) {

Callers 4

pn_class_decrefFunction · 0.85
pn_decrefFunction · 0.85
pn_freeFunction · 0.85
pn_strongref_decrefFunction · 0.85

Calls 2

pni_default_decrefFunction · 0.85
decrefMethod · 0.45

Tested by

no test coverage detected