Home
last modified time | relevance | path

Searched refs:file_contents (Results 1 – 7 of 7) sorted by relevance

/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A D32and64bit.patch19 unsigned int *osversion, char **soname, void *file_contents,
38 - elf_header = (ElfW(Ehdr) *) file_contents;
39 + elf_header = (Elf32_Ehdr *) file_contents;
106 + Elf32_Word *abi_note = (Elf32_Word *) (file_contents
153 + dynamic_segment = (Elf32_Dyn *) (file_contents + dynamic_addr);
220 + unsigned int *osversion, char **soname, void *file_contents,
235 + elf_header = (Elf64_Ehdr *) file_contents;
263 - ElfW(Word) *abi_note = (ElfW(Word) *) (file_contents
264 + Elf64_Word *abi_note = (Elf64_Word *) (file_contents
305 + unsigned int *osversion, char **soname, void *file_contents,
[all …]
H A Dendian-ness_handling.patch44 elf_header = (Elf32_Ehdr *) file_contents;
59 - elf_pheader = (Elf32_Phdr *) (elf_header->e_phoff + file_contents);
60 + elf_pheader = (Elf32_Phdr *) (read32(elf_header->e_phoff, be) + file_contents);
93 - program_interpreter = (char *) (file_contents + segment->p_offset);
94 + program_interpreter = (char *) (file_contents + read32(segment->p_offset, be));
105 Elf32_Word *abi_note = (Elf32_Word *) (file_contents
190 elf_header = (Elf64_Ehdr *) file_contents;
205 - elf_pheader = (Elf64_Phdr *) (elf_header->e_phoff + file_contents);
239 - program_interpreter = (char *) (file_contents + segment->p_offset);
251 Elf64_Word *abi_note = (Elf64_Word *) (file_contents
[all …]
H A Dldconfig-handle-.dynstr-located-in-separate-segment.patch68 - dynamic_strings = (char *) (file_contents + read32(dyn_entry->d_un.d_val, be) - loadaddr);
94 + dynamic_strings = (char *) (file_contents + read32(dyn_entry->d_un.d_val, be) - loadoff);
146 - dynamic_strings = (char *) (file_contents + read64(dyn_entry->d_un.d_val, be) - loadaddr);
172 + dynamic_strings = (char *) (file_contents + read64(dyn_entry->d_un.d_val, be) - loadoff);
H A Dendian-ness_handling_fix.patch41 Elf64_Word *abi_note = (Elf64_Word *) (file_contents
/openbmc/qemu/target/i386/kvm/
H A Dvmsr_energy.c207 g_autofree char *file_contents = NULL; in vmsr_count_cpus_per_package() local
219 if (!g_file_get_contents(path, &file_contents, &length, NULL)) { in vmsr_count_cpus_per_package()
224 int package_id = atoi(file_contents); in vmsr_count_cpus_per_package()
239 g_autofree char *file_contents = NULL; in vmsr_get_physical_package_id() local
247 if (!g_file_get_contents(file_path, &file_contents, &length, NULL)) { in vmsr_get_physical_package_id()
251 package_id = atoi(file_contents); in vmsr_get_physical_package_id()
/openbmc/openbmc-test-automation/systest/
H A Dhtx_hardbootme_test.robot215 ${file_contents}= OperatingSystem.Get File ${json_diff_file_path}
216 Log ${file_contents} level=WARN
/openbmc/phosphor-rest-server/module/obmc/wsgi/apps/
H A Drest_dbus.py824 file_contents = request.body.read()
826 os.write(handle, file_contents)
914 file_contents = request.body.read()
916 temp.write(file_contents)