Lines Matching refs:tkns
33 strsplit_u32(char **buf, const char *delim, u32 **tkns, size_t *num_tkns) in strsplit_u32() argument
41 *tkns = NULL; in strsplit_u32()
64 *tkns = kmemdup(data, count * sizeof(*data), GFP_KERNEL); in strsplit_u32()
65 if (*tkns == NULL) { in strsplit_u32()
77 loff_t *ppos, u32 **tkns, size_t *num_tkns) in tokenize_input() argument
93 ret = strsplit_u32((char **)&buf, ",", tkns, num_tkns); in tokenize_input()
146 u32 *tkns; in probe_points_write() local
154 ret = tokenize_input(from, count, ppos, &tkns, &num_tkns); in probe_points_write()
157 bytes = sizeof(*tkns) * num_tkns; in probe_points_write()
163 desc = (struct sof_probe_point_desc *)tkns; in probe_points_write()
169 kfree(tkns); in probe_points_write()
186 u32 *tkns; in probe_points_remove_write() local
194 ret = tokenize_input(from, count, ppos, &tkns, &num_tkns); in probe_points_remove_write()
202 ret = sof_ipc_probe_points_remove(sdev, tkns, num_tkns); in probe_points_remove_write()
206 kfree(tkns); in probe_points_remove_write()