Lines Matching refs:entry
75 dev_err(sdev->dev, "Invalid trace filter entry '%s'\n", line);
104 /* update counter only when parsing whole entry passed */
115 char *entry = string;
121 * Each entry contains at least 1, up to TRACE_FILTER_ELEMENTS_PER_ENTRY
125 while (entry) {
127 entry = strchr(entry + 1, entry_delimiter[0]);
133 /* split input string by ';', and parse each entry separately in trace_filter_parse_entry */
134 while ((entry = strsep(&string, entry_delimiter))) {
135 entry_len = trace_filter_parse_entry(sdev, entry, *out, capacity, &cnt);
138 "Parsing filter entry '%s' failed with %d\n",
139 entry, entry_len);