Lines Matching refs:address
42 ** Interface to cached monitors. Cached monitors use an address to find a
66 ** Like PR_EnterMonitor except use the "address" to find a monitor in the
68 ** with "address". Note that you must PR_CExitMonitor the address to
73 NSPR_API(PRMonitor*) PR_CEnterMonitor(void *address);
76 ** Like PR_ExitMonitor except use the "address" to find a monitor in the
79 NSPR_API(PRStatus) PR_CExitMonitor(void *address);
82 ** Like PR_Wait except use the "address" to find a monitor in the
85 NSPR_API(PRStatus) PR_CWait(void *address, PRIntervalTime timeout);
88 ** Like PR_Notify except use the "address" to find a monitor in the
91 NSPR_API(PRStatus) PR_CNotify(void *address);
94 ** Like PR_NotifyAll except use the "address" to find a monitor in the
97 NSPR_API(PRStatus) PR_CNotifyAll(void *address);
101 ** freelist, with the monitor's cache-key passed in address.
103 NSPR_API(void) PR_CSetOnMonitorRecycle(void (PR_CALLBACK *callback)(void *address));