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 D | 32and64bit.patch | 19 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 D | endian-ness_handling.patch | 44 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 D | ldconfig-handle-.dynstr-located-in-separate-segment.patch | 68 - 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 D | endian-ness_handling_fix.patch | 41 Elf64_Word *abi_note = (Elf64_Word *) (file_contents
|
/openbmc/qemu/target/i386/kvm/ |
H A D | vmsr_energy.c | 207 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 D | htx_hardbootme_test.robot | 215 ${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 D | rest_dbus.py | 824 file_contents = request.body.read() 826 os.write(handle, file_contents) 914 file_contents = request.body.read() 916 temp.write(file_contents)
|