Home
last modified time | relevance | path

Searched refs:m_hImpl (Results 1 – 4 of 4) sorted by relevance

/trunk/main/store/inc/store/
H A Dstore.hxx45 : m_hImpl (0)
52 if (m_hImpl)
53 (void) store_releaseHandle (m_hImpl);
59 : m_hImpl (rhs.m_hImpl)
61 if (m_hImpl)
62 (void) store_acquireHandle (m_hImpl);
69 if (rhs.m_hImpl) in operator =()
70 (void) store_acquireHandle (rhs.m_hImpl); in operator =()
71 if (m_hImpl) in operator =()
72 (void) store_releaseHandle (m_hImpl); in operator =()
[all …]
/trunk/main/registry/inc/registry/
H A Dregistry.hxx234 RegHandle m_hImpl; member in Registry
663 RegKeyHandle getKeyHandle() const { return m_hImpl; } in getKeyHandle()
675 RegKeyHandle m_hImpl; member in RegistryKey
783 : m_hImpl(NULL) in RegistryKey()
788 , m_hImpl(hKey) in RegistryKey()
790 if (m_hImpl) in RegistryKey()
791 m_registry.m_pApi->acquireKey(m_hImpl); in RegistryKey()
796 , m_hImpl(toCopy.m_hImpl) in RegistryKey()
798 if (m_hImpl) in RegistryKey()
799 m_registry.m_pApi->acquireKey(m_hImpl); in RegistryKey()
[all …]
H A Dreflread.hxx316 TypeReaderImpl m_hImpl; member in RegistryTypeReader
325 , m_hImpl(NULL) in RegistryTypeReader()
327 m_hImpl = m_pApi->createEntry(buffer, bufferLen, copyData); in RegistryTypeReader()
333 , m_hImpl(toCopy.m_hImpl) in RegistryTypeReader()
334 { m_pApi->acquire(m_hImpl); } in RegistryTypeReader()
338 { m_pApi->release(m_hImpl); } in ~RegistryTypeReader()
342 if (m_hImpl != toAssign.m_hImpl) in operator ==()
344 m_pApi->release(m_hImpl); in operator ==()
345 m_hImpl = toAssign.m_hImpl; in operator ==()
346 m_pApi->acquire(m_hImpl); in operator ==()
[all …]
H A Dreflwrit.hxx226 TypeWriterImpl m_hImpl; member in RegistryTypeWriter
238 , m_hImpl(NULL) in RegistryTypeWriter()
240 m_hImpl = m_pApi->createEntry(RTTypeClass, in RegistryTypeWriter()
251 , m_hImpl(toCopy.m_hImpl) in RegistryTypeWriter()
253 m_pApi->acquire(m_hImpl); in RegistryTypeWriter()
258 m_pApi->release(m_hImpl); in ~RegistryTypeWriter()
263 if (m_hImpl != toAssign.m_hImpl) in operator ==()
265 m_pApi->release(m_hImpl); in operator ==()
266 m_hImpl = toAssign.m_hImpl; in operator ==()
267 m_pApi->acquire(m_hImpl); in operator ==()
[all …]