Lines Matching refs:op
67 struct pevent_plugin_option *op; in traceevent_plugin_list_options() local
73 for (op = reg->options; op->name; op++) { in traceevent_plugin_list_options()
74 char *alias = op->plugin_alias ? op->plugin_alias : op->file; in traceevent_plugin_list_options()
77 name = malloc(strlen(op->name) + strlen(alias) + 2); in traceevent_plugin_list_options()
81 sprintf(name, "%s:%s", alias, op->name); in traceevent_plugin_list_options()
121 struct trace_plugin_options *op; in update_option() local
139 for (op = trace_plugin_options; op; op = op->next) { in update_option()
140 if (!op->plugin) in update_option()
142 if (strcmp(op->plugin, plugin) != 0) in update_option()
144 if (strcmp(op->option, option->name) != 0) in update_option()
147 option->value = op->value; in update_option()
153 for (op = trace_plugin_options; op; op = op->next) { in update_option()
154 if (op->plugin) in update_option()
156 if (strcmp(op->option, option->name) != 0) in update_option()
159 option->value = op->value; in update_option()