Lines Matching refs:tkns
27 * @tkns: Returned u32 sequence pointer.
31 strsplit_u32(char **buf, const char *delim, u32 **tkns, size_t *num_tkns)
39 *tkns = NULL;
62 *tkns = kmemdup(data, count * sizeof(*data), GFP_KERNEL);
63 if (*tkns == NULL) {
75 loff_t *ppos, u32 **tkns, size_t *num_tkns)
91 ret = strsplit_u32((char **)&buf, ",", tkns, num_tkns);
144 u32 *tkns;
152 ret = tokenize_input(from, count, ppos, &tkns, &num_tkns);
155 bytes = sizeof(*tkns) * num_tkns;
161 desc = (struct sof_probe_point_desc *)tkns;
167 kfree(tkns);
184 u32 *tkns;
192 ret = tokenize_input(from, count, ppos, &tkns, &num_tkns);
200 ret = sof_ipc_probe_points_remove(sdev, tkns, num_tkns);
204 kfree(tkns);