Lines Matching refs:device
69 int (*query_hw_caps)(const struct device *dev);
72 int (*cipher_begin_session)(const struct device *dev, struct cipher_ctx *ctx,
77 int (*cipher_free_session)(const struct device *dev, struct cipher_ctx *ctx);
80 int (*cipher_async_callback_set)(const struct device *dev,
84 int (*hash_begin_session)(const struct device *dev, struct hash_ctx *ctx,
87 int (*hash_free_session)(const struct device *dev, struct hash_ctx *ctx);
89 int (*hash_async_callback_set)(const struct device *dev,
111 static inline int crypto_query_hwcaps(const struct device *dev) in crypto_query_hwcaps()
162 static inline int cipher_begin_session(const struct device *dev, in cipher_begin_session()
172 ctx->device = dev; in cipher_begin_session()
204 static inline int cipher_free_session(const struct device *dev, in cipher_free_session()
228 static inline int cipher_callback_set(const struct device *dev, in cipher_callback_set()
384 static inline int hash_begin_session(const struct device *dev, in hash_begin_session()
392 ctx->device = dev; in hash_begin_session()
419 static inline int hash_free_session(const struct device *dev, in hash_free_session()
443 static inline int hash_callback_set(const struct device *dev, in hash_callback_set()