Lines Matching full:documents
49 // Documents if a shared field or global variable needs to be protected by a
68 // Documents if the memory location pointed to by a pointer should be guarded
90 // Documents the acquisition order between locks that can be held
111 // Documents a function that expects a mutex to be held prior to entry.
140 // Documents the locks acquired in the body of the function. These locks
148 // Documents a function that returns a mutex without acquiring it. For example,
156 // Documents if a class/type is a lockable type (such as the `Mutex` class).
162 // Documents if a class does RAII locking (such as the `MutexLock` class).
172 // Documents functions that acquire a lock in the body of a function, and do
179 // Documents functions that acquire a shared (reader) lock in the body of a
186 // Documents functions that expect a lock to be held on entry to the function,
193 // Documents functions that try to acquire a lock, and return success or failure
207 // Documents functions that dynamically check to see if a lock is held, and fail