Home
last modified time | relevance | path

Searched refs:in_value (Results 1 – 17 of 17) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp72 in_value.GetPointerValue(), in GetTypeInfo()
73 in_value.GetTypeName().GetCString(), in GetTypeInfo()
113 in_value.GetPointerValue()); in GetTypeInfo()
126 in_value.GetPointerValue(), in_value.GetTypeName().AsCString(), in GetTypeInfo()
142 in_value.GetPointerValue(), in GetTypeInfo()
143 in_value.GetTypeName().AsCString(), in GetTypeInfo()
159 in_value.GetPointerValue(), in GetTypeInfo()
160 in_value.GetTypeName().AsCString(), in GetTypeInfo()
172 in_value.GetPointerValue(), in GetTypeInfo()
221 CompilerType type = in_value.GetCompilerType(); in GetVTableInfo()
[all …]
H A DItaniumABILanguageRuntime.h52 GetVTableInfo(ValueObject &in_value, bool check_type) override;
54 bool GetDynamicTypeAndAddress(ValueObject &in_value,
63 bool CouldHaveDynamicValue(ValueObject &in_value) override;
107 TypeAndOrName GetTypeInfo(ValueObject &in_value,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h72 virtual LanguageRuntime *GetPreferredLanguageRuntime(ValueObject &in_value) { in GetPreferredLanguageRuntime() argument
100 virtual llvm::Expected<VTableInfo> GetVTableInfo(ValueObject &in_value, in GetVTableInfo() argument
108 virtual bool GetDynamicTypeAndAddress(ValueObject &in_value,
124 virtual bool CouldHaveDynamicValue(ValueObject &in_value) = 0;
H A DProcess.h2341 bool IsPossibleDynamicValue(ValueObject &in_value);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp118 bool GNUstepObjCRuntime::CouldHaveDynamicValue(ValueObject &in_value) { in CouldHaveDynamicValue() argument
121 return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx, in CouldHaveDynamicValue()
126 ValueObject &in_value, DynamicValueType use_dynamic, in GetDynamicTypeAndAddress() argument
H A DGNUstepObjCRuntime.h65 bool CouldHaveDynamicValue(ValueObject &in_value) override;
67 bool GetDynamicTypeAndAddress(ValueObject &in_value,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.cpp49 ValueObject &in_value, lldb::DynamicValueType use_dynamic, in GetDynamicTypeAndAddress() argument
54 if (CouldHaveDynamicValue(in_value)) { in GetDynamicTypeAndAddress()
55 auto class_descriptor(GetClassDescriptor(in_value)); in GetDynamicTypeAndAddress()
58 const addr_t object_ptr = in_value.GetPointerValue(); in GetDynamicTypeAndAddress()
H A DAppleObjCRuntime.h52 bool CouldHaveDynamicValue(ValueObject &in_value) override;
54 bool GetDynamicTypeAndAddress(ValueObject &in_value,
H A DAppleObjCRuntime.cpp263 bool AppleObjCRuntime::CouldHaveDynamicValue(ValueObject &in_value) { in CouldHaveDynamicValue() argument
264 return in_value.GetCompilerType().IsPossibleDynamicType( in CouldHaveDynamicValue()
271 ValueObject &in_value, lldb::DynamicValueType use_dynamic, in GetDynamicTypeAndAddress() argument
H A DAppleObjCRuntimeV1.h100 bool GetDynamicTypeAndAddress(ValueObject &in_value,
H A DAppleObjCRuntimeV2.h41 LanguageRuntime *GetPreferredLanguageRuntime(ValueObject &in_value) override;
53 bool GetDynamicTypeAndAddress(ValueObject &in_value,
H A DAppleObjCRuntimeV2.cpp758 AppleObjCRuntimeV2::GetPreferredLanguageRuntime(ValueObject &in_value) { in GetPreferredLanguageRuntime() argument
759 if (auto process_sp = in_value.GetProcessSP()) { in GetPreferredLanguageRuntime()
761 if (auto descriptor_sp = GetNonKVOClassDescriptor(in_value)) { in GetPreferredLanguageRuntime()
771 ValueObject &in_value, lldb::DynamicValueType use_dynamic, in GetDynamicTypeAndAddress() argument
782 Process *process = in_value.GetProcessSP().get(); in GetDynamicTypeAndAddress()
786 assert(in_value.GetTargetSP().get() == m_process->CalculateTarget().get()); in GetDynamicTypeAndAddress()
792 if (CouldHaveDynamicValue(in_value)) { in GetDynamicTypeAndAddress()
795 ClassDescriptorSP objc_class_sp(GetNonKVOClassDescriptor(in_value)); in GetDynamicTypeAndAddress()
797 const addr_t object_ptr = in_value.GetPointerValue(); in GetDynamicTypeAndAddress()
/freebsd-14.2/contrib/ee/
H A Dnew_curse.c2260 int in_value; local
2273 in_value = ((bufp > 0) ? in_buff[--bufp] :
2280 in_value = fcntl(0, F_SETFL, old_arg | FNDELAY);
2287 in_value = -1;
2292 if (in_value != -1)
2294 in_value &= 0xff;
2297 in_value &= 0177;
2302 in_value = wgetch(window);
2305 if ((in_value == '\033') || (in_value == '\037'))/* escape character */
2306 in_value = Get_key(in_value);
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
H A DObjCLanguageRuntime.h233 virtual ClassDescriptorSP GetClassDescriptor(ValueObject &in_value);
235 ClassDescriptorSP GetNonKVOClassDescriptor(ValueObject &in_value);
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp208 ValueObjectSP GetLockedSP(ValueImpl &in_value) { in GetLockedSP() argument
209 return in_value.GetSP(m_stop_locker, m_lock, m_lock_error); in GetLockedSP()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1550 bool Process::IsPossibleDynamicValue(ValueObject &in_value) { in IsPossibleDynamicValue() argument
1554 if (in_value.IsDynamic()) in IsPossibleDynamicValue()
1556 LanguageType known_type = in_value.GetObjectRuntimeLanguage(); in IsPossibleDynamicValue()
1560 return runtime ? runtime->CouldHaveDynamicValue(in_value) : false; in IsPossibleDynamicValue()
1564 if (runtime->CouldHaveDynamicValue(in_value)) in IsPossibleDynamicValue()
/freebsd-14.2/sys/contrib/dev/iwlwifi/mvm/
H A Drxmq.c1504 #define IWL_MVM_ENC_USIG_VALUE_MASK(usig, in_value, dec_bits, enc_bits) do { \ argument
1508 (_usig)->value |= LE32_DEC_ENC(in_value, dec_bits, _enc_bits); \