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

/illumos-gate/usr/src/cmd/lms/SyncLib/Include/
H A DSPtr.h59 SPtr(const SPtr<X> &other_sptr_p) argument
61 other_sptr_p.getSem()->acquire();
62 _ptr = other_sptr_p.get();
63 _pref_count = other_sptr_p.getRefcnt();
64 _psem = other_sptr_p.getSem();
69 SPtr(const SPtr &other_sptr_p) argument
71 other_sptr_p.getSem()->acquire();
72 _ptr = other_sptr_p.get();
73 _pref_count = other_sptr_p.getRefcnt();
74 _psem = other_sptr_p
99 operator =(const SPtr<X> &other_sptr_p) argument
123 operator =(const SPtr &other_sptr_p) argument
[all...]

Completed in 67 milliseconds