Lines Matching refs:tkns
31 strsplit_u32(char **buf, const char *delim, u32 **tkns, size_t *num_tkns) in strsplit_u32() argument
39 *tkns = NULL; in strsplit_u32()
62 *tkns = kmemdup(data, count * sizeof(*data), GFP_KERNEL); in strsplit_u32()
63 if (*tkns == NULL) { 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()
144 u32 *tkns; 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()
161 desc = (struct sof_probe_point_desc *)tkns; in probe_points_write()
167 kfree(tkns); in probe_points_write()
184 u32 *tkns; in probe_points_remove_write() local
192 ret = tokenize_input(from, count, ppos, &tkns, &num_tkns); in probe_points_remove_write()
200 ret = sof_ipc_probe_points_remove(sdev, tkns, num_tkns); in probe_points_remove_write()
204 kfree(tkns); in probe_points_remove_write()