• Home
  • Raw
  • Download

Lines Matching refs:env

1212 	fprintf(fp, "# hostname : %s\n", ph->env.hostname);  in print_hostname()
1218 fprintf(fp, "# os release : %s\n", ph->env.os_release); in print_osrelease()
1223 fprintf(fp, "# arch : %s\n", ph->env.arch); in print_arch()
1229 fprintf(fp, "# cpudesc : %s\n", ph->env.cpu_desc); in print_cpudesc()
1235 fprintf(fp, "# nrcpus online : %u\n", ph->env.nr_cpus_online); in print_nrcpus()
1236 fprintf(fp, "# nrcpus avail : %u\n", ph->env.nr_cpus_avail); in print_nrcpus()
1242 fprintf(fp, "# perf version : %s\n", ph->env.version); in print_version()
1251 nr = ph->env.nr_cmdline; in print_cmdline()
1252 str = ph->env.cmdline; in print_cmdline()
1269 nr = ph->env.nr_sibling_cores; in print_cpu_topology()
1270 str = ph->env.sibling_cores; in print_cpu_topology()
1277 nr = ph->env.nr_sibling_threads; in print_cpu_topology()
1278 str = ph->env.sibling_threads; in print_cpu_topology()
1448 fprintf(fp, "# total memory : %Lu kB\n", ph->env.total_mem); in print_total_mem()
1459 nr = ph->env.nr_numa_nodes; in print_numa_topology()
1460 str = ph->env.numa_nodes; in print_numa_topology()
1494 fprintf(fp, "# cpuid : %s\n", ph->env.cpuid); in print_cpuid()
1511 pmu_num = ph->env.nr_pmu_mappings; in print_pmu_mappings()
1517 str = ph->env.pmu_mappings; in print_pmu_mappings()
1736 ph->env.hostname = do_read_string(fd, ph); in process_hostname()
1737 return ph->env.hostname ? 0 : -ENOMEM; in process_hostname()
1744 ph->env.os_release = do_read_string(fd, ph); in process_osrelease()
1745 return ph->env.os_release ? 0 : -ENOMEM; in process_osrelease()
1752 ph->env.version = do_read_string(fd, ph); in process_version()
1753 return ph->env.version ? 0 : -ENOMEM; in process_version()
1760 ph->env.arch = do_read_string(fd, ph); in process_arch()
1761 return ph->env.arch ? 0 : -ENOMEM; in process_arch()
1778 ph->env.nr_cpus_avail = nr; in process_nrcpus()
1787 ph->env.nr_cpus_online = nr; in process_nrcpus()
1795 ph->env.cpu_desc = do_read_string(fd, ph); in process_cpudesc()
1796 return ph->env.cpu_desc ? 0 : -ENOMEM; in process_cpudesc()
1803 ph->env.cpuid = do_read_string(fd, ph); in process_cpuid()
1804 return ph->env.cpuid ? 0 : -ENOMEM; in process_cpuid()
1821 ph->env.total_mem = mem; in process_total_mem()
1893 ph->env.nr_cmdline = nr; in process_cmdline()
1905 ph->env.cmdline = strbuf_detach(&sb, NULL); in process_cmdline()
1929 ph->env.nr_sibling_cores = nr; in process_cpu_topology()
1941 ph->env.sibling_cores = strbuf_detach(&sb, NULL); in process_cpu_topology()
1950 ph->env.nr_sibling_threads = nr; in process_cpu_topology()
1961 ph->env.sibling_threads = strbuf_detach(&sb, NULL); in process_cpu_topology()
1987 ph->env.nr_numa_nodes = nr; in process_numa_topology()
2021 ph->env.numa_nodes = strbuf_detach(&sb, NULL); in process_numa_topology()
2051 ph->env.nr_pmu_mappings = pmu_num; in process_pmu_mappings()
2071 ph->env.pmu_mappings = strbuf_detach(&sb, NULL); in process_pmu_mappings()
2099 ph->env.nr_groups = nr_groups; in process_group_desc()