Searched defs:abi (Results 1 - 23 of 23) sorted by relevance

/external/oprofile/libabi/
H A Dabi.h2 * @file abi.h
28 class abi { class
30 abi();
34 bool operator==(abi const & other) const;
35 friend std::ostream & operator<<(std::ostream & o, abi const & abi);
36 friend std::istream & operator>>(std::istream & i, abi & abi);
H A Dabi.cpp2 * @file abi.cpp
12 #include "abi.h"
28 abi::abi() function in class:abi
38 int abi::need(string const key) const throw (abi_exception)
47 bool abi::operator==(abi const & other) const
53 ostream & operator<<(ostream & o, abi const & abi) argument
55 abi_iter i = abi
65 operator >>(istream & i, abi & abi) argument
[all...]
H A Dopimport.cpp11 #include "abi.h"
44 popt::option(abi_filename, "abi", 'a', "abi description", "filename"),
51 abi const & theabi;
58 extractor(abi const & a, unsigned char const * src, size_t len)
107 void import_from_abi(abi const & abi, void const * srcv, argument
114 extractor ext(abi, src, len);
116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4);
134 src += abi
[all...]
/external/lldb/source/Plugins/Process/Utility/
H A DUnwindLLDB.cpp47 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; local
49 while (AddOneMoreFrame (abi))
105 UnwindLLDB::AddOneMoreFrame (ABI *abi) argument
161 if (abi && !abi->CallFrameAddressIsValid(cursor_sp->cfa))
179 if (abi && !abi->CodeAddressIsValid (cursor_sp->start_pc))
194 else if (abi && abi->StackUsesFrames())
222 ABI *abi local
254 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; local
[all...]
H A DRegisterContextLLDB.cpp115 ABI *abi = process->GetABI().get(); local
116 if (abi)
117 current_pc = abi->FixCodeAddress(current_pc);
275 ABI *abi = process->GetABI().get(); local
276 if (abi)
277 pc = abi->FixCodeAddress(pc);
311 if (abi)
315 abi->CreateDefaultUnwindPlan(*m_full_unwind_plan_sp);
542 if (repeating_frames && abi->FunctionCallsChangeCFA())
629 ABI *abi local
1098 ABI *abi = process ? process->GetABI().get() : NULL; local
1239 ABI *abi = process ? process->GetABI().get() : NULL; local
[all...]
/external/lldb/source/Symbol/
H A DFuncUnwinders.cpp173 ABI *abi = process_sp->GetABI().get(); local
174 if (abi)
178 abi->CreateDefaultUnwindPlan(*m_unwind_plan_arch_default_sp);
209 ABI *abi = process_sp->GetABI().get(); local
210 if (abi)
214 abi->CreateFunctionEntryUnwindPlan(*m_unwind_plan_arch_default_at_func_entry_sp);
H A DVariable.cpp147 ABI *abi = NULL; local
152 abi = ABI::FindPlugin (module_sp->GetArchitecture()).get();
154 m_location.GetDescription(s, lldb::eDescriptionLevelBrief, loclist_base_addr, abi);
488 ABI *abi = NULL; local
493 abi = ABI::FindPlugin (module_sp->GetArchitecture()).get();
508 abi);
515 abi);
/external/lldb/source/Commands/
H A DCommandObjectArgs.cpp115 const ABI *abi = process->GetABI().get(); local
116 if (!abi)
247 if (!abi->GetArgumentValues (*thread, value_list))
H A DCommandObjectTarget.cpp3546 ABI *abi = NULL; local
3548 abi = process->GetABI().get();
3613 if (abi)
3614 start_addr = abi->FixCodeAddress(start_addr);
/external/libunwind/include/tdep-mips/
H A Dlibunwind_i.h56 mips_abi_t abi; member in struct:unw_addr_space
270 else if (c->as->abi == UNW_MIPS_ABI_O32)
292 else if (c->as->abi == UNW_MIPS_ABI_O32)
/external/lldb/source/Target/
H A DThreadPlanCallFunction.cpp41 ABI *& abi,
53 abi = process_sp->GetABI().get();
55 if (!abi)
64 m_function_sp = thread.GetRegisterContext()->GetSP() - abi->GetRedZoneSize();
149 ABI *abi; local
151 if (!ConstructorSetup (thread, abi, start_load_addr, function_load_addr))
156 if (!abi->PrepareTrivialCall (thread,
167 if (!abi->PrepareTrivialCall (thread,
177 if (!abi->PrepareTrivialCall (thread,
215 ABI *abi; local
40 ConstructorSetup(Thread &thread, ABI *& abi, lldb::addr_t &start_load_addr, lldb::addr_t &function_load_addr) argument
290 const ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; local
[all...]
H A DThreadPlanTracer.cpp233 const ABI *abi = process_sp->GetABI().get(); local
236 if (abi && intptr_type.IsValid())
250 if (abi->GetArgumentValues (m_thread, value_list))
H A DThread.cpp1678 lldb::ABISP abi = thread->GetProcess()->GetABI(); local
1679 if (!abi)
1708 return_error = abi->SetReturnValueObject(older_frame_sp, return_value_sp);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devent.h78 u64 abi; member in struct:regs_dump
/external/lldb/source/Expression/
H A DDWARFExpression.cpp283 DWARFExpression::DumpLocation (Stream *s, lldb::offset_t offset, lldb::offset_t length, lldb::DescriptionLevel level, ABI *abi) const
431 if (abi)
434 if (abi->GetRegisterInfoByKind(m_reg_kind, reg_num, reg_info))
487 if (abi)
490 if (abi->GetRegisterInfoByKind(m_reg_kind, reg_num, reg_info))
511 if (abi)
514 if (abi->GetRegisterInfoByKind(m_reg_kind, reg_num, reg_info))
538 if (abi)
541 if (abi->GetRegisterInfoByKind(m_reg_kind, reg_num, reg_info))
663 DWARFExpression::GetDescription (Stream *s, lldb::DescriptionLevel level, addr_t location_list_base_addr, ABI *abi) cons
1175 DumpLocationForAddress(Stream *s, lldb::DescriptionLevel level, addr_t base_addr, addr_t address, ABI *abi) argument
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp510 const ABI *abi = process->GetABI().get(); local
522 bool success = abi->GetArgumentValues (exe_ctx.GetThreadRef(), argument_values);
878 const ABI *abi = NULL; local
881 abi = process_sp->GetABI().get();
882 if (abi == NULL)
918 bool success = abi->GetArgumentValues (thread, argument_values);
/external/qemu/android/
H A Dmain.c1299 char* abi = avdInfo_getTargetAbi(avd); local
1300 if (!strcmp(abi, "x86_64")) {
1314 AFREE(abi);
1367 char* abi = avdInfo_getTargetAbi(avd); local
1368 if (abi != NULL) {
1369 if (!strcmp(abi, "armeabi-v7a")) {
1372 AFREE(abi);
/external/libunwind/include/tdep-ia64/
H A Dlibunwind_i.h101 int abi; /* abi < 0 => unknown, 0 => SysV, 1 => HP-UX, 2 => Windows */ member in struct:unw_addr_space
/external/libunwind/src/ia64/
H A DGparser.c313 desc_abi (unsigned char abi, unsigned char context, argument
316 sr->abi_marker = (abi << 8) | context;
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Dperf_event.h82 __u64 abi; member in struct:perf_regs_user
597 data->regs_user.abi = PERF_SAMPLE_REGS_ABI_NONE;
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp619 const lldb::ABISP &abi = process->GetABI(); local
620 if (abi)
639 if (abi->GetArgumentValues (exe_ctx.GetThreadRef(), argument_values))
/external/libunwind/include/
H A Ddwarf.h277 uint16_t abi; member in struct:dwarf_cie_info
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 461 milliseconds