/external/python/cpython2/Modules/ |
D | ld_so_aix.in | 110 shift; objfile=$1 114 objfile=`echo $1 | sed "s/-o//"` 135 if test "$objfile" = "libpython@VERSION@.so"; then 148 if test -z "$objfile"; then 149 objfile=shr.o 152 filename=`basename $objfile | sed "s/\.[^.]*$//"` 178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile" 184 $makexp $expfile "$objfile" $objs
|
/external/python/cpython3/Modules/ |
D | ld_so_aix.in | 110 shift; objfile=$1 114 objfile=`echo $1 | sed "s/-o//"` 135 if test "$objfile" = "libpython@VERSION@@ABIFLAGS@.so"; then 148 if test -z "$objfile"; then 149 objfile=shr.o 152 filename=`basename $objfile | sed "s/\.[^.]*$//"` 178 CCOPT="$CCOPT -Wl,-bM:SRE -Wl,-T512 -Wl,-H512 -Wl,-brtl -Wl,-bnortllib -lm -o $objfile" 184 $makexp $expfile "$objfile" $objs
|
/external/clang/utils/check_cfc/ |
D | obj_diff.py | 19 def disassemble(objfile): argument 21 p = subprocess.Popen([disassembler, '-d', objfile], 26 print("Disassemble failed: {}".format(objfile)) 30 def dump_debug(objfile): argument 32 …p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subp… 35 print("Dump debug failed: {}".format(objfile))
|
/external/llvm-project/clang/utils/check_cfc/ |
D | obj_diff.py | 19 def disassemble(objfile): argument 21 p = subprocess.Popen([disassembler, '-d', objfile], 26 print("Disassemble failed: {}".format(objfile)) 30 def dump_debug(objfile): argument 32 …p = subprocess.Popen([disassembler, '-WliaprmfsoRt', objfile], stdout=subprocess.PIPE, stderr=subp… 35 print("Dump debug failed: {}".format(objfile))
|
/external/pdfium/third_party/yasm/ |
D | run_yasm.py | 31 objfile = options.objfile variable 32 depfile = objfile + '.d'
|
/external/llvm-project/libc/loader/linux/ |
D | CMakeLists.txt | 40 set(objfile ${LIBC_BUILD_DIR}/lib/${name}.o) variable 42 OUTPUT ${objfile} 43 COMMAND cp $<TARGET_OBJECTS:${fq_target_name}.__objects__> ${objfile} 48 DEPENDS ${objfile}
|
/external/llvm-project/lldb/source/API/ |
D | SBSection.cpp | 163 ObjectFile *objfile = module_sp->GetObjectFile(); in GetFileOffset() local 164 if (objfile) in GetFileOffset() 165 return objfile->GetFileOffset() + section_sp->GetFileOffset(); in GetFileOffset() 197 ObjectFile *objfile = module_sp->GetObjectFile(); in GetSectionData() local 198 if (objfile) { in GetSectionData() 200 objfile->GetFileOffset() + section_sp->GetFileOffset(); in GetSectionData() 211 objfile->GetFileSpec().GetPath(), file_size, file_offset); in GetSectionData() 214 new DataExtractor(data_buffer_sp, objfile->GetByteOrder(), in GetSectionData() 215 objfile->GetAddressByteSize())); in GetSectionData()
|
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformMacOSX.cpp | 111 ObjectFile *objfile = exe_module_sp->GetObjectFile(); in GetSDKDirectory() local 112 if (!objfile) in GetSDKDirectory() 115 llvm::VersionTuple version = objfile->GetSDKVersion(); in GetSDKDirectory() 188 ObjectFile *objfile = module_sp->GetObjectFile(); in GetSharedModule() local 189 if (objfile == nullptr) { in GetSharedModule()
|
/external/google-breakpad/src/common/mac/ |
D | macho_reader.cc | 106 struct fat_arch objfile; in Read() local 109 cursor >> objfile.cputype in Read() 110 >> objfile.cpusubtype in Read() 111 >> objfile.offset in Read() 112 >> objfile.size in Read() 113 >> objfile.align; in Read() 115 SuperFatArch super_fat_arch(objfile); in Read() 124 if (objfile.offset > fat_size || in Read() 125 objfile.size > fat_size - objfile.offset) { in Read()
|
/external/llvm-project/libc/cmake/modules/ |
D | LLVMLibCLibraryRules.cmake | 46 get_target_property(objfile ${entrypoint_target} "OBJECT_FILE") 47 if(objfile) 48 set(${result} ${objfile} PARENT_SCOPE) 60 get_entrypoint_object_file(${aliasee} objfile) 61 set(${result} ${objfile} PARENT_SCOPE) 99 get_entrypoint_object_file(${dep} objfile) 100 list(APPEND obj_list ${objfile})
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARFDwo.cpp | 27 ObjectFileSP objfile, uint32_t id) in SymbolFileDWARFDwo() argument 28 : SymbolFileDWARF(objfile, objfile->GetSectionList( in SymbolFileDWARFDwo()
|
D | SymbolFileDWARFDwo.h | 28 lldb::ObjectFileSP objfile, uint32_t id);
|
/external/llvm-project/llvm/utils/ |
D | GenLibDeps.pl | 115 my $objfile = $libpath.$2; 116 $objdefs{$1} = $objfile; 117 $objdeps{$objfile} = {}; 118 $libobjs{$lib}{$objfile}=1;
|
/external/llvm/utils/ |
D | GenLibDeps.pl | 113 my $objfile = $libpath.$2; 114 $objdefs{$1} = $objfile; 115 $objdeps{$objfile} = {}; 116 $libobjs{$lib}{$objfile}=1;
|
/external/llvm-project/lldb/test/Shell/Minidump/Windows/ |
D | find-module.test | 7 RUN: -c %T/find-module.dmp -o "image dump objfile" -o exit | FileCheck %s 9 CHECK-LABEL: image dump objfile
|
/external/llvm-project/lldb/source/Symbol/ |
D | ArmUnwindInfo.cpp | 48 ArmUnwindInfo::ArmUnwindInfo(ObjectFile &objfile, SectionSP &arm_exidx, in ArmUnwindInfo() argument 50 : m_byte_order(objfile.GetByteOrder()), m_arm_exidx_sp(arm_exidx), in ArmUnwindInfo() 52 objfile.ReadSectionData(arm_exidx.get(), m_arm_exidx_data); in ArmUnwindInfo() 53 objfile.ReadSectionData(arm_extab.get(), m_arm_extab_data); in ArmUnwindInfo()
|
D | SymbolContext.cpp | 494 ObjectFile *objfile = nullptr; in GetParentOfInlinedScope() local 497 objfile = symbol_file->GetObjectFile(); in GetParentOfInlinedScope() 499 if (objfile) { in GetParentOfInlinedScope() 506 objfile->GetFileSpec().GetPath().c_str()); in GetParentOfInlinedScope()
|
/external/llvm-project/lldb/test/Shell/Minidump/ |
D | breakpad-symbols.test | 25 image dump objfile /tmp/test/linux-x86_64 26 # CHECK-LABEL: image dump objfile /tmp/test/linux-x86_64
|
/external/llvm-project/lldb/source/Core/ |
D | Value.cpp | 395 ObjectFile *objfile = module->GetObjectFile(); in GetValueAsData() local 396 if (objfile) { in GetValueAsData() 397 Address so_addr(address, objfile->GetSectionList()); in GetValueAsData() 420 data.SetByteOrder(objfile->GetByteOrder()); in GetValueAsData() 421 data.SetAddressByteSize(objfile->GetAddressByteSize()); in GetValueAsData()
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | ArmUnwindInfo.h | 32 ArmUnwindInfo(ObjectFile &objfile, lldb::SectionSP &arm_exidx,
|
D | DWARFCallFrameInfo.h | 37 DWARFCallFrameInfo(ObjectFile &objfile, lldb::SectionSP §ion, Type type);
|
D | CompactUnwindInfo.h | 38 CompactUnwindInfo(ObjectFile &objfile, lldb::SectionSP §ion);
|
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
D | DynamicLoaderDarwin.cpp | 656 ObjectFile *objfile = image_module_sp->GetObjectFile(); in AddModulesUsingImageInfos() local 657 if (objfile) { in AddModulesUsingImageInfos() 658 SectionList *sections = objfile->GetSectionList(); in AddModulesUsingImageInfos() 664 ModuleSpec module_spec(objfile->GetFileSpec(), in AddModulesUsingImageInfos() 670 module_spec.SetObjectOffset(objfile->GetFileOffset() + in AddModulesUsingImageInfos() 672 module_spec.SetObjectSize(objfile->GetByteSize()); in AddModulesUsingImageInfos()
|
/external/llvm-project/lldb/source/Plugins/Process/minidump/ |
D | ProcessMinidump.cpp | 586 auto *objfile = module_sp->GetObjectFile(); in ReadModuleList() local 587 if (objfile && objfile->GetPluginName() == in ReadModuleList() 589 if (((PlaceholderObjectFile *)objfile)->GetBaseImageAddress() != in ReadModuleList()
|
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/ |
D | core_reloc.c | 190 #define BITFIELDS_CASE_COMMON(objfile, test_name_prefix, name) \ argument 192 .bpf_obj_file = objfile, \
|