| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.cpp | 704 o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in GetMainRacyAddress() 849 o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in NotifyBreakpointHit() 945 int size = o->GetObjectForDotSeparatedPath("size")->GetIntegerValue(); in GenerateThreadName() 947 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName() 952 addr_t addr = o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in GenerateThreadName() 977 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName() 985 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName() 987 o->GetObjectForDotSeparatedPath("file_descriptor")->GetIntegerValue(); in GenerateThreadName() 998 o->GetObjectForDotSeparatedPath("mutex_id")->GetIntegerValue(); in GenerateThreadName() 1005 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName() [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | StructuredDataImpl.h | 131 uint64_t GetIntegerValue(uint64_t fail_value = 0) const { 132 return (m_data_sp ? m_data_sp->GetIntegerValue(fail_value) : fail_value);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedThreadPythonInterface.cpp | 70 return obj->GetIntegerValue(LLDB_INVALID_THREAD_ID); in GetThreadID() 90 return static_cast<StateType>(obj->GetIntegerValue(eStateInvalid)); in GetState()
|
| H A D | ScriptedProcessPythonInterface.cpp | 151 return obj->GetIntegerValue(LLDB_INVALID_PROCESS_ID); in GetProcessID()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBStructuredData.cpp | 165 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const { in GetIntegerValue() function in SBStructuredData 168 return m_impl_up->GetIntegerValue(fail_value); in GetIntegerValue()
|
| /llvm-project-15.0.7/lldb/test/API/python_api/sbstructureddata/ |
| H A D | TestStructuredDataAPI.py | 106 output = string_struct.GetIntegerValue() 125 output = int_struct.GetIntegerValue()
|
| /llvm-project-15.0.7/lldb/unittests/API/ |
| H A D | SBStructuredDataTest.cpp | 29 EXPECT_EQ(data.GetIntegerValue(UINT64_MAX), UINT64_MAX); in TEST_F()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBStructuredData.i | 45 uint64_t GetIntegerValue(uint64_t fail_value = 0) const;
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/ |
| H A D | stack_core_scripted_process.py | 25 idx = self.backing_target_idx.GetIntegerValue(42) 108 return data.GetIntegerValue(default_val)
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBStructuredData.h | 66 uint64_t GetIntegerValue(uint64_t fail_value = 0) const;
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | Symbol.h | 92 uint64_t GetIntegerValue(uint64_t fail_value = 0) const {
|
| /llvm-project-15.0.7/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 109 bool GetIntegerValue(llvm::APInt &Val);
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 262 tid_t tid = thread_id_obj ? thread_id_obj->GetIntegerValue() : 0; in GetBacktracesFromExtendedStopInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 323 tid_t tid = thread_id_obj ? thread_id_obj->GetIntegerValue() : 0; in GetBacktracesFromExtendedStopInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc64.cpp | 524 value_sp = GetIntegerValue(0); in GetValue() 585 ValueSP GetIntegerValue(uint32_t reg_index) { in GetIntegerValue() function in __anonaee447650111::ReturnValueExtractor
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOS.cpp | 544 ->GetIntegerValue(LLDB_INVALID_ADDRESS); in GetSharedCacheInformation()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 1987 tid = object->GetIntegerValue(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo() 1990 exc_type = object->GetIntegerValue(0); in SetThreadStopInfo() 1996 exc_data.push_back(object->GetIntegerValue()); in SetThreadStopInfo() 2003 thread_dispatch_qaddr = object->GetIntegerValue(LLDB_INVALID_ADDRESS); in SetThreadStopInfo() 2017 queue_serial_number = object->GetIntegerValue(0); in SetThreadStopInfo() 2021 dispatch_queue_t = object->GetIntegerValue(0); in SetThreadStopInfo() 2082 signo = object->GetIntegerValue(LLDB_INVALID_SIGNAL_NUMBER); in SetThreadStopInfo()
|
| H A D | GDBRemoteCommunicationClient.cpp | 2657 port = port_osp->GetIntegerValue(0); in QueryGDBServer()
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | StructuredData.h | 103 uint64_t GetIntegerValue(uint64_t fail_value = 0) {
|
| /llvm-project-15.0.7/clang/lib/Lex/ |
| H A D | PPExpressions.cpp | 343 if (Literal.GetIntegerValue(Result.Val)) { in EvaluateValue()
|
| H A D | Preprocessor.cpp | 1410 if (Literal.GetIntegerValue(APVal)) in parseSimpleIntegerLiteral()
|
| H A D | LiteralSupport.cpp | 1357 bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) { in GetIntegerValue() function in NumericLiteralParser
|
| /llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/ |
| H A D | PythonDataObjectsTests.cpp | 595 structured_addr_value_sp->GetIntegerValue(123); in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.cpp | 343 llvm::sys::toTimePoint(oso_symbol->GetIntegerValue(0)); in InitOSO()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntimeV2.cpp | 2367 return value->GetIntegerValue(LLDB_INVALID_ADDRESS); in GetSharedCacheBaseAddress()
|