Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:is_core
(Results
1 - 8
of
8
) sorted by relevance
/kernel/linux/linux-6.6/tools/perf/bench/
H
A
D
pmu-scan.c
25
bool
is_core
;
member
57
r->
is_core
= pmu->
is_core
;
in save_result()
84
if (core_only && !r->
is_core
)
in check_result()
/kernel/linux/linux-6.6/tools/perf/util/
H
A
D
pmus.c
22
* must have pmu->
is_core
=1. If there are more than one PMU in
32
* must have pmu->
is_core
=0 but pmu->is_uncore could be 0 or 1.
249
bool use_core_pmus = !pmu || pmu->
is_core
;
in perf_pmus__scan()
281
bool use_core_pmus = !pmu || pmu->
is_core
;
in perf_pmus__scan_skip_duplicates()
375
a_iscpu = as->pmu ? as->pmu->
is_core
: true;
in cmp_sevent()
376
b_iscpu = bs->pmu ? bs->pmu->
is_core
: true;
in cmp_sevent()
H
A
D
pmu.c
687
static struct perf_cpu_map *pmu_cpumask(int dirfd, const char *name, bool
is_core
)
in pmu_cpumask()
argument
712
return
is_core
? perf_cpu_map__get(cpu_map__online()) : NULL;
in pmu_cpumask()
998
pmu->
is_core
= is_pmu_core(name);
in perf_pmu__lookup()
999
pmu->cpus = pmu_cpumask(dirfd, name, pmu->
is_core
);
in perf_pmu__lookup()
1040
pmu->
is_core
= true;
in perf_pmu__create_placeholder_core_pmu()
1586
return pmu->
is_core
;
in perf_pmu__supports_legacy_cache()
1591
return !pmu->
is_core
|| perf_pmus__num_core_pmus() == 1;
in perf_pmu__auto_merge_stats()
1680
if (pmu->
is_core
) {
in perf_pmu__for_each_event()
1732
(pmu->
is_core
&& !strcmp(pmu_name, "default_core"));
in pmu__name_match()
1743
if (pmu->
is_core
|| pm
in perf_pmu__is_software()
[all...]
H
A
D
pmu.h
63
* @
is_core
: Is the PMU the core CPU PMU? Determined by the name being
68
bool
is_core
;
member
H
A
D
evlist.c
2497
to_test = pmu && pmu->
is_core
? pmu->cpus : cpu_map__online();
in evlist__warn_user_requested_cpus()
H
A
D
parse-events.c
262
evsel->core.is_pmu_core = pmu ? pmu->
is_core
: false;
in __add_event()
/kernel/linux/linux-6.6/tools/perf/tests/
H
A
D
pmu-events.c
546
pmu->
is_core
= true;
in __test_core_pmu_event_aliases()
H
A
D
parse-events.c
761
TEST_ASSERT_VAL("wrong type", evsel__find_pmu(evsel)->
is_core
);
in test__checkevent_pmu_events_mix()
Completed in 17 milliseconds