Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd/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/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
69 bool FormatCache::Get(ConstString type, ImplSP &format_impl_sp) { in Get() function in FormatCache
74 entry.Get(format_impl_sp); in Get()
85 FormatCache::Get<lldb::TypeFormatImplSP>(ConstString, lldb::TypeFormatImplSP &);
87 FormatCache::Get<lldb::TypeSummaryImplSP>(ConstString,
90 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.cpp61 if (!Get(category_name, category)) in Enable()
69 if (!Get(category_name, category)) in Disable()
151 bool TypeCategoryMap::Get(KeyType name, TypeCategoryImplSP &entry) { in Get() function in TypeCategoryMap
177 void TypeCategoryMap::Get(FormattersMatchData &match_data, ImplSP &retval) { in Get() function in TypeCategoryMap
202 if (!category_sp->Get( in Get()
216 TypeCategoryMap::Get<lldb::TypeFormatImplSP>(FormattersMatchData &match_data,
219 TypeCategoryMap::Get<lldb::TypeSummaryImplSP>(FormattersMatchData &match_data,
221 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/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/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 &);
57 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/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc258 EXPECT_TRUE(BuiltInDefaultValue<int*>::Get() == nullptr); in TEST()
259 EXPECT_TRUE(BuiltInDefaultValue<const char*>::Get() == nullptr); in TEST()
260 EXPECT_TRUE(BuiltInDefaultValue<void*>::Get() == nullptr); in TEST()
273 EXPECT_EQ(0U, BuiltInDefaultValue<unsigned char>::Get()); in TEST()
274 EXPECT_EQ(0, BuiltInDefaultValue<signed char>::Get()); in TEST()
275 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()
283 EXPECT_EQ(0U, BuiltInDefaultValue<unsigned short>::Get()); // NOLINT in TEST()
284 EXPECT_EQ(0, BuiltInDefaultValue<signed short>::Get()); // NOLINT in TEST()
[all …]
/freebsd/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()
145 T *res = Get(idx); in Create()
117 T *Get(uptr idx) const { Get() function
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()
138 uptr *ptr = Get(); in Create()
147 uptr *ptr = Get();
265 return Get(); in GetOrUnpack()
270 u8 *ptr = reinterpret_cast<u8 *>(Get()); in GetOrUnpack()
303 return Get(); in Pack()
319 uptr *ptr = Get(); in Pack()
370 if (uptr *ptr = Get()) in Stored()
124 uptr *StackStore::BlockInfo::Get() const { Get() function in __sanitizer::StackStore::BlockInfo
/freebsd/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/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/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsBPF.td11 // Get record field information
18 // Get BTF type id
25 // Get type information
/freebsd/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/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/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/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/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/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/contrib/llvm-project/llvm/lib/Support/
H A DUnicodeNameToCodepoint.cpp485 auto Get = [&Distances, Columns](size_t Column, std::size_t Row) -> char & { in nearestMatchesForCodepointName()
492 Get(I, 0) = I; in nearestMatchesForCodepointName()
505 Get(0, Row) = Row; in nearestMatchesForCodepointName()
508 const int Delete = Get(I - 1, Row) + 1; in nearestMatchesForCodepointName()
509 const int Insert = Get(I, Row - 1) + 1; in nearestMatchesForCodepointName()
512 Get(I - 1, Row - 1) + (NormalizedName[I - 1] != N.Name[J] ? 1 : 0); in nearestMatchesForCodepointName()
514 Get(I, Row) = std::min(Insert, std::min(Delete, Replace)); in nearestMatchesForCodepointName()
520 unsigned Cost = Get(Columns - 1, Row - 1); in nearestMatchesForCodepointName()
488 auto Get = [&Distances, Columns](size_t Column, std::size_t Row) -> char & { nearestMatchesForCodepointName() local
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-matchers.h335 -> decltype(P::Get(m).MatchAndExplain(value, listener->stream())) {
336 return P::Get(m).MatchAndExplain(value, listener->stream());
342 -> decltype(P::Get(m).MatchAndExplain(value, listener)) {
343 return P::Get(m).MatchAndExplain(value, listener);
350 P::Get(m).DescribeNegationTo(os); in DescribeImpl()
352 P::Get(m).DescribeTo(os); in DescribeImpl()
366 std::is_convertible<decltype(&P::Get(m)), in GetDescriberImpl()
369 : 0)>(std::make_tuple(&m, &P::Get(m))); in GetDescriberImpl()
404 static const M& Get(const MatcherBase& m) { in Get() function
420 static const M& Get(const MatcherBase& m) {
[all …]

12345678910>>...13