Lines Matching full:acquire
23 * The ->count variable represents how many more tasks can acquire this
43 * down - acquire the semaphore
46 * Acquires the semaphore. If no more tasks are allowed to acquire the
68 * down_interruptible - acquire the semaphore unless interrupted
71 * Attempts to acquire the semaphore. If no more tasks are allowed to
72 * acquire the semaphore, calling this function will put the task to sleep.
94 * down_killable - acquire the semaphore unless killed
97 * Attempts to acquire the semaphore. If no more tasks are allowed to
98 * acquire the semaphore, calling this function will put the task to sleep.
121 * down_trylock - try to acquire the semaphore, without waiting
124 * Try to acquire the semaphore atomically. Returns 0 if the semaphore has
149 * down_timeout - acquire the semaphore within a specified time
153 * Attempts to acquire the semaphore. If no more tasks are allowed to
154 * acquire the semaphore, calling this function will put the task to sleep.