Lines Matching full:acquire
23 * The ->count variable represents how many more tasks can acquire this
81 * down - acquire the semaphore
84 * Acquires the semaphore. If no more tasks are allowed to acquire the
106 * down_interruptible - acquire the semaphore unless interrupted
109 * Attempts to acquire the semaphore. If no more tasks are allowed to
110 * acquire the semaphore, calling this function will put the task to sleep.
132 * down_killable - acquire the semaphore unless killed
135 * Attempts to acquire the semaphore. If no more tasks are allowed to
136 * acquire the semaphore, calling this function will put the task to sleep.
159 * down_trylock - try to acquire the semaphore, without waiting
162 * Try to acquire the semaphore atomically. Returns 0 if the semaphore has
187 * down_timeout - acquire the semaphore within a specified time
191 * Attempts to acquire the semaphore. If no more tasks are allowed to
192 * acquire the semaphore, calling this function will put the task to sleep.