Lines Matching refs:__must_check
339 int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res);
340 int __must_check _kstrtol(const char *s, unsigned int base, long *res);
342 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
343 int __must_check kstrtoll(const char *s, unsigned int base, long long *res);
361 static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res) in kstrtoul()
390 static inline int __must_check kstrtol(const char *s, unsigned int base, long *res) in kstrtol()
403 int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res);
404 int __must_check kstrtoint(const char *s, unsigned int base, int *res);
406 static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res) in kstrtou64()
411 static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) in kstrtos64()
416 static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res) in kstrtou32()
421 static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res) in kstrtos32()
426 int __must_check kstrtou16(const char *s, unsigned int base, u16 *res);
427 int __must_check kstrtos16(const char *s, unsigned int base, s16 *res);
428 int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
429 int __must_check kstrtos8(const char *s, unsigned int base, s8 *res);
430 int __must_check kstrtobool(const char *s, bool *res);
432 int __must_check kstrtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigne…
433 int __must_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long lon…
434 int __must_check kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned…
435 int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res…
436 int __must_check kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsign…
437 int __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *re…
438 int __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *re…
439 int __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *re…
440 int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
441 int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
442 int __must_check kstrtobool_from_user(const char __user *s, size_t count, bool *res);
444 static inline int __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int… in kstrtou64_from_user()
449 static inline int __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int… in kstrtos64_from_user()
454 static inline int __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int… in kstrtou32_from_user()
459 static inline int __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int… in kstrtos32_from_user()
631 extern int __must_check hex2bin(u8 *dst, const char *src, size_t count);