Home
last modified time | relevance | path

Searched refs:CPU_NO_GOOD (Results 1 – 10 of 10) sorted by relevance

/external/oprofile/libop/tests/
Dcpu_type_tests.c39 { "foo", CPU_NO_GOOD },
40 { "-3", CPU_NO_GOOD },
41 { "2927", CPU_NO_GOOD },
42 { "", CPU_NO_GOOD },
43 { NULL, CPU_NO_GOOD }
53 if (cpu->type != CPU_NO_GOOD && strcmp(cpu->name, name)) { in test()
58 if (cpu->type == CPU_NO_GOOD && strcmp("invalid cpu type", name)) { in test()
Dalloc_counter_tests.c127 { CPU_NO_GOOD, 0, { 0 }, 0 }
213 for (it = tests; it->cpu_type != CPU_NO_GOOD; ++it) in main()
Dload_events_files_tests.c23 for (cpu_type = CPU_NO_GOOD + 1; cpu_type < MAX_CPU_TYPE; ++cpu_type) { in main()
/external/oprofile/libop/
Dop_cpu_type.c127 int cpu_type = CPU_NO_GOOD; in op_get_cpu_type()
144 return CPU_NO_GOOD; in op_get_cpu_type()
160 int cpu_type = CPU_NO_GOOD; in op_get_cpu_number()
171 if (cpu_type == CPU_NO_GOOD) in op_get_cpu_number()
174 if (cpu_type <= CPU_NO_GOOD || cpu_type >= MAX_CPU_TYPE) in op_get_cpu_number()
175 cpu_type = CPU_NO_GOOD; in op_get_cpu_number()
183 if (cpu_type <= CPU_NO_GOOD || cpu_type >= MAX_CPU_TYPE) in op_get_cpu_type_str()
192 if (cpu_type <= CPU_NO_GOOD || cpu_type >= MAX_CPU_TYPE) in op_get_cpu_name()
203 if (cpu_type <= CPU_NO_GOOD || cpu_type >= MAX_CPU_TYPE) in op_get_nr_counters()
Dop_hw_specific.h167 if (cpu_type != CPU_NO_GOOD) in arch_get_filter()
175 if (cpu_type != CPU_NO_GOOD) in arch_num_counters()
Dop_cpu_type.h23 CPU_NO_GOOD = -1, /**< unsupported CPU type */ enumerator
Dop_events.c1078 case CPU_NO_GOOD: in op_default_event()
/external/oprofile/utils/
Dophelp.c32 static op_cpu cpu_type = CPU_NO_GOOD;
384 if (cpu_type == CPU_NO_GOOD) { in main()
689 case CPU_NO_GOOD: in main()
/external/oprofile/daemon/
Dopd_ibs.c379 op_cpu cpu_type = CPU_NO_GOOD; in ibs_parse_and_set_events()
/external/oprofile/
DChangeLog-20031060 * utils/op_help.c: check only if CPU_NO_GOOD not range
1075 * utils/op_help.c (main): Make check with CPU_NO_GOOD.