Lines Matching +full:in +full:- +full:and +full:- +full:around
1 /* SPDX-License-Identifier: GPL-2.0 */
9 * A function-like feature checking macro that is a wrapper around
10 * `__has_attribute`, which is defined by GCC 5+ and Clang and evaluates to a
36 /* Documents functions that acquire a lock in the body of a function, and do not release it. */
41 * and release it in the body of the function.
45 /* Documents functions that try to acquire a lock, and return success or failure. */
69 * A wrapper around the mutex implementation that allows perf to error check
76 /* A wrapper around the condition variable implementation. */
84 * Initialize the mtx struct and set the process-shared rather than default
85 * process-private attribute.
92 /* Tries to acquire the lock and returns true on success. */
98 * Initialize the cond struct and specify the process-shared rather than default
99 * process-private attribute.