Home
last modified time | relevance | path

Searched refs:Get (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/freebsd-14.2/contrib/wpa/wpa_supplicant/examples/
H A Dwpas-dbus-new.py28 ifaces = wpas_obj.Get(WPAS_DBUS_INTERFACE, 'Interfaces',
32 ifname = if_obj.Get(WPAS_DBUS_INTERFACES_INTERFACE, 'Ifname',
45 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'BSSID',
51 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'SSID',
55 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'WPA',
60 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'RSN',
65 freq = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Frequency',
67 signal = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Signal',
69 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Rates',
81 res = if_obj.Get(WPAS_DBUS_INTERFACES_INTERFACE, 'BSSs',
H A Dwpas-dbus-new-signals.py29 ifaces = wpas_obj.Get(WPAS_DBUS_INTERFACE, 'Interfaces',
33 ifname = if_obj.Get(WPAS_DBUS_INTERFACES_INTERFACE, 'Ifname',
52 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'BSSID',
58 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'SSID',
62 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'WPA',
67 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'RSN',
72 freq = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Frequency',
74 signal = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Signal',
76 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Rates',
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatCache.cpp27 void FormatCache::Entry::Get(lldb::TypeFormatImplSP &retval) { in Get() function in FormatCache::Entry
31 void FormatCache::Entry::Get(lldb::TypeSummaryImplSP &retval) { in Get() function in FormatCache::Entry
35 void FormatCache::Entry::Get(lldb::SyntheticChildrenSP &retval) { in Get() function in FormatCache::Entry
77 bool FormatCache::Get(ConstString type, ImplSP &format_impl_sp) { in Get() function in FormatCache
82 entry.Get(format_impl_sp); in Get()
93 FormatCache::Get<lldb::TypeFormatImplSP>(ConstString, lldb::TypeFormatImplSP &);
95 FormatCache::Get<lldb::TypeSummaryImplSP>(ConstString,
98 FormatCache::Get<lldb::SyntheticChildrenSP>(ConstString,
H A DLanguageCategory.cpp34 bool LanguageCategory::Get(FormattersMatchData &match_data, in Get() function in LanguageCategory
43 if (m_format_cache.Get(match_data.GetTypeForCache(), retval_sp)) in Get()
48 bool result = m_category_sp->Get(valobj.GetObjectRuntimeLanguage(), in Get()
62 LanguageCategory::Get<lldb::TypeFormatImplSP>(FormattersMatchData &,
65 LanguageCategory::Get<lldb::TypeSummaryImplSP>(FormattersMatchData &,
68 LanguageCategory::Get<lldb::SyntheticChildrenSP>(FormattersMatchData &,
H A DTypeCategoryMap.cpp49 if (!Get(category_name, category)) in Enable()
57 if (!Get(category_name, category)) in Disable()
133 bool TypeCategoryMap::Get(KeyType name, TypeCategoryImplSP &entry) { in Get() function in TypeCategoryMap
159 void TypeCategoryMap::Get(FormattersMatchData &match_data, ImplSP &retval) { in Get() function in TypeCategoryMap
184 if (!category_sp->Get( in Get()
198 TypeCategoryMap::Get<lldb::TypeFormatImplSP>(FormattersMatchData &match_data,
201 TypeCategoryMap::Get<lldb::TypeSummaryImplSP>(FormattersMatchData &match_data,
203 template void TypeCategoryMap::Get<lldb::SyntheticChildrenSP>(
H A DTypeCategory.cpp85 bool TypeCategoryImpl::Get(lldb::LanguageType lang, in Get() function in TypeCategoryImpl
90 return m_format_cont.Get(candidates, entry); in Get()
93 bool TypeCategoryImpl::Get(lldb::LanguageType lang, in Get() function in TypeCategoryImpl
98 return m_summary_cont.Get(candidates, entry); in Get()
101 bool TypeCategoryImpl::Get(lldb::LanguageType lang, in Get() function in TypeCategoryImpl
111 m_filter_cont.Get(candidates, filter_sp); in Get()
114 m_synth_cont.Get(candidates, synth_sp); in Get()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCppModuleConfiguration.cpp117 MakePath(m_c_inc.Get(), "stdio.h"), in hasValidConfig()
120 MakePath(m_std_inc.Get(), "module.modulemap"), in hasValidConfig()
123 MakePath(m_std_inc.Get(), "vector"), in hasValidConfig()
150 m_include_dirs = {m_std_inc.Get().str(), m_resource_inc, in CppModuleConfiguration()
151 m_c_inc.Get().str()}; in CppModuleConfiguration()
153 m_include_dirs.push_back(m_c_target_inc.Get().str()); in CppModuleConfiguration()
155 m_include_dirs.push_back(m_std_target_inc.Get().str()); in CppModuleConfiguration()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatCache.h40 void Get(lldb::TypeFormatImplSP &);
41 void Get(lldb::TypeSummaryImplSP &);
42 void Get(lldb::SyntheticChildrenSP &);
60 template <typename ImplSP> bool Get(ConstString type, ImplSP &format_impl_sp);
H A DTypeCategory.h99 bool Get(const FormattersMatchVector &candidates, in Get() function
102 if (sc->Get(candidates, entry)) in Get()
111 if (sc->Get(FormattersMatchVector{candidate}, entry)) in AnyMatches()
324 bool Get(lldb::LanguageType lang, const FormattersMatchVector &candidates,
327 bool Get(lldb::LanguageType lang, const FormattersMatchVector &candidates,
330 bool Get(lldb::LanguageType lang, const FormattersMatchVector &candidates,
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc275 EXPECT_EQ(0, BuiltInDefaultValue<char>::Get()); in TEST()
278 EXPECT_EQ(0, BuiltInDefaultValue<wchar_t>::Get()); in TEST()
280 EXPECT_EQ(0U, BuiltInDefaultValue<wchar_t>::Get()); in TEST()
288 EXPECT_EQ(0, BuiltInDefaultValue<int>::Get()); in TEST()
295 EXPECT_EQ(0, BuiltInDefaultValue<float>::Get()); in TEST()
296 EXPECT_EQ(0, BuiltInDefaultValue<double>::Get()); in TEST()
326 EXPECT_FALSE(BuiltInDefaultValue<bool>::Get()); in TEST()
350 EXPECT_EQ(0, BuiltInDefaultValue<const int>::Get()); in TEST()
417 EXPECT_EQ(1, DefaultValue<int>::Get()); in TEST()
442 EXPECT_EQ(0, DefaultValue<int>::Get()); in TEST()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flat_map.h72 T *p = Get(i); in TestOnlyUnmap()
83 T *p = Get(i); in MemoryUsage()
97 return Get(idx / kSize2); in contains()
121 T *Get(uptr idx) const { in Get() function
145 T *res = Get(idx); in Create()
H A Dsanitizer_allocator_stats.h41 uptr Get(AllocatorStat i) const { in Get() function
73 Add(AllocatorStat(i), s->Get(AllocatorStat(i))); in Unregister()
76 void Get(AllocatorStatCounters s) const { in Get() function
82 s[i] += stats->Get(AllocatorStat(i)); in Get()
H A Dsanitizer_stack_store.cpp129 uptr *StackStore::BlockInfo::Get() const { in Get() function in __sanitizer::StackStore::BlockInfo
138 uptr *ptr = Get(); in Create()
147 uptr *ptr = Get(); in GetOrCreate()
265 return Get(); in GetOrUnpack()
270 u8 *ptr = reinterpret_cast<u8 *>(Get()); in GetOrUnpack()
303 return Get(); in GetOrUnpack()
319 uptr *ptr = Get(); in Pack()
370 if (uptr *ptr = Get()) in TestOnlyUnmap()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUserIDResolver.h29 return Get(uid, m_uid_cache, &UserIDResolver::DoGetUserName); in GetUserName()
32 return Get(gid, m_gid_cache, &UserIDResolver::DoGetGroupName); in GetGroupName()
47 Get(id_t id, Map &cache,
/freebsd-14.2/sys/kern/
H A Dcpufreq_if.m49 # Get the current active level.
57 # Get the current possible levels, based on all drivers.
76 # Get an individual driver's setting.
84 # Get the settings supported by a driver.
93 # Get an individual driver's type.
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsBPF.def20 // Get record field information.
23 // Get BTF type id.
26 // Get type information.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp110 ValueType *(Module::*Get)(StringRef) const>
131 ValueType *(Module::*Get)(StringRef) const>
132 bool ExplicitRewriteDescriptor<DT, ValueType, Get>::performOnModule(Module &M) { in performOnModule()
134 if (ValueType *S = (M.*Get)(Source)) { in performOnModule()
138 if (Value *T = (M.*Get)(Target)) in performOnModule()
151 ValueType *(Module::*Get)(StringRef) const,
173 ValueType *(Module::*Get)(StringRef) const,
176 bool PatternRewriteDescriptor<DT, ValueType, Get, Iterator>::
193 if (Value *V = (M.*Get)(Name)) in performOnModule()
/freebsd-14.2/stand/i386/boot2/
H A Dboot1.S190 mov 0xa(%bx),%si # Get BTX length and set
206 inb $0x64,%al # Get status
211 seta20.2: inb $0x64,%al # Get status
225 mov 0x8(%si),%ax # Get
240 xorb %ah,%ah # BIOS: Get
250 putstr: lodsb # Get char
291 movb $0x8,%ah # BIOS: Get drive
299 mov 0x8(%bp),%eax # Get LBA
/freebsd-14.2/usr.sbin/bsdconfig/include/
H A Dmedia.hlp19 Floppy Get distribution files from one or more DOS or UFS
26 FTP Get the distribution files from an anonymous ftp server
43 Get the distribution files directly from an HTTP server.
50 NFS Get the distribution files from an NFS server somewhere
/freebsd-14.2/stand/i386/zfsboot/
H A Dzfsldr.S122 mov 0xa(%bx),%si # Get BTX length and set
160 inb $0x64,%al # Get status
165 seta20.2: inb $0x64,%al # Get status
185 read: xor %ecx,%ecx # Get
214 xorb %ah,%ah # BIOS: Get
224 putstr: lodsb # Get char
254 hex8.1: andb $0xf,%al # Get lower 4
/freebsd-14.2/sys/dev/gpio/
H A Dgpiobus_if.m61 # Get value of pin specified by pin_num
80 # Get pin capabilities
90 # Get pin flags
110 # Get the pin name
H A Dgpio_if.m79 # Get maximum pin number
96 # Get value of pin specified by pin_num
113 # Get pin capabilities
122 # Get pin flags
131 # Get pin name
/freebsd-14.2/stand/i386/gptboot/
H A Dgptldr.S77 mov 0xa(%bx),%si # Get BTX length and set
106 mov 0xa(%bx),%cx # Get BTX length and set
123 inb $0x64,%al # Get status
128 seta20.2: inb $0x64,%al # Get status
/freebsd-14.2/sys/dev/ofw/
H A Dofw_bus_if.m117 # Get the ofw_bus_devinfo struct for the device dev on the bus. Used for bus
126 # Get the alternate firmware name for the device dev on the bus. The default
133 # Get the firmware model name for the device dev on the bus. The default method
140 # Get the firmware name for the device dev on the bus. The default method will
147 # Get the firmware node for the device dev on the bus. The default method will
154 # Get the firmware device type for the device dev on the bus. The default
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_vector_clock.h24 Epoch Get(Sid sid) const;
40 ALWAYS_INLINE Epoch VectorClock::Get(Sid sid) const { in Get() function

12345678910>>...13