Home
last modified time | relevance | path

Searched refs:_events (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/src/system_wrappers/source/
Dcondition_variable_win.cc86 _events[WAKEALL_0] = NULL; in ConditionVariableWindows()
87 _events[WAKEALL_1] = NULL; in ConditionVariableWindows()
88 _events[WAKE] = NULL; in ConditionVariableWindows()
95 _events[WAKEALL_0] = CreateEvent(NULL, // no security attributes in ConditionVariableWindows()
100 _events[WAKEALL_1] = CreateEvent(NULL, // no security attributes in ConditionVariableWindows()
105 _events[WAKE] = CreateEvent(NULL, // no security attributes in ConditionVariableWindows()
116 CloseHandle(_events[WAKE]); in ~ConditionVariableWindows()
117 CloseHandle(_events[WAKEALL_1]); in ~ConditionVariableWindows()
118 CloseHandle(_events[WAKEALL_0]); in ~ConditionVariableWindows()
153 events[0] = _events[WAKE]; in SleepCS()
[all …]
Dcondition_variable_win.h63 HANDLE _events[EVENT_COUNT]; variable
/external/lldb/test/unittest2/test/
Dsupport.py42 self._events = log
46 self._events.append('startTest')
50 self._events.append('startTestRun')
54 self._events.append('stopTest')
58 self._events.append('stopTestRun')
62 self._events.append('addFailure')
66 self._events.append('addSuccess')
70 self._events.append('addError')
74 self._events.append('addSkip')
78 self._events.append('addExpectedFailure')
[all …]
Dtest_runner.py79 self._events = events
82 return LoggingTextResult(self._events)
/external/jmdns/src/javax/jmdns/impl/
DJmDNSImpl.java2012 private final ConcurrentMap<String, ServiceEvent> _events; field in JmDNSImpl.ServiceCollector
2027 _events = new ConcurrentHashMap<String, ServiceEvent>(); in ServiceCollector()
2050 _events.put(event.getName(), event); in serviceAdded()
2066 _events.remove(event.getName()); in serviceRemoved()
2080 _events.remove(event.getName()); in serviceResolved()
2092 if (_infos.isEmpty() || !_events.isEmpty() || _needToWaitForInfos) { in list()
2103 if (_events.isEmpty() && !_infos.isEmpty() && !_needToWaitForInfos) { in list()
2131 if (_events.isEmpty()) { in toString()
2135 for (String key : _events.keySet()) { in toString()
2139 aLog.append(_events.get(key)); in toString()