Lines Matching full:acquire
23 * The ->count variable represents how many more tasks can acquire this
45 * down - acquire the semaphore
48 * Acquires the semaphore. If no more tasks are allowed to acquire the
70 * down_interruptible - acquire the semaphore unless interrupted
73 * Attempts to acquire the semaphore. If no more tasks are allowed to
74 * acquire the semaphore, calling this function will put the task to sleep.
96 * down_killable - acquire the semaphore unless killed
99 * Attempts to acquire the semaphore. If no more tasks are allowed to
100 * acquire the semaphore, calling this function will put the task to sleep.
123 * down_trylock - try to acquire the semaphore, without waiting
126 * Try to acquire the semaphore atomically. Returns 0 if the semaphore has
151 * down_timeout - acquire the semaphore within a specified time
155 * Attempts to acquire the semaphore. If no more tasks are allowed to
156 * acquire the semaphore, calling this function will put the task to sleep.