| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 50 bool ItaniumABILanguageRuntime::CouldHaveDynamicValue(ValueObject &in_value) { in CouldHaveDynamicValue() argument 53 return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx, in CouldHaveDynamicValue() 58 ValueObject &in_value, const VTableInfo &vtable_info) { in GetTypeInfo() argument 72 in_value.GetPointerValue().address, in GetTypeInfo() 73 in_value.GetTypeName().GetCString(), symbol_name.str().c_str()); in GetTypeInfo() 113 in_value.GetPointerValue().address); in GetTypeInfo() 125 in_value.GetPointerValue().address, in GetTypeInfo() 126 in_value.GetTypeName().AsCString(), type_sp->GetID(), in GetTypeInfo() 141 in_value.GetPointerValue().address, in GetTypeInfo() 142 in_value.GetTypeName().AsCString(), type_sp->GetID(), in GetTypeInfo() [all …]
|
| H A D | ItaniumABILanguageRuntime.h | 52 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/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | LanguageRuntime.h | 72 virtual LanguageRuntime *GetPreferredLanguageRuntime(ValueObject &in_value) { in GetPreferredLanguageRuntime() argument 101 virtual llvm::Expected<VTableInfo> GetVTableInfo(ValueObject &in_value, in GetVTableInfo() argument 115 ValueObject &in_value, lldb::DynamicValueType use_dynamic, 129 virtual bool CouldHaveDynamicValue(ValueObject &in_value) = 0;
|
| H A D | Process.h | 2403 bool IsPossibleDynamicValue(ValueObject &in_value);
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntimeV1.cpp | 49 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().address; in GetDynamicTypeAndAddress()
|
| H A D | AppleObjCRuntime.h | 52 bool CouldHaveDynamicValue(ValueObject &in_value) override; 54 bool GetDynamicTypeAndAddress(ValueObject &in_value,
|
| H A D | AppleObjCRuntime.cpp | 269 bool AppleObjCRuntime::CouldHaveDynamicValue(ValueObject &in_value) { in CouldHaveDynamicValue() argument 270 return in_value.GetCompilerType().IsPossibleDynamicType( in CouldHaveDynamicValue() 277 ValueObject &in_value, lldb::DynamicValueType use_dynamic, in GetDynamicTypeAndAddress() argument
|
| H A D | AppleObjCRuntimeV1.h | 100 bool GetDynamicTypeAndAddress(ValueObject &in_value,
|
| H A D | AppleObjCRuntimeV2.h | 42 LanguageRuntime *GetPreferredLanguageRuntime(ValueObject &in_value) override; 54 bool GetDynamicTypeAndAddress(ValueObject &in_value,
|
| H A D | AppleObjCRuntimeV2.cpp | 765 AppleObjCRuntimeV2::GetPreferredLanguageRuntime(ValueObject &in_value) { in GetPreferredLanguageRuntime() argument 766 if (auto process_sp = in_value.GetProcessSP()) { in GetPreferredLanguageRuntime() 768 if (auto descriptor_sp = GetNonKVOClassDescriptor(in_value)) { in GetPreferredLanguageRuntime() 778 ValueObject &in_value, lldb::DynamicValueType use_dynamic, in GetDynamicTypeAndAddress() argument 789 Process *process = in_value.GetProcessSP().get(); in GetDynamicTypeAndAddress() 793 assert(in_value.GetTargetSP().get() == m_process->CalculateTarget().get()); in GetDynamicTypeAndAddress() 799 if (CouldHaveDynamicValue(in_value)) { in GetDynamicTypeAndAddress() 802 ClassDescriptorSP objc_class_sp(GetNonKVOClassDescriptor(in_value)); in GetDynamicTypeAndAddress() 804 const addr_t object_ptr = in_value.GetPointerValue().address; in GetDynamicTypeAndAddress()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/ |
| H A D | GNUstepObjCRuntime.cpp | 120 bool GNUstepObjCRuntime::CouldHaveDynamicValue(ValueObject &in_value) { in CouldHaveDynamicValue() argument 123 return in_value.GetCompilerType().IsPossibleDynamicType(nullptr, check_cxx, in CouldHaveDynamicValue() 128 ValueObject &in_value, DynamicValueType use_dynamic, in GetDynamicTypeAndAddress() argument
|
| H A D | GNUstepObjCRuntime.h | 65 bool CouldHaveDynamicValue(ValueObject &in_value) override; 67 bool GetDynamicTypeAndAddress(ValueObject &in_value,
|
| /freebsd/contrib/ee/ |
| H A D | new_curse.c | 2260 int in_value; local 2268 in_value = ((bufp > 0) ? in_buff[--bufp] : timed_getchar()); 2270 in_value = ((bufp > 0) ? in_buff[--bufp] : read(0, &temp, 1)? temp : -1); 2273 in_value = ((bufp > 0) ? in_buff[--bufp] : 2280 in_value = fcntl(0, F_SETFL, old_arg | FNDELAY); 2282 in_value = ((bufp > 0) ? in_buff[--bufp] : read(0, &temp, 1)? temp : -1); 2287 in_value = -1; 2292 if (in_value != -1) 2294 in_value &= 0xff; 2297 in_value &= 0177; [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/ |
| H A D | ObjCLanguageRuntime.h | 233 virtual ClassDescriptorSP GetClassDescriptor(ValueObject &in_value); 235 ClassDescriptorSP GetNonKVOClassDescriptor(ValueObject &in_value);
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectCommands.cpp | 1774 size_t in_value) : value(std::move(in_str_val)), usage(std::move(in_usage)) { in EnumValueStorage() 1775 SetElement(in_value); in EnumValueStorage() 1790 void SetElement(size_t in_value) { in SetElement() 1791 element.value = in_value; in SetElement()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBValue.cpp | 208 ValueObjectSP GetLockedSP(ValueImpl &in_value) { in GetLockedSP() argument 209 return in_value.GetSP(m_stop_locker, m_lock, m_lock_error); in GetLockedSP()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | Process.cpp | 1523 bool Process::IsPossibleDynamicValue(ValueObject &in_value) { in IsPossibleDynamicValue() argument 1527 if (in_value.IsDynamic()) in IsPossibleDynamicValue() 1529 LanguageType known_type = in_value.GetObjectRuntimeLanguage(); in IsPossibleDynamicValue() 1533 return runtime ? runtime->CouldHaveDynamicValue(in_value) : false; in IsPossibleDynamicValue() 1537 if (runtime->CouldHaveDynamicValue(in_value)) in IsPossibleDynamicValue()
|
| /freebsd/sys/contrib/dev/iwlwifi/mld/ |
| H A D | rx.c | 804 #define IWL_MLD_ENC_USIG_VALUE_MASK(usig, in_value, dec_bits, enc_bits) do { \ argument 808 (_usig)->value |= LE32_DEC_ENC(in_value, dec_bits, _enc_bits); \
|
| /freebsd/sys/contrib/dev/iwlwifi/mvm/ |
| H A D | rxmq.c | 1284 #define IWL_MVM_ENC_USIG_VALUE_MASK(usig, in_value, dec_bits, enc_bits) do { \ argument 1288 (_usig)->value |= LE32_DEC_ENC(in_value, dec_bits, _enc_bits); \
|