Searched defs:RefPointer (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Drefcount.h98 class RefPointer { class in namespace:Security
101 RefPointer() : ptr(0) {} // default to NULL pointer function in class:Security::RefPointer
102 RefPointer(const RefPointer& p) { if (p) p->ref(); ptr = p.ptr; } function in class:Security::RefPointer
103 RefPointer(T *p) { if (p) p->ref(); ptr = p; } function in class:Security::RefPointer
106 RefPointer(cons function in class:Security::RefPointer
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Drefcount.h98 class RefPointer { class in namespace:Security
101 RefPointer() : ptr(0) {} // default to NULL pointer function in class:Security::RefPointer
102 RefPointer(const RefPointer& p) { if (p) p->ref(); ptr = p.ptr; } function in class:Security::RefPointer
103 RefPointer(T *p) { if (p) p->ref(); ptr = p; } function in class:Security::RefPointer
106 RefPointer(cons function in class:Security::RefPointer
[all...]

Completed in 115 milliseconds