Lines Matching refs:num_tkns
31 strsplit_u32(char **buf, const char *delim, u32 **tkns, size_t *num_tkns) in strsplit_u32() argument
40 *num_tkns = 0; in strsplit_u32()
67 *num_tkns = count; in strsplit_u32()
75 loff_t *ppos, u32 **tkns, size_t *num_tkns) in tokenize_input() argument
91 ret = strsplit_u32((char **)&buf, ",", tkns, num_tkns); in tokenize_input()
143 size_t num_tkns, bytes; in probe_points_write() local
152 ret = tokenize_input(from, count, ppos, &tkns, &num_tkns); in probe_points_write()
155 bytes = sizeof(*tkns) * num_tkns; in probe_points_write()
156 if (!num_tkns || (bytes % sizeof(*desc))) { in probe_points_write()
183 size_t num_tkns; in probe_points_remove_write() local
192 ret = tokenize_input(from, count, ppos, &tkns, &num_tkns); in probe_points_remove_write()
195 if (!num_tkns) { in probe_points_remove_write()
200 ret = sof_ipc_probe_points_remove(sdev, tkns, num_tkns); in probe_points_remove_write()