Searched refs:fbuffer (Results 1 – 9 of 9) sorted by relevance
/linux/drivers/video/fbdev/ |
A D | platinumfb.c | 535 volatile __u8 *fbuffer; in platinumfb_probe() local 588 fbuffer = pinfo->base_frame_buffer; in platinumfb_probe() 589 fbuffer[0x100000] = 0x34; in platinumfb_probe() 590 fbuffer[0x100008] = 0x0; in platinumfb_probe() 592 fbuffer[0x200000] = 0x56; in platinumfb_probe() 593 fbuffer[0x200008] = 0x0; in platinumfb_probe() 595 fbuffer[0x300000] = 0x78; in platinumfb_probe() 596 fbuffer[0x300008] = 0x0; in platinumfb_probe() 599 bank1 = fbuffer[0x100000] == 0x34; in platinumfb_probe() 600 bank2 = fbuffer[0x200000] == 0x56; in platinumfb_probe() [all …]
|
/linux/kernel/trace/ |
A D | trace_kprobe.c | 1387 fbuffer.trace_file = trace_file; in NOKPROBE_SYMBOL() 1391 fbuffer.event = in NOKPROBE_SYMBOL() 1395 fbuffer.trace_ctx); in NOKPROBE_SYMBOL() 1396 if (!fbuffer.event) in NOKPROBE_SYMBOL() 1399 fbuffer.regs = regs; in NOKPROBE_SYMBOL() 1400 entry = fbuffer.entry = ring_buffer_event_data(fbuffer.event); in NOKPROBE_SYMBOL() 1437 fbuffer.event = in __kretprobe_trace_func() 1441 fbuffer.trace_ctx); in __kretprobe_trace_func() 1442 if (!fbuffer.event) in __kretprobe_trace_func() 1445 fbuffer.regs = regs; in __kretprobe_trace_func() [all …]
|
A D | trace_eprobe.c | 483 struct trace_event_buffer fbuffer; in __eprobe_trace_func() local 492 fbuffer.trace_ctx = tracing_gen_ctx(); in __eprobe_trace_func() 493 fbuffer.trace_file = edata->file; in __eprobe_trace_func() 496 fbuffer.regs = NULL; in __eprobe_trace_func() 498 fbuffer.event = in __eprobe_trace_func() 499 trace_event_buffer_lock_reserve(&fbuffer.buffer, edata->file, in __eprobe_trace_func() 502 fbuffer.trace_ctx); in __eprobe_trace_func() 503 if (!fbuffer.event) in __eprobe_trace_func() 506 entry = fbuffer.entry = ring_buffer_event_data(fbuffer.event); in __eprobe_trace_func() 513 trace_event_buffer_commit(&fbuffer); in __eprobe_trace_func()
|
A D | trace_events_inject.c | 19 struct trace_event_buffer fbuffer; in trace_inject_entry() local 24 entry = trace_event_buffer_reserve(&fbuffer, file, len); in trace_inject_entry() 28 trace_event_buffer_commit(&fbuffer); in trace_inject_entry()
|
A D | trace_events.c | 462 void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer, in trace_event_buffer_reserve() argument 478 fbuffer->trace_ctx = tracing_gen_ctx_dec(); in trace_event_buffer_reserve() 479 fbuffer->trace_file = trace_file; in trace_event_buffer_reserve() 481 fbuffer->event = in trace_event_buffer_reserve() 482 trace_event_buffer_lock_reserve(&fbuffer->buffer, trace_file, in trace_event_buffer_reserve() 484 fbuffer->trace_ctx); in trace_event_buffer_reserve() 485 if (!fbuffer->event) in trace_event_buffer_reserve() 488 fbuffer->regs = NULL; in trace_event_buffer_reserve() 489 fbuffer->entry = ring_buffer_event_data(fbuffer->event); in trace_event_buffer_reserve() 490 return fbuffer->entry; in trace_event_buffer_reserve()
|
A D | trace_events_synth.c | 438 struct trace_event_buffer fbuffer; in trace_event_raw_event_synth() local 469 entry = trace_event_buffer_reserve(&fbuffer, trace_file, in trace_event_raw_event_synth() 508 trace_event_buffer_commit(&fbuffer); in trace_event_raw_event_synth() 1586 trace_state->entry = trace_event_buffer_reserve(&trace_state->fbuffer, in __synth_event_trace_start() 1600 trace_event_buffer_commit(&trace_state->fbuffer); in __synth_event_trace_end()
|
A D | trace.c | 2828 event_call = fbuffer->trace_file->event_call; in output_printk() 2833 file = fbuffer->trace_file; in output_printk() 2836 !filter_match_preds(file->filter, fbuffer->entry))) in output_printk() 2839 event = &fbuffer->trace_file->event_call->event; in output_printk() 2843 iter->ent = fbuffer->entry; in output_printk() 2887 struct trace_event_file *file = fbuffer->trace_file; in trace_event_buffer_commit() 2889 if (__event_trigger_test_discard(file, fbuffer->buffer, fbuffer->event, in trace_event_buffer_commit() 2890 fbuffer->entry, &tt)) in trace_event_buffer_commit() 2894 output_printk(fbuffer); in trace_event_buffer_commit() 2897 ftrace_exports(fbuffer->event, TRACE_EXPORT_EVENT); in trace_event_buffer_commit() [all …]
|
/linux/include/linux/ |
A D | trace_events.h | 301 void *trace_event_buffer_reserve(struct trace_event_buffer *fbuffer, 305 void trace_event_buffer_commit(struct trace_event_buffer *fbuffer); 541 struct trace_event_buffer fbuffer; member
|
/linux/include/trace/ |
A D | trace_events.h | 726 struct trace_event_buffer fbuffer; \ 735 entry = trace_event_buffer_reserve(&fbuffer, trace_file, \ 745 trace_event_buffer_commit(&fbuffer); \
|
Completed in 65 milliseconds