/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | dceemu.c | 72 PRLock *ml = PR_NewLock(); local 76 rv = PRP_TryLock(ml); 80 rv = PRP_TryLock(ml); 92 rv = PRP_NakedWait(cv, ml, tenmsecs); 96 PR_Unlock(ml); 107 PR_DestroyLock(ml);
|
H A D | logger.c | 77 PRLock *ml; local 81 ml = PR_NewLock(); 83 cv = PR_NewCondVar(ml); 88 PR_Lock(ml); 90 PR_Unlock(ml); 96 PR_DestroyLock(ml);
|
H A D | lazyinit.c | 77 PRLock *ml = NULL; local 93 case 0: ml = PR_NewLock();
|
H A D | many_cv.c | 71 PRLock *ml = NULL; local 104 ml = PR_NewLock(); 105 PR_ASSERT(NULL != ml); 112 cv[index] = PR_NewCondVar(ml); 118 PR_Lock(ml); 126 PR_Unlock(ml); 134 PR_DestroyLock(ml);
|
H A D | concur.c | 68 PRLock *ml; member in struct:Context 83 PR_Lock(context->ml); 88 PR_Unlock(context->ml); 129 context.ml = PR_NewLock(); 130 context.cv = PR_NewCondVar(context.ml); 156 PR_Lock(context.ml); 158 PR_Unlock(context.ml); 178 PR_DestroyLock(context.ml);
|
H A D | inrval.c | 148 PRLock *ml = PR_NewLock(); local 149 PRCondVar *cv = PR_NewCondVar(ml); 153 PR_Lock(ml); 157 PR_Unlock(ml); 167 PR_DestroyLock(ml);
|
H A D | intrupt.c | 66 static PRLock *ml = NULL; variable 79 PR_Lock(ml); 157 PR_Unlock(ml); 210 PR_Lock(ml); 212 PR_Unlock(ml); 258 ml = PR_NewLock(); 259 cv = PR_NewCondVar(ml); 335 PR_DestroyLock(ml);
|
H A D | lockfile.c | 91 PRLock *ml; member in struct:LockContentious_s 154 contention.ml = PR_NewLock(); 165 PR_Lock(contention.ml); 168 PR_Unlock(contention.ml); 173 PR_DestroyLock(contention.ml);
|
H A D | switch.c | 73 PRLock *ml; member in struct:Shared 102 PR_Lock(shared->ml); 109 PR_Unlock(shared->ml); 175 home.ml = PR_NewLock(); 176 home.cv = PR_NewCondVar(home.ml); 186 shared->ml = home.ml; 187 shared->cv = PR_NewCondVar(home.ml); 206 PR_Lock(home.ml); 216 PR_Unlock(home.ml); [all...] |
H A D | xnotify.c | 53 static PRLock *ml = NULL; variable 76 PR_Lock(ml); 80 PR_Unlock(ml); 369 ml = PR_NewLock(); 374 PR_DestroyLock(ml);
|
H A D | alarm.c | 92 PRLock *ml; member in struct:notifyData 102 PR_Lock(notifyData->ml); 111 PR_Unlock(notifyData->ml); 139 notifyData.ml = PR_NewLock(); 140 notifyData.child = PR_NewCondVar(notifyData.ml); 141 notifyData.parent = PR_NewCondVar(notifyData.ml); 149 PR_Lock(notifyData.ml); 157 PR_Unlock(notifyData.ml); 164 PR_DestroyLock(notifyData.ml); 176 PRLock *ml local 199 PRLock *ml; member in struct:AlarmData 264 PRLock *ml = PR_NewLock(); local 339 PRLock *ml = PR_NewLock(); local 392 PRLock *ml = PR_NewLock(); local [all...] |
H A D | lock.c | 104 PRLock *ml; member in struct:LockContentious_s 113 PRMonitor *ml; member in struct:MonitorContentious_s 138 PRLock *ml = NULL; local 141 ml = PR_NewLock(); 142 PR_DestroyLock(ml); 143 ml = NULL; 150 PRLock *ml = NULL; local 151 ml = PR_NewLock(); 154 PR_Lock(ml); 155 PR_Unlock(ml); 220 PRMonitor *ml = NULL; local 232 PRMonitor *ml = NULL; local 245 PRMonitor *ml = (PRMonitor*)arg; local 257 PRMonitor *ml = PR_NewMonitor(); local [all...] |
H A D | ntioto.c | 97 PRLock *ml; variable 145 PR_Lock( ml ); 154 PR_Unlock( ml ); 164 PR_Lock( ml ); 171 PR_Unlock( ml ); 262 ml = PR_NewLock(); 263 cv = PR_NewCondVar( ml ); 309 PR_DestroyLock(ml);
|
H A D | thruput.c | 79 PRLock *ml; member in struct:Shared 153 PR_Lock(shared->ml); 164 PR_Unlock(shared->ml); 240 PR_Lock(shared->ml); 251 PR_Unlock(shared->ml); 369 shared->ml = PR_NewLock();
|
H A D | tmoacc.c | 61 PRLock *ml; member in struct:Shared 173 PR_Lock(shared->ml); 176 PR_Unlock(shared->ml); 216 shared->ml = PR_NewLock(); 217 shared->cv = PR_NewCondVar(shared->ml); 282 PR_Lock(shared->ml); 285 PR_Unlock(shared->ml); 316 PR_DestroyLock(shared->ml);
|
H A D | y2ktmo.c | 303 PRLock *ml; local 306 ml = PR_NewLock(); 307 if (ml == NULL) { 311 cv = PR_NewCondVar(ml); 316 PR_Lock(ml); 318 PR_Unlock(ml); 342 PR_DestroyLock(ml);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rclock.h | 93 inline RCEnter::RCEnter(RCLock* ml) { lock = ml; lock->Acquire(); } argument
|
H A D | rcnetdb.h | 113 RCLock ml; member in class:RCHostLookup
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/ |
H A D | interval.cpp | 53 RCLock ml; local 55 RCCondition cv(&ml); 67 RCEnter lock(&ml); 110 RCEnter lock(&ml);
|
H A D | switch.cpp | 67 Home(Home *link, RCLock* ml); 71 RCLock* ml; member in class:Home 79 ml = lock; 87 Shared(RCThread::Scope scope, Home* link, RCLock* ml); 104 RCEnter entry(ml);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/ |
H A D | prfdcach.c | 64 PRLock *ml; member in struct:_PR_Fd_Cache 108 PR_Lock(_pr_fd_cache.ml); /* need the lock to do this safely */ 128 PR_Unlock(_pr_fd_cache.ml); 176 PR_Lock(_pr_fd_cache.ml); 191 PR_Unlock(_pr_fd_cache.ml); 207 PR_Lock(_pr_fd_cache.ml); 250 PR_Unlock(_pr_fd_cache.ml); 283 _pr_fd_cache.ml = PR_NewLock(); 284 PR_ASSERT(NULL != _pr_fd_cache.ml); 301 PR_DestroyLock(_pr_fd_cache.ml); [all...] |
/vbox/src/libs/xpcom18a4/xpcom/tests/ |
H A D | TestMinStringAPI.cpp | 211 PRUint32 sl, ml, nl; local 214 ml = NS_CStringGetData(matchVal, &mp); 217 for (const char* iter = sp; iter <= sp + sl - ml; ++iter) 219 if (memcmp(iter, mp, ml) == 0) 223 NS_CStringSetDataRange(str, offset, ml, np, nl);
|
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/axtls/ |
H A D | aes.c | 60 #define ml 0x7f7f7f7f macro
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/private/ |
H A D | pprmwait.h | 80 PRLock *ml; /* lock for synchronizing this wait group */ member in struct:PRWaitGroup
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/bthreads/ |
H A D | btthread.c | 57 PRLock *ml; /* a lock to protect ourselves */ member in struct:_BT_Bookeeping 150 bt_book.ml = PR_NewLock(); 151 if( NULL == bt_book.ml ) 245 PR_Lock( bt_book.ml ); 257 PR_Unlock( bt_book.ml ); 320 PR_Lock( bt_book.ml ); 327 PR_Unlock( bt_book.ml ); 628 PR_Lock( bt_book.ml ); 637 PR_Unlock( bt_book.ml ); 681 PR_Lock(bt_book.ml); [all...] |