| /linux/include/trace/events/ |
| H A D | kmem.h | 14 TP_PROTO(unsigned long call_site, 20 TP_ARGS(call_site, ptr, s, gfp_flags, node), 23 __field( unsigned long, call_site ) 34 __entry->call_site = call_site; 47 (void *)__entry->call_site, 59 TP_PROTO(unsigned long call_site, 66 TP_ARGS(call_site, ptr, bytes_req, bytes_alloc, gfp_flags, node), 69 __field( unsigned long, call_site ) 78 __entry->call_site = call_site; 87 (void *)__entry->call_site, [all …]
|
| H A D | percpu.h | 13 TP_PROTO(unsigned long call_site, 18 TP_ARGS(call_site, reserved, is_atomic, size, align, base_addr, off, 22 __field( unsigned long, call_site ) 34 __entry->call_site = call_site; 47 (void *)__entry->call_site,
|
| /linux/tools/perf/ |
| H A D | builtin-kmem.c | 62 u64 call_site; member 87 static int insert_alloc_stat(unsigned long call_site, unsigned long ptr, in insert_alloc_stat() argument 125 data->call_site = call_site; in insert_alloc_stat() 132 static int insert_caller_stat(unsigned long call_site, in insert_caller_stat() argument 143 if (call_site > data->call_site) in insert_caller_stat() 145 else if (call_site < data->call_site) in insert_caller_stat() 151 if (data && data->call_site == call_site) { in insert_caller_stat() 161 data->call_site = call_site; in insert_caller_stat() 177 call_site = evsel__intval(evsel, sample, "call_site"); in evsel__process_alloc_event() local 181 if (insert_alloc_stat(call_site, ptr, bytes_req, bytes_alloc, sample->cpu) || in evsel__process_alloc_event() [all …]
|
| /linux/Documentation/trace/ |
| H A D | events-kmem.rst | 21 kmalloc call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s 22 kmalloc_node call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d 23 kfree call_site=%lx ptr=%p 36 kmem_cache_alloc call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s 37 kmem_cache_alloc_node call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d 38 kmem_cache_free call_site=%lx ptr=%p 43 but the call_site can usually be used to extrapolate that information.
|
| /linux/tools/perf/scripts/python/ |
| H A D | check-perf-trace.py | 42 common_callchain, call_site, ptr, bytes_req, bytes_alloc, argument 51 (call_site, ptr, bytes_req, bytes_alloc,
|
| /linux/rust/syn/ |
| H A D | error.rs | 196 let start = iter.next().map_or_else(Span::call_site, |t| t.span()); in new_spanned() 215 None => return Span::call_site(), in span() 281 None => (Span::call_site(), Span::call_site()), in to_compile_error()
|
| H A D | token.rs | 227 span: Span::call_site(), 354 spans: [Span::call_site(); $len], 462 $name(Span::call_site()) 591 span: Span::call_site(), in default()
|
| H A D | custom_keyword.rs | 114 span: $crate::__private::Span::call_site(),
|
| H A D | custom_punctuation.rs | 101 $ident($crate::__private::Span::call_site())
|
| H A D | data.rs | 220 let span = proc_macro2::Span::call_site(); in next()
|
| H A D | buffer.rs | 332 Span::call_site() in span()
|
| H A D | parse.rs | 1282 let scope = Span::call_site(); in tokens_to_parse_buffer()
|
| H A D | lit.rs | 1027 let scope = Span::call_site(); in peek_impl()
|
| H A D | expr.rs | 1065 span: Span::call_site(), in from() 3973 Token).to_tokens(tokens); in to_tokens()
|
| /linux/tools/perf/scripts/perl/ |
| H A D | check-perf-trace.pl | 47 $call_site, $ptr, $bytes_req, $bytes_alloc, 57 $call_site, $ptr, $bytes_req, $bytes_alloc,
|
| /linux/rust/proc-macro2/ |
| H A D | fallback.rs | 62 pub(crate) fn call_site() -> Self { in call_site() method 64 span: Span::call_site(), in call_site() 508 pub(crate) fn call_site() -> Self { in call_site() method 513 pub(crate) fn call_site() -> Self { in call_site() method 518 Span::call_site() in mixed_site() 523 Span::call_site() in def_site() 709 span: Span::call_site(), in new() 947 span: Span::call_site(), in _new() 960 return Err(LexError::call_site()); in from_str_checked() 978 Err(LexError::call_site()) in from_str_checked()
|
| H A D | detection.rs | 69 let works = panic::catch_unwind(proc_macro::Span::call_site).is_ok(); in initialize()
|
| H A D | wrapper.rs | 269 LexError::Compiler(_) | LexError::CompilerPanic => Span::call_site(), in span() 293 let fallback = fallback::LexError::call_site(); in fmt() 306 let fallback = fallback::LexError::call_site(); in fmt() 378 pub(crate) fn call_site() -> Self { in call_site() method 380 Span::Compiler(proc_macro::Span::call_site()) in call_site() 382 Span::Fallback(fallback::Span::call_site()) in call_site()
|
| H A D | lib.rs | 376 pub fn call_site() -> Self { in call_site() method 377 Span::_new(imp::Span::call_site()) in call_site() 814 span: Span::call_site(), in new()
|
| H A D | parse.rs | 306 crate::Ident::_new_fallback(Ident::new_unchecked(sym, fallback::Span::call_site())); in ident_any() 316 crate::Ident::_new_fallback(Ident::new_raw_unchecked(sym, fallback::Span::call_site())); in ident_any()
|
| /linux/rust/macros/ |
| H A D | helpers.rs | 44 proc_macro::Span::call_site() in try_string() 54 proc_macro::Span::call_site().file() in expect_punct()
|
| /linux/rust/quote/ |
| H A D | runtime.rs | 299 let span = Span::call_site(); in push_ident() 312 TokenTree::Ident(Ident::new(&lifetime[1..], Span::call_site())), in push_lifetime() 426 push_underscore_spanned(tokens, Span::call_site()); in push_underscore() 438 let span = span.unwrap_or_else(Span::call_site); in mk_ident()
|
| H A D | spanned.rs | 35 None => return Span::call_site(), in join_spans()
|
| H A D | to_tokens.rs | 219 tokens.append(Ident::new(word, Span::call_site())); in to_tokens()
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | bench_local_storage_create.c | 33 int BPF_PROG(kmalloc, unsigned long call_site, const void *ptr, in BPF_PROG() argument
|