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);
154 * __string_len(foo, bar, len)
158 * __assign_str(foo, bar, len);
163 * memcpy(__get_str(foo), bar, len);
164 * __get_str(foo)[len] = 0;
168 * for the '\0' terminating byte, and __get_str(foo) can be used
197 * For __dynamic_array(int, foo, bar) use __get_dynamic_array(foo)
198 * Use __get_dynamic_array_len(foo) to get the length of the array
204 * For __string(foo, bar) use __get_str(foo)
258 TP_PROTO(const char *foo, int bar, const int *lst,
261 TP_ARGS(foo, bar, lst, string, mask),
264 __array( char, foo, 10 )
272 strlcpy(__entry->foo, foo, 10);
280 TP_printk("foo %s %d %s %s %s %s (%s)", __entry->foo, __entry->bar,
366 TP_PROTO(const char *foo, int bar),
368 TP_ARGS(foo, bar),
373 __string( foo, foo )
378 __assign_str(foo, foo);
382 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
409 TP_PROTO(const char *foo, int bar),
411 TP_ARGS(foo, bar),
414 __string( foo, foo )
419 __assign_str(foo, foo);
423 TP_printk("foo %s %d", __get_str(foo), __entry->bar),
456 TP_PROTO(const char *foo, int bar),
458 TP_ARGS(foo, bar),
461 __string( foo, foo )
466 __assign_str(foo, foo);
470 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
478 TP_PROTO(const char *foo, int bar),
479 TP_ARGS(foo, bar));
482 TP_PROTO(const char *foo, int bar),
483 TP_ARGS(foo, bar),
488 TP_PROTO(const char *foo, int bar),
489 TP_ARGS(foo, bar),
505 TP_PROTO(const char *foo, int bar),
506 TP_ARGS(foo, bar),
507 TP_printk("bar %s %d", __get_str(foo), __entry->bar));