Home
last modified time | relevance | path

Searched refs:GetIntegerValue (Results 1 – 25 of 27) sorted by relevance

12

/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
DInstrumentationRuntimeTSan.cpp706 o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in GetMainRacyAddress()
851 o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in NotifyBreakpointHit()
947 int size = o->GetObjectForDotSeparatedPath("size")->GetIntegerValue(); in GenerateThreadName()
949 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
954 addr_t addr = o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in GenerateThreadName()
979 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
987 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
989 o->GetObjectForDotSeparatedPath("file_descriptor")->GetIntegerValue(); in GenerateThreadName()
1000 o->GetObjectForDotSeparatedPath("mutex_id")->GetIntegerValue(); in GenerateThreadName()
1007 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
[all …]
/external/llvm-project/lldb/source/API/
DSBStructuredData.cpp177 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const { in GetIntegerValue() function in SBStructuredData
178 LLDB_RECORD_METHOD_CONST(uint64_t, SBStructuredData, GetIntegerValue, in GetIntegerValue()
181 return (m_impl_up ? m_impl_up->GetIntegerValue(fail_value) : fail_value); in GetIntegerValue()
235 LLDB_REGISTER_METHOD_CONST(uint64_t, SBStructuredData, GetIntegerValue, in RegisterMethods()
/external/llvm-project/lldb/include/lldb/Core/
DStructuredDataImpl.h128 uint64_t GetIntegerValue(uint64_t fail_value = 0) const {
129 return (m_data_sp ? m_data_sp->GetIntegerValue(fail_value) : fail_value);
/external/llvm-project/lldb/test/API/python_api/sbstructureddata/
DTestStructuredDataAPI.py109 output = string_struct.GetIntegerValue()
128 output = int_struct.GetIntegerValue()
/external/llvm-project/lldb/bindings/interface/
DSBStructuredData.i46 uint64_t GetIntegerValue(uint64_t fail_value = 0) const;
/external/llvm-project/lldb/include/lldb/API/
DSBStructuredData.h64 uint64_t GetIntegerValue(uint64_t fail_value = 0) const;
/external/llvm-project/lldb/include/lldb/Symbol/
DSymbol.h92 uint64_t GetIntegerValue(uint64_t fail_value = 0) const {
/external/clang/include/clang/Lex/
DLiteralSupport.h98 bool GetIntegerValue(llvm::APInt &Val);
/external/llvm-project/lldb/tools/intel-features/intel-pt/
DDecoder.cpp442 family = struct_family.GetIntegerValue(0x10000); in ParseCPUInfo()
459 model = struct_model.GetIntegerValue(0x100); in ParseCPUInfo()
478 stepping = struct_stepping.GetIntegerValue(0x100); in ParseCPUInfo()
/external/llvm-project/clang/include/clang/Lex/
DLiteralSupport.h107 bool GetIntegerValue(llvm::APInt &Val);
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
DInstrumentationRuntimeMainThreadChecker.cpp272 tid_t tid = thread_id_obj ? thread_id_obj->GetIntegerValue() : 0; in GetBacktracesFromExtendedStopInfo()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
DInstrumentationRuntimeUBSan.cpp325 tid_t tid = thread_id_obj ? thread_id_obj->GetIntegerValue() : 0; in GetBacktracesFromExtendedStopInfo()
/external/llvm-project/lldb/source/Plugins/ABI/PowerPC/
DABISysV_ppc64.cpp524 value_sp = GetIntegerValue(0); in GetValue()
585 ValueSP GetIntegerValue(uint32_t reg_index) { in GetIntegerValue() function in __anonf9bffb250111::ReturnValueExtractor
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOS.cpp484 ->GetIntegerValue(LLDB_INVALID_ADDRESS); in GetSharedCacheInformation()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp2020 tid = object->GetIntegerValue(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo()
2023 exc_type = object->GetIntegerValue(0); in SetThreadStopInfo()
2029 exc_data.push_back(object->GetIntegerValue()); in SetThreadStopInfo()
2036 thread_dispatch_qaddr = object->GetIntegerValue(LLDB_INVALID_ADDRESS); in SetThreadStopInfo()
2050 queue_serial_number = object->GetIntegerValue(0); in SetThreadStopInfo()
2054 dispatch_queue_t = object->GetIntegerValue(0); in SetThreadStopInfo()
2115 signo = object->GetIntegerValue(LLDB_INVALID_SIGNAL_NUMBER); in SetThreadStopInfo()
DGDBRemoteCommunicationClient.cpp2581 port = port_osp->GetIntegerValue(0); in QueryGDBServer()
/external/llvm-project/lldb/include/lldb/Utility/
DStructuredData.h103 uint64_t GetIntegerValue(uint64_t fail_value = 0) {
/external/clang/lib/Lex/
DPreprocessor.cpp869 if (Literal.GetIntegerValue(APVal)) in parseSimpleIntegerLiteral()
DPPExpressions.cpp293 if (Literal.GetIntegerValue(Result.Val)) { in EvaluateValue()
DLiteralSupport.cpp913 bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) { in GetIntegerValue() function in NumericLiteralParser
/external/llvm-project/clang/lib/Lex/
DPPExpressions.cpp325 if (Literal.GetIntegerValue(Result.Val)) { in EvaluateValue()
DPreprocessor.cpp1379 if (Literal.GetIntegerValue(APVal)) in parseSimpleIntegerLiteral()
DLiteralSupport.cpp999 bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) { in GetIntegerValue() function in NumericLiteralParser
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp623 structured_addr_value_sp->GetIntegerValue(123); in TEST_F()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARFDebugMap.cpp348 llvm::sys::toTimePoint(oso_symbol->GetIntegerValue(0)); in InitOSO()

12