Lines Matching defs:string
183 * @fmt: The printf()'s format string, followed by parameters.
199 * tomoyo_flush - Flush queued string to userspace's buffer.
242 * tomoyo_set_string - Queue string to "struct tomoyo_io_buffer" structure.
245 * @string: String to print.
247 * Note that @string has to be kept valid until @head is kfree()d.
251 static void tomoyo_set_string(struct tomoyo_io_buffer *head, const char *string)
254 head->r.w[head->r.w_pos++] = string;
267 * @fmt: The printf()'s format string, followed by parameters.
540 * @string: String to check.
545 static s8 tomoyo_find_yesno(const char *string, const char *find)
547 const char *cp = strstr(string, find);
563 * @string: String to check.
568 static void tomoyo_set_uint(unsigned int *i, const char *string,
571 const char *cp = strstr(string, find);
1684 * empty string otherwise.
2044 * @fmt: The printf()'s format string, followed by parameters.