Lines Matching full:string
12 #include <linux/string.h>
15 * match_one - Determines if a string matches a simple pattern
16 * @s: the string to examine for presence of the pattern
17 * @p: the string containing the pattern
21 * Description: Determines if the pattern @p is present in string @s. Can only
93 * match_token - Find a token (and optional args) in a string
94 * @s: the string to examine for token/argument pairs
121 * @base: base to use when converting string
127 * string and returns 0. Returns -ENOMEM, -EINVAL, or -ERANGE on failure.
156 * @base: base to use when converting string
162 * string and returns 0. Returns -ENOMEM, -EINVAL, or -ERANGE on failure.
188 * Return: On success, sets @result to the integer represented by the string
204 * Return: On success, sets @result to the integer represented by the string
229 * Return: On success, sets @result to the integer represented by the string
245 * Return: On success, sets @result to the integer represented by the string
261 * Return: On success, sets @result to the integer represented by the string
271 * match_wildcard - parse if a string matches given wildcard pattern
273 * @str: the string to be parsed
275 * Description: Parse the string @str to check if matches wildcard
329 * c-style string @dest. Copy no more than @size - 1 characters, plus
348 * match_strdup - allocate a new string with the contents of a substring_t
351 * Description: Allocates and returns a string filled with the contents of
353 * string with kfree().
355 * Return: the address of the newly allocated NUL-terminated string or