Lines Matching defs:wait
318 static inline int ahash_wait(int err, struct crypto_wait *wait)
321 err = crypto_wait_req(err, wait);
338 struct crypto_wait wait;
347 crypto_init_wait(&wait);
350 crypto_req_done, &wait);
352 rc = ahash_wait(crypto_ahash_init(req), &wait);
385 * read/request, wait for the completion of the
388 rc = ahash_wait(ahash_rc, &wait);
403 ahash_wait(ahash_rc, &wait);
409 * read/request, wait for the completion of the
412 rc = ahash_wait(ahash_rc, &wait);
425 /* wait for the last update request to complete */
426 rc = ahash_wait(ahash_rc, &wait);
433 rc = ahash_wait(crypto_ahash_final(req), &wait);
669 struct crypto_wait wait;
678 crypto_init_wait(&wait);
681 crypto_req_done, &wait);
683 rc = ahash_wait(crypto_ahash_init(req), &wait);
692 /* wait for the update request to complete */
693 rc = ahash_wait(ahash_rc, &wait);
696 rc = ahash_wait(crypto_ahash_final(req), &wait);