/openbmc/linux/drivers/input/rmi4/ |
H A D | rmi_f01.c | 141 u8 queries[RMI_F01_BASIC_QUERY_LEN]; in rmi_f01_read_properties() local 153 queries, RMI_F01_BASIC_QUERY_LEN); in rmi_f01_read_properties() 164 props->manufacturer_id = queries[0]; in rmi_f01_read_properties() 166 props->has_lts = queries[1] & RMI_F01_QRY1_HAS_LTS; in rmi_f01_read_properties() 168 queries[1] & RMI_F01_QRY1_HAS_ADJ_DOZE; in rmi_f01_read_properties() 170 queries[1] & RMI_F01_QRY1_HAS_ADJ_DOZE_HOFF; in rmi_f01_read_properties() 171 has_query42 = queries[1] & RMI_F01_QRY1_HAS_QUERY42; in rmi_f01_read_properties() 172 has_sensor_id = queries[1] & RMI_F01_QRY1_HAS_SENSOR_ID; in rmi_f01_read_properties() 175 queries[5] & RMI_F01_QRY5_YEAR_MASK, in rmi_f01_read_properties() 176 queries[6] & RMI_F01_QRY6_MONTH_MASK, in rmi_f01_read_properties() [all …]
|
/openbmc/linux/lib/ |
H A D | interval_tree_test.c | 25 static u32 *queries = NULL; variable 59 queries[i] = (prandom_u32_state(&rnd) >> 4) % max_endpoint; in init() 73 queries = kmalloc_array(nsearches, sizeof(int), GFP_KERNEL); in interval_tree_test_init() 74 if (!queries) { in interval_tree_test_init() 109 unsigned long start = search_all ? 0 : queries[j]; in interval_tree_test_init() 110 unsigned long last = search_all ? max_endpoint : queries[j]; in interval_tree_test_init() 123 kfree(queries); in interval_tree_test_init()
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
H A D | widgets.py | 251 queries = None 254 if queries: 255 queries |= query 257 queries = query 260 search_queries &= queries 262 search_queries = queries
|
H A D | views.py | 311 queries = None 314 queries = queries | query if queries else query 316 search_object = search_object & queries if search_object else queries
|
/openbmc/linux/drivers/infiniband/core/ |
H A D | sa_query.c | 182 static DEFINE_XARRAY_FLAGS(queries, XA_FLAGS_ALLOC | XA_FLAGS_LOCK_IRQ); 1155 xa_lock_irqsave(&queries, flags); in ib_sa_cancel_query() 1156 if (xa_load(&queries, id) != query) { in ib_sa_cancel_query() 1157 xa_unlock_irqrestore(&queries, flags); in ib_sa_cancel_query() 1161 xa_unlock_irqrestore(&queries, flags); in ib_sa_cancel_query() 1341 xa_lock_irqsave(&queries, flags); in send_mad() 1342 ret = __xa_alloc(&queries, &id, query, xa_limit_32b, gfp_mask); in send_mad() 1343 xa_unlock_irqrestore(&queries, flags); in send_mad() 1368 xa_lock_irqsave(&queries, flags); in send_mad() 1369 __xa_erase(&queries, id); in send_mad() [all …]
|
/openbmc/openbmc/poky/meta/files/common-licenses/ |
H A D | Zed | 2 You may copy and distribute this file freely. Any queries and complaints should be forwarded to Ji…
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/imapfilter/ |
H A D | imapfilter_2.8.2.bb | 1 SUMMARY = "IMAPFilter is a mail filtering utility that processes mailboxes based on IMAP queries"
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/pugixml/ |
H A D | pugixml_1.14.bb |
|
/openbmc/linux/Documentation/userspace-api/media/dvb/ |
H A D | fe-get-frontend.rst | 36 This ioctl call queries the currently effective frontend parameters. For
|
/openbmc/linux/Documentation/userspace-api/media/drivers/ |
H A D | uvcvideo.rst | 64 A call to this ioctl allows applications to send queries to the UVC driver that 192 This ioctl queries a UVC XU control identified by its extension unit ID 195 There are a number of different queries available that closely 219 control. Exceptions are the UVC_GET_LEN and UVC_GET_INFO queries, for
|
/openbmc/bmcweb/ |
H A D | OWNERS | 42 # - Join and answer architecture queries posed to the mailing list concerning 45 # - Be capable of responding to CVE queries forwarded from the
|
/openbmc/linux/Documentation/gpu/amdgpu/ |
H A D | ras.rst | 5 The AMDGPU RAS interfaces are exposed via sysfs (for informational queries) and
|
/openbmc/linux/Documentation/networking/ |
H A D | dns_resolver.rst | 20 The DNS resolver module provides a way for kernel services to make DNS queries 21 by way of requesting a key of key type dns_resolver. These queries are
|
/openbmc/openbmc/meta-openembedded/meta-initramfs/recipes-devtools/klibc/files/ |
H A D | 0001-workaround-for-overlapping-sections-in-binary.patch | 24 This additional code effectively queries the C compiler for the sizes of
|
/openbmc/qemu/docs/system/ |
H A D | managed-startup.rst | 25 where additional queries and configuration can be performed via QMP
|
/openbmc/linux/tools/perf/Documentation/ |
H A D | db-export.txt | 26 2. New tables and columns can be added, without affecting existing SQL queries,
|
/openbmc/qemu/nbd/ |
H A D | client.c | 674 uint32_t queries = !!query; in nbd_send_meta_query() local 682 data_len = sizeof(export_len) + export_len + sizeof(queries); in nbd_send_meta_query() 695 stl_be_p(p += export_len, queries); in nbd_send_meta_query() 697 stl_be_p(p += sizeof(queries), query_len); in nbd_send_meta_query()
|
H A D | trace-events | 54 …ar *optname, const char *export, uint32_t queries) "Client requested %s for export %s, with %" PRI…
|
/openbmc/qemu/docs/interop/ |
H A D | nbd.rst | 48 For ``NBD_OPT_LIST_META_CONTEXT`` the following queries are supported
|
/openbmc/linux/arch/x86/platform/uv/ |
H A D | uv_nmi.c | 518 this_cpu_inc(uv_cpu_nmi.queries); in uv_check_nmi() 1007 this_cpu_inc(uv_cpu_nmi.queries); in uv_handle_nmi_ping()
|
/openbmc/linux/Documentation/virt/kvm/x86/ |
H A D | cpuid.rst | 30 This function queries the presence of KVM cpuid leafs.
|
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/ |
H A D | any_sender_of.hpp | 1385 using queries = stdexec::__types<decltype(_Sigs)...>; typedef 1446 __any::__sender<_Completions, queries<_SenderQueries...>, 1447 queries<_ReceiverQueries...>>>; 1532 queries<_SchedulerQueries...>>;
|
/openbmc/linux/Documentation/wmi/ |
H A D | acpi-interface.rst | 17 used for mapping and execution of WMI methods and/or queries. If there exist
|
/openbmc/google-misc/subprojects/ncsid/doc/ |
H A D | ncsid_internals.md | 48 filters and queries the NIC state (hostless or host-based). If it ever fails,
|
/openbmc/openbmc/meta-security/dynamic-layers/meta-perl/recipes-security/bastille/files/ |
H A D | config | 35 # Q: Interfaces for DHCP queries: [ ]
|