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);
143 * saved string into the "foo" field.
155 * __vstring(foo, fmt, va) is similar to: vsnprintf(foo, fmt, va)
159 * __assign_vstr(foo, fmt, va);
175 * __string_len(foo, bar, len)
181 * __assign_str(foo);
186 * memcpy(__get_str(foo), bar, len);
187 * __get_str(foo)[len] = 0;
191 * for the '\0' terminating byte, and __get_str(foo) can be used
230 * For __dynamic_array(int, foo, bar) use __get_dynamic_array(foo)
231 * Use __get_dynamic_array_len(foo) to get the length of the array
237 * For __string(foo, bar) use __get_str(foo)
293 TP_PROTO(const char *foo, int bar, const int *lst,
297 TP_ARGS(foo, bar, lst, string, mask, fmt, va),
300 __array( char, foo, 10 )
307 __string_len( lstr, foo, bar / 2 < strlen(foo) ? bar / 2 : strlen(foo) )
311 strscpy(__entry->foo, foo, 10);
322 TP_printk("foo %s %d %s %s %s %s %s (%s) (%s) %s", __entry->foo, __entry->bar,
410 TP_PROTO(const char *foo, int bar),
412 TP_ARGS(foo, bar),
417 __string( foo, foo )
422 __assign_str(foo);
426 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
453 TP_PROTO(const char *foo, int bar),
455 TP_ARGS(foo, bar),
458 __string( foo, foo )
463 __assign_str(foo);
467 TP_printk("foo %s %d", __get_str(foo), __entry->bar),
500 TP_PROTO(const char *foo, int bar),
502 TP_ARGS(foo, bar),
505 __string( foo, foo )
510 __assign_str(foo);
514 TP_printk("foo %s %d", __get_str(foo), __entry->bar)
522 TP_PROTO(const char *foo, int bar),
523 TP_ARGS(foo, bar));
526 TP_PROTO(const char *foo, int bar),
527 TP_ARGS(foo, bar),
532 TP_PROTO(const char *foo, int bar),
533 TP_ARGS(foo, bar),
549 TP_PROTO(const char *foo, int bar),
550 TP_ARGS(foo, bar),
551 TP_printk("bar %s %d", __get_str(foo), __entry->bar));
565 TP_PROTO(const char *foo, int bar, unsigned long *mask, const cpumask_t *cpus),
567 TP_ARGS(foo, bar, mask, cpus),
570 __rel_string( foo, foo )
578 __assign_rel_str(foo);
585 TP_printk("foo_rel_loc %s, %d, %s, %s", __get_rel_str(foo), __entry->bar,