Lines Matching refs:str
178 * @str: Pointer to string to parse.
185 u8 tomoyo_parse_ulong(unsigned long *result, char **str)
187 const char *cp = *str;
205 *str = ep;
309 * @str: Pointer to the string.
311 * Returns true if @str is a \ooo style octal value, false otherwise.
316 static inline bool tomoyo_byte_range(const char *str)
318 return *str >= '0' && *str++ <= '3' &&
319 *str >= '0' && *str++ <= '7' &&
320 *str >= '0' && *str <= '7';