Lines Matching full:foo

70  *   Here it is trace_foo_bar(char *foo, int bar).
73 * Here it is simply "foo, bar".
85 * __field(int, foo)
87 * __entry->foo = 5;
94 * __field_struct(struct bar, foo)
102 * __array( char, foo, 10) is the same as saying: char foo[10];
106 * __entry->foo[0] = 'a';
108 * memcpy(__entry->foo, bar, 10);
119 * __dynamic_array( int, foo, bar) is similar to: int foo[bar];
124 * memcpy(__get_dynamic_array(foo), bar, 10);
135 * __string(foo, bar) is similar to: strcpy(foo, bar)
139 * __assign_str(foo, bar);
170 * For __dynamic_array(int, foo, bar) use __get_dynamic_array(foo)
171 * Use __get_dynamic_array_len(foo) to get the length of the array
177 * For __string(foo, bar) use __get_str(foo)
231 TP_PROTO(const char *foo, int bar, const int *lst,
234 TP_ARGS(foo, bar, lst, string, mask),
237 __array( char, foo, 10 )
245 strlcpy(__entry->foo, foo, 10);
253 TP_printk("foo %s %d %s %s %s %s (%s)", __entry->foo, __entry->bar,
339 TP_PROTO(const char *foo, int bar),
341 TP_ARGS(foo, bar),
346 __string( foo, foo )
351 __assign_str(foo, foo);
355 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
382 TP_PROTO(const char *foo, int bar),
384 TP_ARGS(foo, bar),
387 __string( foo, foo )
392 __assign_str(foo, foo);
396 TP_printk("foo %s %d", __get_str(foo), __entry->bar),
429 TP_PROTO(const char *foo, int bar),
431 TP_ARGS(foo, bar),
434 __string( foo, foo )
439 __assign_str(foo, foo);
443 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
451 TP_PROTO(const char *foo, int bar),
452 TP_ARGS(foo, bar));
455 TP_PROTO(const char *foo, int bar),
456 TP_ARGS(foo, bar),
461 TP_PROTO(const char *foo, int bar),
462 TP_ARGS(foo, bar),
478 TP_PROTO(const char *foo, int bar),
479 TP_ARGS(foo, bar),
480 TP_printk("bar %s %d", __get_str(foo), __entry->bar));