HomeSort by relevance Sort by last modified time
    Searched refs:__cv (Results 1 - 3 of 3) sorted by null

  /external/libcxx/src/support/win32/
thread_win32.cpp 95 int __libcpp_condvar_signal(__libcpp_condvar_t *__cv)
97 WakeConditionVariable((PCONDITION_VARIABLE)__cv);
101 int __libcpp_condvar_broadcast(__libcpp_condvar_t *__cv)
103 WakeAllConditionVariable((PCONDITION_VARIABLE)__cv);
107 int __libcpp_condvar_wait(__libcpp_condvar_t *__cv, __libcpp_mutex_t *__m)
109 SleepConditionVariableSRW((PCONDITION_VARIABLE)__cv, (PSRWLOCK)__m, INFINITE, 0);
113 int __libcpp_condvar_timedwait(__libcpp_condvar_t *__cv, __libcpp_mutex_t *__m,
123 if (!SleepConditionVariableSRW((PCONDITION_VARIABLE)__cv, (PSRWLOCK)__m,
134 int __libcpp_condvar_destroy(__libcpp_condvar_t *__cv)
136 static_cast<void>(__cv);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
wcgui.py 137 self.__cv = BooleanVar(parent)
138 self.__cv.set(self.checkext)
139 self.__checkext = Checkbutton(self.__controls, variable=self.__cv,
317 self.checkext = self.__cv.get()
  /external/python/cpython2/Tools/webchecker/
wcgui.py 137 self.__cv = BooleanVar(parent)
138 self.__cv.set(self.checkext)
139 self.__checkext = Checkbutton(self.__controls, variable=self.__cv,
317 self.checkext = self.__cv.get()

Completed in 6533 milliseconds