Lines Matching refs:res
9 int __must_check _kstrtoul(const char *s, unsigned int base, unsigned long *res);
10 int __must_check _kstrtol(const char *s, unsigned int base, long *res);
12 int __must_check kstrtoull(const char *s, unsigned int base, unsigned long long *res);
13 int __must_check kstrtoll(const char *s, unsigned int base, long long *res);
30 static inline int __must_check kstrtoul(const char *s, unsigned int base, unsigned long *res) in kstrtoul() argument
38 return kstrtoull(s, base, (unsigned long long *)res); in kstrtoul()
40 return _kstrtoul(s, base, res); in kstrtoul()
58 static inline int __must_check kstrtol(const char *s, unsigned int base, long *res) in kstrtol() argument
66 return kstrtoll(s, base, (long long *)res); in kstrtol()
68 return _kstrtol(s, base, res); in kstrtol()
71 int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res);
72 int __must_check kstrtoint(const char *s, unsigned int base, int *res);
74 static inline int __must_check kstrtou64(const char *s, unsigned int base, u64 *res) in kstrtou64() argument
76 return kstrtoull(s, base, res); in kstrtou64()
79 static inline int __must_check kstrtos64(const char *s, unsigned int base, s64 *res) in kstrtos64() argument
81 return kstrtoll(s, base, res); in kstrtos64()
84 static inline int __must_check kstrtou32(const char *s, unsigned int base, u32 *res) in kstrtou32() argument
86 return kstrtouint(s, base, res); in kstrtou32()
89 static inline int __must_check kstrtos32(const char *s, unsigned int base, s32 *res) in kstrtos32() argument
91 return kstrtoint(s, base, res); in kstrtos32()
94 int __must_check kstrtou16(const char *s, unsigned int base, u16 *res);
95 int __must_check kstrtos16(const char *s, unsigned int base, s16 *res);
96 int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
97 int __must_check kstrtos8(const char *s, unsigned int base, s8 *res);
98 int __must_check kstrtobool(const char *s, bool *res);
100 …strtoull_from_user(const char __user *s, size_t count, unsigned int base, unsigned long long *res);
101 …st_check kstrtoll_from_user(const char __user *s, size_t count, unsigned int base, long long *res);
102 …heck kstrtoul_from_user(const char __user *s, size_t count, unsigned int base, unsigned long *res);
103 int __must_check kstrtol_from_user(const char __user *s, size_t count, unsigned int base, long *res…
104 …eck kstrtouint_from_user(const char __user *s, size_t count, unsigned int base, unsigned int *res);
105 … __must_check kstrtoint_from_user(const char __user *s, size_t count, unsigned int base, int *res);
106 … __must_check kstrtou16_from_user(const char __user *s, size_t count, unsigned int base, u16 *res);
107 … __must_check kstrtos16_from_user(const char __user *s, size_t count, unsigned int base, s16 *res);
108 int __must_check kstrtou8_from_user(const char __user *s, size_t count, unsigned int base, u8 *res);
109 int __must_check kstrtos8_from_user(const char __user *s, size_t count, unsigned int base, s8 *res);
110 int __must_check kstrtobool_from_user(const char __user *s, size_t count, bool *res);
112 …t __must_check kstrtou64_from_user(const char __user *s, size_t count, unsigned int base, u64 *res) in kstrtou64_from_user() argument
114 return kstrtoull_from_user(s, count, base, res); in kstrtou64_from_user()
117 …t __must_check kstrtos64_from_user(const char __user *s, size_t count, unsigned int base, s64 *res) in kstrtos64_from_user() argument
119 return kstrtoll_from_user(s, count, base, res); in kstrtos64_from_user()
122 …t __must_check kstrtou32_from_user(const char __user *s, size_t count, unsigned int base, u32 *res) in kstrtou32_from_user() argument
124 return kstrtouint_from_user(s, count, base, res); in kstrtou32_from_user()
127 …t __must_check kstrtos32_from_user(const char __user *s, size_t count, unsigned int base, s32 *res) in kstrtos32_from_user() argument
129 return kstrtoint_from_user(s, count, base, res); in kstrtos32_from_user()
150 static inline int strtobool(const char *s, bool *res) in strtobool() argument
152 return kstrtobool(s, res); in strtobool()