Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp707 o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in GetMainRacyAddress()
852 o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in NotifyBreakpointHit()
949 int size = o->GetObjectForDotSeparatedPath("size")->GetIntegerValue(); in GenerateThreadName()
951 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
956 addr_t addr = o->GetObjectForDotSeparatedPath("address")->GetIntegerValue(); in GenerateThreadName()
981 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
989 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
991 o->GetObjectForDotSeparatedPath("file_descriptor")->GetIntegerValue(); in GenerateThreadName()
1002 o->GetObjectForDotSeparatedPath("mutex_id")->GetIntegerValue(); in GenerateThreadName()
1009 o->GetObjectForDotSeparatedPath("thread_id")->GetIntegerValue(); in GenerateThreadName()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DStructuredDataImpl.h131 uint64_t GetIntegerValue(uint64_t fail_value = 0) const {
132 return (m_data_sp ? m_data_sp->GetIntegerValue(fail_value) : fail_value);
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedThreadPythonInterface.cpp72 return obj->GetIntegerValue(LLDB_INVALID_THREAD_ID); in GetThreadID()
92 return static_cast<StateType>(obj->GetIntegerValue(eStateInvalid)); in GetState()
H A DScriptedProcessPythonInterface.cpp162 return obj->GetIntegerValue(LLDB_INVALID_PROCESS_ID); in GetProcessID()
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBStructuredData.cpp165 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const { in GetIntegerValue() function in SBStructuredData
168 return m_impl_up->GetIntegerValue(fail_value); in GetIntegerValue()
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBStructuredData.i45 uint64_t GetIntegerValue(uint64_t fail_value = 0) const;
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBStructuredData.h66 uint64_t GetIntegerValue(uint64_t fail_value = 0) const;
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymbol.h102 uint64_t GetIntegerValue(uint64_t fail_value = 0) const {
/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DLiteralSupport.h109 bool GetIntegerValue(llvm::APInt &Val);
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp263 tid_t tid = thread_id_obj ? thread_id_obj->GetIntegerValue() : 0; in GetBacktracesFromExtendedStopInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp324 tid_t tid = thread_id_obj ? thread_id_obj->GetIntegerValue() : 0; in GetBacktracesFromExtendedStopInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp283 raw_codes.push_back(obj->GetIntegerValue()); in CalculateStopInfo()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp525 value_sp = GetIntegerValue(0); in GetValue()
586 ValueSP GetIntegerValue(uint32_t reg_index) { in GetIntegerValue() function in __anondf7718cc0111::ReturnValueExtractor
/openbsd-src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOS.cpp573 ->GetIntegerValue(LLDB_INVALID_ADDRESS); in GetSharedCacheInformation()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1942 tid = object->GetIntegerValue(LLDB_INVALID_THREAD_ID); in SetThreadStopInfo()
1945 exc_type = object->GetIntegerValue(0); in SetThreadStopInfo()
1951 exc_data.push_back(object->GetIntegerValue()); in SetThreadStopInfo()
1958 thread_dispatch_qaddr = object->GetIntegerValue(LLDB_INVALID_ADDRESS); in SetThreadStopInfo()
1972 queue_serial_number = object->GetIntegerValue(0); in SetThreadStopInfo()
1976 dispatch_queue_t = object->GetIntegerValue(0); in SetThreadStopInfo()
2037 signo = object->GetIntegerValue(LLDB_INVALID_SIGNAL_NUMBER); in SetThreadStopInfo()
H A DGDBRemoteCommunicationClient.cpp2665 port = port_osp->GetIntegerValue(0); in QueryGDBServer()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DStructuredData.h103 uint64_t GetIntegerValue(uint64_t fail_value = 0) {
/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DPPExpressions.cpp343 if (Literal.GetIntegerValue(Result.Val)) { in EvaluateValue()
H A DPreprocessor.cpp1412 if (Literal.GetIntegerValue(APVal)) in parseSimpleIntegerLiteral()
H A DLiteralSupport.cpp1359 bool NumericLiteralParser::GetIntegerValue(llvm::APInt &Val) { in GetIntegerValue() function in NumericLiteralParser
/openbsd-src/gnu/llvm/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp1159 out.try_emplace(key_utf8, value.GetIntegerValue()); in FilterAndGetValueForKey()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.cpp349 llvm::sys::toTimePoint(oso_symbol->GetIntegerValue(0)); in InitOSO()
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV2.cpp2373 return value->GetIntegerValue(LLDB_INVALID_ADDRESS); in GetSharedCacheBaseAddress()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp3824 if (Literal.GetIntegerValue(ResultVal)) in ActOnNumericConstant()
3986 if (Literal.GetIntegerValue(ResultVal)) { in ActOnNumericConstant()