Lines Matching refs:__count
36 __count is the number of times the current thread has acquired it
38 When the lock is released, __tid is None and __count is zero.
47 self.__count = 0
64 self.__count = self.__count + 1
74 assert self.__count == 0
76 self.__count = 1
94 assert self.__count > 0
95 self.__count = self.__count - 1
96 if self.__count == 0: