Home
last modified time | relevance | path

Searched refs:sslLock (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/net/third_party/nss/ssl/
Dsslmutex.h46 PRLock* sslLock; member
61 PRLock* sslLock; member
79 PRLock* sslLock; member
93 PRLock* sslLock; member
Dsslmutex.c14 PR_ASSERT(pMutex != 0 && pMutex->u.sslLock == 0 ); in single_process_sslMutex_Init()
16 pMutex->u.sslLock = PR_NewLock(); in single_process_sslMutex_Init()
17 if (!pMutex->u.sslLock) { in single_process_sslMutex_Init()
26 PR_ASSERT(pMutex->u.sslLock!= 0); in single_process_sslMutex_Destroy()
27 if (!pMutex->u.sslLock) { in single_process_sslMutex_Destroy()
31 PR_DestroyLock(pMutex->u.sslLock); in single_process_sslMutex_Destroy()
38 PR_ASSERT(pMutex->u.sslLock !=0); in single_process_sslMutex_Unlock()
39 if (!pMutex->u.sslLock) { in single_process_sslMutex_Unlock()
43 PR_Unlock(pMutex->u.sslLock); in single_process_sslMutex_Unlock()
50 PR_ASSERT(pMutex->u.sslLock != 0 ); in single_process_sslMutex_Lock()
[all …]