/openbmc/libcper/ |
H A D | meson.build | 34 'sections/cper-section-ampere.c', 35 'sections/cper-section-arm.c', 36 'sections/cper-section-ccix-per.c', 37 'sections/cper-section-cxl-component.c', 38 'sections/cper-section-cxl-protocol.c', 39 'sections/cper-section-dmar-generic.c', 40 'sections/cper-section-dmar-iommu.c', 41 'sections/cper-section-dmar-vtd.c', 42 'sections/cper-section-firmware.c', 43 'sections/cper-section-generic.c', [all …]
|
/openbmc/libcper/generator/ |
H A D | cper-generate-cli.c | 27 char **sections = NULL; in main() local 41 sections = malloc(sizeof(char *) * num_sections); in main() 45 sections[j - i] = argv[j]; in main() 58 if (sections) { in main() 59 free(sections); in main() 69 if (sections) { in main() 70 free(sections); in main() 76 if (single_section != NULL && sections == NULL) { in main() 79 } else if (sections != NULL && single_section == NULL) { in main() 80 generate_cper_record(sections, num_sections, cper_file, in main() [all …]
|
/openbmc/linux/drivers/net/wireless/ath/ath10k/ |
H A D | coredump.c | 808 .sections = NULL, 823 .sections = NULL, 838 .sections = NULL, 851 .sections = NULL, 861 .sections = NULL, 871 .sections = qca6174_hw21_register_sections, 884 .sections = NULL, 894 .sections = NULL, 904 .sections = NULL, 914 .sections = NULL, [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/core/ |
H A D | case.py | 81 sections = self.extraresults.get("ptestresult.sections") 82 if section not in sections: 83 sections[section] = {} 86 sections[section]["log"] = self._compress_log(log) 89 sections[section]["log"] = self._compress_log(f.read()) 92 sections[section]["duration"] = duration 94 sections[section]["exitcode"] = exitcode 100 sections = self.extraresults.get("ptestresult.sections") 101 if section not in sections: 102 sections[section] = {}
|
/openbmc/linux/scripts/ |
H A D | generate_initcall_order.pl | 227 my $sections = {}; # level -> [ secname, ...] 235 if (!exists($sections->{$level})) { 236 $sections->{$level} = []; 239 push(@{$sections->{$level}}, $result->{'secname'}); 243 die "$0: ERROR: no initcalls?" if (!keys(%{$sections})); 249 foreach my $level (sort(keys(%{$sections}))) { 260 foreach my $secname (@{$sections->{$level}}) {
|
/openbmc/linux/sound/firewire/dice/ |
H A D | dice-proc.c | 71 u32 sections[ARRAY_SIZE(section_names) * 2]; in dice_proc_read() local 117 if (dice_proc_read_mem(dice, sections, 0, ARRAY_SIZE(sections)) < 0) in dice_proc_read() 123 sections[i * 2], sections[i * 2 + 1]); in dice_proc_read() 125 quadlets = min_t(u32, sections[1], sizeof(buf.global) / 4); in dice_proc_read() 126 if (dice_proc_read_mem(dice, &buf.global, sections[0], quadlets) < 0) in dice_proc_read() 170 if (dice_proc_read_mem(dice, &tx_rx_header, sections[2], 2) < 0) in dice_proc_read() 174 if (dice_proc_read_mem(dice, &buf.tx, sections[2] + 2 + in dice_proc_read() 196 if (dice_proc_read_mem(dice, &tx_rx_header, sections[4], 2) < 0) in dice_proc_read() 200 if (dice_proc_read_mem(dice, &buf.rx, sections[4] + 2 + in dice_proc_read() 222 quadlets = min_t(u32, sections[7], sizeof(buf.ext_sync) / 4); in dice_proc_read() [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | logparser.py | 15 self.sections = {} 55 if current_section['name'] in self.sections: 57 self.sections[current_section['name']] = current_section 58 del self.sections[current_section['name']]['name'] 87 for section in self.sections: 88 self.sections[section]['log'] = "".join(self.sections[section]['log']) 90 return self.results, self.sections
|
/openbmc/qemu/python/qemu/utils/ |
H A D | __init__.py | 143 sections = [] 150 sections.append(add_visual_margin(self.stdout, width, name)) 152 sections.append(f"{name}: N/A") 155 sections.append(add_visual_margin(self.stderr, width, 'stderr')) 157 sections.append("stderr: N/A") 161 textwrap.indent(os.linesep.join(sections), prefix=lmargin),
|
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/ |
H A D | ltp_compliance.py | 29 cls.sections = {} 48 cls.extras['ltpposixresult.sections'] = cls.sections 74 … results, sections = parser.parse(os.path.join(self.ltptest_log_dir, "%s" % posix_group)) 77 sections['duration'] = runtime 78 self.sections[posix_group] = sections
|
H A D | ltp_stress.py | 30 cls.sections = {} 49 cls.extras['ltpstressresult.sections'] = cls.sections 73 … results, sections = parser.parse(os.path.join(self.ltptest_log_dir, "%s" % stress_group)) 76 sections['duration'] = runtime 77 self.sections[stress_group] = sections
|
H A D | ptest.py | 77 results, sections = parser.parse(ptest_runner_log) 84 extras['ptestresult.sections'] = sections 98 for section in sections: 99 if 'exitcode' in sections[section].keys() or 'timeout' in sections[section].keys(): 100 failed_tests[section] = sections[section]["log"]
|
H A D | ltp.py | 29 cls.sections = {} 48 cls.extras['ltpresult.sections'] = cls.sections 98 results, sections = parser.parse(dst) 100 sections['duration'] = int(endtime-starttime) 101 self.sections[ltp_group] = sections
|
/openbmc/openbmc/poky/meta-poky/conf/distro/include/ |
H A D | gcsections.inc | 1 CFLAGS_SECTION_REMOVAL = "-ffunction-sections -fdata-sections" 2 LDFLAGS_SECTION_REMOVAL = "-Wl,--gc-sections" 4 # packages with build problems using sections 16 # SDK packages with build problems using sections
|
/openbmc/u-boot/arch/xtensa/ |
H A D | config.mk | 8 -ffunction-sections -fdata-sections 10 LDFLAGS_FINAL += --gc-sections
|
/openbmc/u-boot/arch/mips/ |
H A D | config.mk | 67 PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections 68 LDFLAGS_FINAL += --gc-sections 71 LDFLAGS_STANDALONE += --gc-sections
|
/openbmc/u-boot/arch/nios2/ |
H A D | config.mk | 16 LDFLAGS_FINAL += --gc-sections 17 PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
|
/openbmc/u-boot/arch/m68k/ |
H A D | config.mk | 14 PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections 16 LDFLAGS_FINAL += --gc-sections
|
/openbmc/u-boot/arch/riscv/ |
H A D | config.mk | 29 PLATFORM_RELFLAGS += -fno-common -gdwarf-2 -ffunction-sections \ 30 -fdata-sections 31 LDFLAGS_u-boot += --gc-sections -static -pie
|
/openbmc/u-boot/arch/powerpc/ |
H A D | config.mk | 11 LDFLAGS_FINAL += --gc-sections 13 PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections \ 14 -fdata-sections -mcall-linux
|
/openbmc/linux/tools/perf/util/ |
H A D | config.c | 594 static struct perf_config_section *find_section(struct list_head *sections, in find_section() argument 599 list_for_each_entry(section, sections, node) in find_section() 618 static struct perf_config_section *add_section(struct list_head *sections, in add_section() argument 634 list_add_tail(§ion->node, sections); in add_section() 678 struct list_head *sections; in collect_config() local 683 sections = &set->sections; in collect_config() 695 section = find_section(sections, section_name); in collect_config() 697 section = add_section(sections, section_name); in collect_config() 761 INIT_LIST_HEAD(&set->sections); in perf_config_set__new() 773 INIT_LIST_HEAD(&set->sections); in perf_config_set__load_file() [all …]
|
/openbmc/libcper/docs/ |
H A D | GeneratorExtensions.md | 4 sections as extensions. This document details how an OEM section generator could 10 a function predefinition inside `sections/gen-section.h` as shown below, and 11 then create a C file within `sections/` to house your generation code. For the 29 * Functions for generating pseudo-random MyVendor error sections. 71 edit `sections/gen-section.c` and add your generator definition to the 82 #include <libcper/generator/sections/gen-section.h>
|
/openbmc/u-boot/Documentation/ |
H A D | linker_lists.rst | 7 sections, each containing one entry of the list. Each input section 9 content. Linker list input sections are constructed from the list 37 The naming scheme for input sections allows grouping all linker lists 43 these symbols to sections names with components "1" (before) and 60 Here is an example of the sorted sections which result from a list 79 Here is an example of the sections generated from a global list
|
/openbmc/u-boot/arch/arm/ |
H A D | config.mk | 14 CFLAGS_NON_EFI := -fno-pic -ffixed-r9 -ffunction-sections -fdata-sections 17 LDFLAGS_FINAL += --gc-sections 18 PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections \
|
/openbmc/linux/tools/testing/selftests/sgx/ |
H A D | load.c | 141 Elf64_Shdr *sections; in encl_get_entry() local 147 sections = encl->bin + ehdr->e_shoff; in encl_get_entry() 150 if (sections[i].sh_type == SHT_SYMTAB) { in encl_get_entry() 151 symtab = (Elf64_Sym *)((char *)encl->bin + sections[i].sh_offset); in encl_get_entry() 152 num_sym = sections[i].sh_size / sections[i].sh_entsize; in encl_get_entry() 158 if (sections[i].sh_type == SHT_STRTAB) { in encl_get_entry() 159 sym_names = (char *)encl->bin + sections[i].sh_offset; in encl_get_entry()
|
/openbmc/u-boot/arch/arc/ |
H A D | config.mk | 46 PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections -fno-common 49 LDFLAGS_FINAL += -pie --gc-sections
|