Lines Matching refs:question
17 char *question; in damon_dbgfs_test_str_to_ints() local
22 question = "123"; in damon_dbgfs_test_str_to_ints()
23 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
28 question = "123abc"; in damon_dbgfs_test_str_to_ints()
29 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
34 question = "a123"; in damon_dbgfs_test_str_to_ints()
35 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
39 question = "12 35"; in damon_dbgfs_test_str_to_ints()
40 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
46 question = "12 35 46"; in damon_dbgfs_test_str_to_ints()
47 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
53 question = "12 35 abc 46"; in damon_dbgfs_test_str_to_ints()
54 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
60 question = ""; in damon_dbgfs_test_str_to_ints()
61 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()
65 question = "\n"; in damon_dbgfs_test_str_to_ints()
66 answers = str_to_ints(question, strlen(question), &nr_integers); in damon_dbgfs_test_str_to_ints()