Lines Matching full:acquire
23 * The ->count variable represents how many more tasks can acquire this
44 * down - acquire the semaphore
47 * Acquires the semaphore. If no more tasks are allowed to acquire the
69 * down_interruptible - acquire the semaphore unless interrupted
72 * Attempts to acquire the semaphore. If no more tasks are allowed to
73 * acquire the semaphore, calling this function will put the task to sleep.
95 * down_killable - acquire the semaphore unless killed
98 * Attempts to acquire the semaphore. If no more tasks are allowed to
99 * acquire the semaphore, calling this function will put the task to sleep.
122 * down_trylock - try to acquire the semaphore, without waiting
125 * Try to acquire the semaphore atomically. Returns 0 if the semaphore has
150 * down_timeout - acquire the semaphore within a specified time
154 * Attempts to acquire the semaphore. If no more tasks are allowed to
155 * acquire the semaphore, calling this function will put the task to sleep.