/linux-4.1.27/drivers/infiniband/core/ |
D | sa_query.c | 490 void ib_sa_cancel_query(int id, struct ib_sa_query *query) in ib_sa_cancel_query() argument 497 if (idr_find(&query_idr, id) != query) { in ib_sa_cancel_query() 501 agent = query->port->agent; in ib_sa_cancel_query() 502 mad_buf = query->mad_buf; in ib_sa_cancel_query() 570 static int alloc_mad(struct ib_sa_query *query, gfp_t gfp_mask) in alloc_mad() argument 574 spin_lock_irqsave(&query->port->ah_lock, flags); in alloc_mad() 575 if (!query->port->sm_ah) { in alloc_mad() 576 spin_unlock_irqrestore(&query->port->ah_lock, flags); in alloc_mad() 579 kref_get(&query->port->sm_ah->ref); in alloc_mad() 580 query->sm_ah = query->port->sm_ah; in alloc_mad() [all …]
|
D | multicast.c | 108 struct ib_sa_query *query; member 341 &group->query); in send_join() 365 group, &group->query); in send_leave()
|
D | cma.c | 133 struct ib_sa_query *query; member 950 if (id_priv->query) in cma_cancel_route() 951 ib_sa_cancel_query(id_priv->query_id, id_priv->query); in cma_cancel_route() 1755 work, &id_priv->query); in cma_query_ib_route()
|
/linux-4.1.27/tools/perf/scripts/python/ |
D | export-to-postgresql.py | 83 query = QSqlQuery(db) variable 87 do_query(query, 'CREATE DATABASE ' + dbname) 91 query.finish() 92 query.clear() 98 query = QSqlQuery(db) variable 99 do_query(query, 'SET client_min_messages TO WARNING') 101 do_query(query, 'CREATE TABLE selected_events (' 104 do_query(query, 'CREATE TABLE machines (' 108 do_query(query, 'CREATE TABLE threads (' 114 do_query(query, 'CREATE TABLE comms (' [all …]
|
/linux-4.1.27/lib/ |
D | dynamic_debug.c | 112 static void vpr_info_dq(const struct ddebug_query *query, const char *msg) in vpr_info_dq() argument 117 if (query->format) { in vpr_info_dq() 118 fmtlen = strlen(query->format); in vpr_info_dq() 119 while (fmtlen && query->format[fmtlen - 1] == '\n') in vpr_info_dq() 125 query->function ? query->function : "", in vpr_info_dq() 126 query->filename ? query->filename : "", in vpr_info_dq() 127 query->module ? query->module : "", in vpr_info_dq() 128 fmtlen, query->format ? query->format : "", in vpr_info_dq() 129 query->first_lineno, query->last_lineno); in vpr_info_dq() 138 static int ddebug_change(const struct ddebug_query *query, in ddebug_change() argument [all …]
|
D | interval_tree_test.c | 18 search(unsigned long query, struct rb_root *root) in search() argument 23 for (node = interval_tree_iter_first(root, query, query); node; in search() 24 node = interval_tree_iter_next(node, query, query)) in search()
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | wacom_w8001.c | 182 static void parse_touchquery(u8 *data, struct w8001_touch_query *query) in parse_touchquery() argument 184 memset(query, 0, sizeof(*query)); in parse_touchquery() 186 query->panel_res = data[1]; in parse_touchquery() 187 query->sensor_id = data[2] & 0x7; in parse_touchquery() 188 query->capacity_res = data[7]; in parse_touchquery() 190 query->x = data[3] << 9; in parse_touchquery() 191 query->x |= data[4] << 2; in parse_touchquery() 192 query->x |= (data[2] >> 5) & 0x3; in parse_touchquery() 194 query->y = data[5] << 9; in parse_touchquery() 195 query->y |= data[6] << 2; in parse_touchquery() [all …]
|
/linux-4.1.27/Documentation/networking/ |
D | dns_resolver.txt | 31 (*) Dns query support for AFSDB resource record. 58 To direct a query for query type 'foo', a line of the following should be added 76 This is the basic access function. It looks for a cached DNS query and if 77 it doesn't find it, it upcalls to userspace to make a new DNS query, which 84 and thus the type of query to do, and <name> specifies the string to be 85 looked up. The default query type is a straight hostname to IP address 92 appropriate to the query type. 94 The return value is a string appropriate to the query type. For instance, 95 for the default query type it is just a list of comma-separated IPv4 and
|
D | operstates.txt | 95 netif_carrier_ok() can be used to query that bit. 102 flag, netif_dormant_off() to clear it and netif_dormant() to query. 142 -query RTM_GETLINK once to get initial state
|
D | xfrm_sync.txt | 69 message (kernel<->user) as well the cause (config, query or event).
|
D | README.ipw2200 | 244 typically query the contents of a sysfs entry through the use of cat,
|
D | phy.txt | 299 registers for EEE query and configuration if the PHY supports
|
D | bonding.txt | 1104 will cause it to query DHCP for its IP address information. At this 1835 querying the device's MII registers, or by making an ethtool query to 1846 If use_carrier is 0, then the MII monitor will first query the 2129 target to query.
|
D | ip-sysctl.txt | 904 Controls the IGMP query robustness variable (see RFC2236 8.1). 1235 Controls the MLD query robustness variable (see RFC3810 9.1).
|
/linux-4.1.27/scripts/rt-tester/ |
D | rt-tester.py | 175 query = 1 variable 185 query = analyse(val, testop, dat) variable 187 if query or cmd == "t": 192 if not query:
|
/linux-4.1.27/arch/s390/hypfs/ |
D | hypfs_vm.c | 55 static int diag2fc(int size, char* query, void *addr) in diag2fc() argument 61 memcpy(parm_list.userid, query, NAME_LEN); in diag2fc() 84 static void *diag2fc_store(char *query, unsigned int *count, int offset) in diag2fc_store() argument 90 size = diag2fc(0, query, NULL); in diag2fc_store() 96 if (diag2fc(size, query, data + offset) == 0) in diag2fc_store()
|
/linux-4.1.27/net/bridge/ |
D | br_multicast.c | 39 struct bridge_mcast_own_query *query); 765 struct bridge_mcast_own_query *query) in br_multicast_querier_expired() argument 771 br_multicast_start_querier(br, query); in br_multicast_querier_expired() 865 struct bridge_mcast_own_query *query) in br_multicast_port_query_expired() argument 874 if (query->startup_sent < br->multicast_startup_query_count) in br_multicast_port_query_expired() 875 query->startup_sent++; in br_multicast_port_query_expired() 877 br_multicast_send_query(port->br, port, query); in br_multicast_port_query_expired() 918 static void br_multicast_enable(struct bridge_mcast_own_query *query) in br_multicast_enable() argument 920 query->startup_sent = 0; in br_multicast_enable() 922 if (try_to_del_timer_sync(&query->timer) >= 0 || in br_multicast_enable() [all …]
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-devices-system-ibm-rtl | 7 ability to query the current state. 17 Description: The version file provides a means by which to query
|
/linux-4.1.27/drivers/media/usb/dvb-usb/ |
D | cinergyT2-core.c | 68 char query[] = { CINERGYT2_EP1_GET_FIRMWARE_VERSION }; in cinergyt2_frontend_attach() local 74 ret = dvb_usb_generic_rw(adap->dev, query, sizeof(query), state, in cinergyt2_frontend_attach()
|
/linux-4.1.27/net/dns_resolver/ |
D | Kconfig | 12 DNS Resolver is used to query DNS server for information. Examples 14 performing a DNS query for AFSDB records so that AFS can locate a
|
/linux-4.1.27/Documentation/laptops/ |
D | toshiba_haps.txt | 51 This device does not report any axes, however, to query the sensor position 53 provided to query such information, handled by the kernel module toshiba_acpi 70 provides a way to let userspace query the current protection
|
D | sony-laptop.txt | 29 directory. You will be able to query and set the current screen 33 actual_brightness reading from this file will query the HW
|
D | thinkpad-acpi.txt | 729 some older ThinkPad models, it is possible to query the status of the 730 LED indicators as well. Newer ThinkPads cannot query the real status
|
/linux-4.1.27/drivers/media/usb/uvc/ |
D | uvc_video.c | 33 static int __uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit, in __uvc_query_ctrl() argument 40 pipe = (query & 0x80) ? usb_rcvctrlpipe(dev->udev, 0) in __uvc_query_ctrl() 42 type |= (query & 0x80) ? USB_DIR_IN : USB_DIR_OUT; in __uvc_query_ctrl() 44 return usb_control_msg(dev->udev, pipe, query, type, cs << 8, in __uvc_query_ctrl() 48 static const char *uvc_query_name(__u8 query) in uvc_query_name() argument 50 switch (query) { in uvc_query_name() 72 int uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit, in uvc_query_ctrl() argument 77 ret = __uvc_query_ctrl(dev, query, unit, intfnum, cs, data, size, in uvc_query_ctrl() 81 "unit %u: %d (exp. %u).\n", uvc_query_name(query), cs, in uvc_query_ctrl() 159 struct uvc_streaming_control *ctrl, int probe, __u8 query) in uvc_get_video_ctrl() argument [all …]
|
D | uvc_ctrl.c | 369 __u8 query, const __u8 *data) in uvc_ctrl_get_zoom() argument 373 switch (query) { in uvc_ctrl_get_zoom() 394 __u8 query, const __u8 *data) in uvc_ctrl_get_rel_speed() argument 399 switch (query) { in uvc_ctrl_get_rel_speed() 768 __u8 query, const __u8 *data) in uvc_get_le_value() argument 1771 switch (xqry->query) { in uvc_xu_ctrl_query() 1817 if (xqry->query == UVC_SET_CUR && in uvc_xu_ctrl_query() 1823 ret = uvc_query_ctrl(chain->dev, xqry->query, xqry->unit, in uvc_xu_ctrl_query() 1828 if (xqry->query != UVC_SET_CUR && in uvc_xu_ctrl_query()
|
D | uvcvideo.h | 201 __s32 (*get) (struct uvc_control_mapping *mapping, __u8 query, 676 extern int uvc_query_ctrl(struct uvc_device *dev, __u8 query, __u8 unit,
|
D | uvc_v4l2.c | 1312 __u8 query; member
|
/linux-4.1.27/arch/powerpc/platforms/pseries/ |
D | iommu.c | 826 struct ddw_query_response *query) in query_ddw() argument 845 ret = rtas_call(ddw_avail[0], 3, 5, (u32 *)query, in query_ddw() 910 struct ddw_query_response query; in enable_ddw() local 959 ret = query_ddw(dev, ddw_avail, &query); in enable_ddw() 963 if (query.windows_available == 0) { in enable_ddw() 972 if (query.page_size & 4) { in enable_ddw() 974 } else if (query.page_size & 2) { in enable_ddw() 976 } else if (query.page_size & 1) { in enable_ddw() 980 query.page_size); in enable_ddw() 986 if (query.largest_available_block < (max_addr >> page_shift)) { in enable_ddw() [all …]
|
/linux-4.1.27/fs/ocfs2/dlm/ |
D | dlmdomain.c | 810 struct dlm_query_join_request *query; in dlm_query_join_handler() local 818 query = (struct dlm_query_join_request *) msg->buf; in dlm_query_join_handler() 820 mlog(0, "node %u wants to join domain %s\n", query->node_idx, in dlm_query_join_handler() 821 query->domain); in dlm_query_join_handler() 828 if (!o2hb_check_node_heartbeating_no_sem(query->node_idx)) { in dlm_query_join_handler() 830 query->node_idx); in dlm_query_join_handler() 839 dlm = __dlm_lookup_domain_full(query->domain, query->name_len); in dlm_query_join_handler() 851 if (!byte_test_bit(nodenum, query->node_map)) { in dlm_query_join_handler() 854 query->node_idx, nodenum); in dlm_query_join_handler() 867 int bit = query->node_idx; in dlm_query_join_handler() [all …]
|
/linux-4.1.27/drivers/net/hyperv/ |
D | rndis_filter.c | 472 struct rndis_query_request *query; in rndis_filter_query_device() local 489 query = &request->request_msg.msg.query_req; in rndis_filter_query_device() 490 query->oid = oid; in rndis_filter_query_device() 491 query->info_buf_offset = sizeof(struct rndis_query_request); in rndis_filter_query_device() 492 query->info_buflen = 0; in rndis_filter_query_device() 493 query->dev_vc_handle = 0; in rndis_filter_query_device() 500 query->info_buflen = sizeof(struct ndis_recv_scale_cap); in rndis_filter_query_device() 501 cap = (struct ndis_recv_scale_cap *)((unsigned long)query + in rndis_filter_query_device() 502 query->info_buf_offset); in rndis_filter_query_device()
|
/linux-4.1.27/drivers/platform/x86/ |
D | hp-wmi.c | 191 static int hp_wmi_perform_query(int query, int write, void *buffer, in hp_wmi_perform_query() argument 200 .commandtype = query, in hp_wmi_perform_query() 228 pr_warn("query 0x%x returned error 0x%x\n", query, rc); in hp_wmi_perform_query() 334 int query = BIT(r + 8) | ((!blocked) << r); in hp_wmi_set_block() local 338 &query, sizeof(query), 0); in hp_wmi_set_block()
|
D | asus-wmi.c | 855 .query = asus_rfkill_query, 860 .query = asus_rfkill_query,
|
D | classmate-laptop.c | 945 .query = cmpc_rfkill_query,
|
D | dell-laptop.c | 523 .query = dell_rfkill_query,
|
D | samsung-laptop.c | 656 .query = swsmi_rfkill_query,
|
/linux-4.1.27/include/uapi/linux/ |
D | uvcvideo.h | 61 __u8 query; /* Video Class-Specific Request Code, */ member
|
/linux-4.1.27/Documentation/powerpc/ |
D | ptrace.txt | 8 For that, we need to extend ptrace so that GDB can query and set these 23 GDB: this query will return the number of hardware breakpoints, hardware 25 The query will fill the following structure provided by the requesting process:
|
D | hvcs.txt | 334 driver sysfs directory with the "rescan" update attribute which will query
|
/linux-4.1.27/arch/arm/mach-iop13xx/ |
D | setup.c | 207 char query[3]; in iq8134x_probe_flash_size() local 217 query[i / width] = readb(flash_addr + (0x10 * width) + i); in iq8134x_probe_flash_size() 220 if (memcmp(query, "QRY", 3) == 0) in iq8134x_probe_flash_size()
|
/linux-4.1.27/arch/tile/kernel/ |
D | sysfs.c | 25 static ssize_t get_hv_confstr(char *page, int query) in get_hv_confstr() argument 27 ssize_t n = hv_confstr(query, (unsigned long)page, PAGE_SIZE - 1); in get_hv_confstr()
|
D | hvglue_trace.c | 189 HV_WRAP1(long, hv_sysconf, HV_SysconfQuery, query) 190 HV_WRAP3(int, hv_confstr, HV_ConfstrQuery, query, HV_VirtAddr, buf, int, len)
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | d3.c | 1698 struct iwl_scan_offload_profiles_query *query; in iwl_mvm_netdetect_query_results() local 1718 if (len < sizeof(*query)) { in iwl_mvm_netdetect_query_results() 1724 query = (void *)cmd.resp_pkt->data; in iwl_mvm_netdetect_query_results() 1726 results->matched_profiles = le32_to_cpu(query->matched_profiles); in iwl_mvm_netdetect_query_results() 1727 memcpy(results->matches, query->matches, sizeof(results->matches)); in iwl_mvm_netdetect_query_results() 1730 mvm->last_netdetect_scans = le32_to_cpu(query->n_scans_done); in iwl_mvm_netdetect_query_results() 1746 struct iwl_mvm_nd_query_results query; in iwl_mvm_query_netdetect_reasons() local 1764 ret = iwl_mvm_netdetect_query_results(mvm, &query); in iwl_mvm_query_netdetect_reasons() 1765 if (ret || !query.matched_profiles) { in iwl_mvm_query_netdetect_reasons() 1770 matched_profiles = query.matched_profiles; in iwl_mvm_query_netdetect_reasons() [all …]
|
/linux-4.1.27/drivers/xen/ |
D | grant-table.c | 609 struct gnttab_query_size query; in __max_nr_grant_frames() local 612 query.dom = DOMID_SELF; in __max_nr_grant_frames() 614 rc = HYPERVISOR_grant_table_op(GNTTABOP_query_size, &query, 1); in __max_nr_grant_frames() 615 if ((rc < 0) || (query.status != GNTST_okay)) in __max_nr_grant_frames() 618 return query.max_nr_frames; in __max_nr_grant_frames()
|
/linux-4.1.27/include/rdma/ |
D | ib_sa.h | 297 void ib_sa_cancel_query(int id, struct ib_sa_query *query); 308 struct ib_sa_query **query);
|
/linux-4.1.27/Documentation/ |
D | dynamic-debug-howto.txt | 22 * Simple query language allows turning on and off debugging 107 If your query set is big, you can batch them too: 109 ~# cat query-batch-file > <debugfs>/dynamic_debug/control 123 callsites to which to apply the flags-spec. Think of them as a query 280 In the foo.dyndbg="QUERY" form, the query must exclude "module foo". 281 "foo" is extracted from the param-name, and applied to each query in
|
D | rfkill.txt | 46 ways for userspace to query the current states. See the "Userspace support"
|
D | DMA-API-HOWTO.txt | 169 The query is performed via a call to dma_set_mask_and_coherent(): 173 which will query the mask for both streaming and coherent APIs together. 177 The query for streaming mappings is performed via a call to 182 The query for consistent allocations is performed via a call
|
D | bus-virt-phys-mapping.txt | 7 [ This is a mail message in response to a query on IO mapping, thus the
|
D | robust-futexes.txt | 166 one to query the registered list pointer:
|
D | vfio.txt | 82 but a couple version and extension query interfaces locked away.
|
D | kernel-docs.txt | 438 camera driver, control, query capabilities, capability, facility.
|
D | IPMI.txt | 691 will first query the capabilities of the local management controller.
|
D | devices.txt | 870 This device is used for status query, board control
|
/linux-4.1.27/include/linux/ |
D | rfkill.h | 63 void (*query)(struct rfkill *rfkill, void *data); member
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_stats.c | 109 i, bp->fw_stats_req->query[i].kind, in bnx2x_dp_stats() 110 bp->fw_stats_req->query[i].index, in bnx2x_dp_stats() 111 bp->fw_stats_req->query[i].funcID, in bnx2x_dp_stats() 112 bp->fw_stats_req->query[i].reserved, in bnx2x_dp_stats() 113 bp->fw_stats_req->query[i].address.hi, in bnx2x_dp_stats() 114 bp->fw_stats_req->query[i].address.lo); in bnx2x_dp_stats() 1468 cur_query_entry = &bp->fw_stats_req->query[BNX2X_PORT_QUERY_IDX]; in bnx2x_prep_fw_stats_req() 1482 cur_query_entry = &bp->fw_stats_req->query[BNX2X_PF_QUERY_IDX]; in bnx2x_prep_fw_stats_req() 1497 &bp->fw_stats_req->query[BNX2X_FCOE_QUERY_IDX]; in bnx2x_prep_fw_stats_req() 1524 query[first_queue_query_index + i]; in bnx2x_prep_fw_stats_req() [all …]
|
D | bnx2x_sp.c | 1481 struct bnx2x_exeq_elem query, *pos; in bnx2x_optimize_vlan_mac() local 1485 memcpy(&query, elem, sizeof(query)); in bnx2x_optimize_vlan_mac() 1489 query.cmd_data.vlan_mac.cmd = BNX2X_VLAN_MAC_DEL; in bnx2x_optimize_vlan_mac() 1492 query.cmd_data.vlan_mac.cmd = BNX2X_VLAN_MAC_ADD; in bnx2x_optimize_vlan_mac() 1500 pos = exeq->get(exeq, &query); in bnx2x_optimize_vlan_mac() 1506 if ((query.cmd_data.vlan_mac.cmd == in bnx2x_optimize_vlan_mac()
|
D | bnx2x.h | 1355 struct stats_query_entry query[FP_SB_MAX_E1x+ member
|
D | bnx2x_sriov.c | 1939 query[first_queue_query_index + num_queues_req]; in bnx2x_iov_adjust_stats_req()
|
D | bnx2x_hsi.h | 5722 struct stats_query_entry query[STATS_QUERY_CMD_COUNT]; member
|
/linux-4.1.27/drivers/infiniband/ulp/ipoib/ |
D | ipoib_main.c | 419 if (path->query) in ipoib_flush_paths() 420 ib_sa_cancel_query(path->query_id, path->query); in ipoib_flush_paths() 509 path->query = NULL; in path_rec_completion() 575 path, &path->query); in path_rec_start() 578 path->query = NULL; in path_rec_start() 641 if (!path->query && path_rec_start(dev, path)) in neigh_add_path() 688 if (!path->query && path_rec_start(dev, path)) { in unicast_arp_send() 711 } else if ((path->query || !path_rec_start(dev, path)) && in unicast_arp_send()
|
D | ipoib.h | 413 struct ib_sa_query *query; member
|
/linux-4.1.27/Documentation/scsi/ |
D | ufs.txt | 63 layers. Device level configurations involve handling of query 74 are done through query requests.
|
/linux-4.1.27/drivers/media/usb/pvrusb2/ |
D | Kconfig | 25 interface for query and control of the pvrusb2 driver.
|
/linux-4.1.27/drivers/scsi/ufs/ |
D | ufshcd.c | 816 struct ufs_query_res *query_res = &hba->dev_cmd.query.response; in ufshcd_copy_query_response() 831 hba->dev_cmd.query.request.upiu_req.length); in ufshcd_copy_query_response() 833 memcpy(hba->dev_cmd.query.descriptor, descp, resp_len); in ufshcd_copy_query_response() 1153 struct ufs_query *query = &hba->dev_cmd.query; in ufshcd_prepare_utp_query_req_upiu() local 1154 u16 len = be16_to_cpu(query->request.upiu_req.length); in ufshcd_prepare_utp_query_req_upiu() 1162 0, query->request.query_func, 0, 0); in ufshcd_prepare_utp_query_req_upiu() 1169 memcpy(&ucd_req_ptr->qr, &query->request.upiu_req, in ufshcd_prepare_utp_query_req_upiu() 1173 if (query->request.upiu_req.opcode == UPIU_QUERY_OPCODE_WRITE_DESC) in ufshcd_prepare_utp_query_req_upiu() 1174 memcpy(descp, query->descriptor, len); in ufshcd_prepare_utp_query_req_upiu() 1391 struct ufs_query_res *query_res = &hba->dev_cmd.query.response; in ufshcd_check_query_response() [all …]
|
D | ufshcd.h | 203 struct ufs_query query; member
|
/linux-4.1.27/drivers/staging/i2o/ |
D | README.ioctl | 345 void *qbuf; /* Pointer to HTTP query string */ 346 u32 qlen; /* Length in bytes of query string buffer */ 354 in the buffer pointed to by htquery->resbuf. If there is an HTTP query 356 pointed to by htquery->qbuf. If there is no query string, this field
|
/linux-4.1.27/Documentation/device-mapper/ |
D | dm-uevent.txt | 5 the event avoiding the need to query the state of the device-mapper device after
|
/linux-4.1.27/drivers/media/usb/dvb-usb-v2/ |
D | dvb_usb.h | 142 int (*query) (struct dvb_usb_device *d); member
|
D | dvb_usb_core.c | 121 ret = d->rc.query(d); in dvb_usb_read_remote_control() 180 if (d->rc.query && !d->rc.bulk_mode) { in dvb_usbv2_remote_init()
|
D | rtl28xxu.c | 1518 rc->query = rtl2831u_rc_query; in rtl2831u_get_rc_config() 1624 rc->query = rtl2832u_rc_query; in rtl2832u_get_rc_config()
|
D | az6007.c | 240 rc->query = az6007_rc_query; in az6007_get_rc_config()
|
D | dvbsky.c | 231 rc->query = dvbsky_rc_query; in dvbsky_get_rc_config()
|
D | anysee.c | 1159 rc->query = anysee_rc_query; in anysee_get_rc_config()
|
D | af9015.c | 1319 rc->query = af9015_rc_query; in af9015_get_rc_config()
|
D | af9035.c | 1833 rc->query = af9035_rc_query; in af9035_get_rc_config()
|
/linux-4.1.27/security/tomoyo/ |
D | common.c | 1892 char *query; member 2032 entry.query = tomoyo_init_log(r, len, fmt, args); in tomoyo_supervisor() 2034 if (!entry.query) in tomoyo_supervisor() 2036 entry.query_len = strlen(entry.query) + 1; in tomoyo_supervisor() 2038 tomoyo_add_entry(r->domain, entry.query); in tomoyo_supervisor() 2085 kfree(entry.query); in tomoyo_supervisor() 2177 ptr->retry, ptr->query); in tomoyo_read_query()
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-arch.txt | 29 threads need only ever query need_resched, and may never set or
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-devices-node | 92 The node's huge page size control/query attributes.
|
/linux-4.1.27/arch/tile/include/hv/ |
D | hypervisor.h | 480 long hv_sysconf(HV_SysconfQuery query); 572 int hv_confstr(HV_ConfstrQuery query, HV_VirtAddr buf, int len, ...);
|
/linux-4.1.27/Documentation/virtual/kvm/devices/ |
D | vm.txt | 37 Allows userspace to query the actual limit and set a new limit for
|
/linux-4.1.27/Documentation/video4linux/ |
D | uvcvideo.txt | 46 This is no longer necessary as newer uvcvideo versions query the information 237 __u8 query Request code to send to the device
|
D | meye.txt | 93 The user should always query the current parameters with
|
/linux-4.1.27/firmware/keyspan_pda/ |
D | keyspan_pda.S | 347 ;; we are back online. the host device will now re-query us 441 ;; 06 is query room 443 ;; 06, wValue[0]=0 is query write_room 450 ;; 06, wValue[0]=1 is query chars_in_buffer
|
D | xircom_pgs.S | 385 ;; we are back online. the host device will now re-query us 479 ;; 06 is query room 481 ;; 06, wValue[0]=0 is query write_room 488 ;; 06, wValue[0]=1 is query chars_in_buffer
|
/linux-4.1.27/Documentation/ptp/ |
D | ptp.txt | 49 ioctls. A program may query, enable, configure, and disable the
|
/linux-4.1.27/Documentation/w1/masters/ |
D | ds2490 | 45 driver doesn't query those values.
|
/linux-4.1.27/Documentation/acpi/ |
D | gpio-properties.txt | 10 With _DSD we can now query GPIOs using a name instead of an integer
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | README.quirks | 81 query for these non-compliant devices, and set the EN_VSFX bit only if
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | timestamping.txt | 14 event or application query. 68 The application can query what the hardware supports, define which
|
D | Channel-Mapping-API.txt | 8 The channel mapping API allows user to query the possible channel maps
|
D | compress_offload.txt | 220 hooks to query the utilization of the audio DSP, nor any preemption
|
D | hda_codec.txt | 154 hda_nid_t nid; /* default NID to query rates/formats/bps, or set up */
|
/linux-4.1.27/drivers/firmware/ |
D | Kconfig | 96 Say Y here if you want to query SMBIOS/DMI system identification
|
/linux-4.1.27/drivers/tty/hvc/ |
D | hvsi.c | 318 struct hvsi_query *query = (struct hvsi_query *)packet; in hvsi_recv_query() local 322 hvsi_version_respond(hp, query->hdr.seqno); in hvsi_recv_query()
|
/linux-4.1.27/net/rfkill/ |
D | core.c | 282 if (rfkill->ops->query) in rfkill_set_block() 283 rfkill->ops->query(rfkill, rfkill->data); in rfkill_set_block()
|
/linux-4.1.27/drivers/media/ |
D | Kconfig | 92 Enable the media controller API used to query media devices internal
|
/linux-4.1.27/Documentation/power/ |
D | opp.txt | 42 OPP library provides a set of helper functions to organize and query the OPP 84 OPP library uses RCU for exclusivity. RCU allows the query functions to operate
|
/linux-4.1.27/Documentation/ia64/ |
D | err_inject.txt | 12 and query error injection capabilities. The driver code is in 15 (sysfs interface) to inject errors or query error injection capabilities. 959 printf("\t-q: query all capabilities. default: off\n");
|
/linux-4.1.27/Documentation/vm/ |
D | pagemap.txt | 134 The page-types tool in the tools/vm directory can be used to query the
|
D | numa_memory_policy.txt | 331 task's mm's mmap_sem for read during the query. The set_mempolicy() and 349 extra reference on shared policies in the same query/allocation paths
|
D | unevictable-lru.txt | 184 evictable or not using the query function outlined above [see section "Marking
|
/linux-4.1.27/fs/nfsd/ |
D | vfs.c | 608 u32 query, result = 0, sresult = 0; in nfsd_access() local 626 query = *access; in nfsd_access() 628 if (map->access & query) { in nfsd_access()
|
/linux-4.1.27/Documentation/input/ |
D | event-codes.txt | 91 event and query the device (using EVIOCG* ioctls) to obtain its 212 EV_LED events are used for input and output to set and query the state of
|
D | iforce-protocol.txt | 151 Query command. Length varies according to the query type.
|
D | input-programming.txt | 256 Userspace can query and alter current scancode to keycode mappings using
|
/linux-4.1.27/net/wireless/ |
D | Kconfig | 162 and includes code to query that database. This is an alternative
|
/linux-4.1.27/drivers/media/pci/bt8xx/ |
D | dst_ca.c | 426 …struct dst_state *state, struct ca_msg *p_ca_message, struct ca_msg *hw_buffer, u8 reply, u8 query) in ca_set_pmt() argument
|
/linux-4.1.27/Documentation/blockdev/ |
D | cciss.txt | 131 This causes the driver to query the adapter about changes to the
|
D | README.DAC960 | 290 and the current status as of the last status monitoring query is available in
|
/linux-4.1.27/Documentation/fb/ |
D | viafb.txt | 221 to query which output devices are currently used by an iga.
|
/linux-4.1.27/drivers/mtd/ |
D | nftlmount.c | 230 The new DiskOnChip driver already scanned the bad block table. Just query it. in find_boot_record()
|
/linux-4.1.27/drivers/mtd/chips/ |
D | Kconfig | 43 prompt "Flash cmd/query data swapping"
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | pcc-cpufreq.txt | 100 This command is used by the OSPM to query the running frequency of the
|
/linux-4.1.27/Documentation/watchdog/ |
D | watchdog-api.txt | 101 Starting with the Linux 2.4.18 kernel, it is possible to query the
|
/linux-4.1.27/Documentation/s390/ |
D | monreader.txt | 27 that the monitor DCSS begins at 144 MB and ends at 152 MB). You can query the
|
/linux-4.1.27/Documentation/cdrom/ |
D | ide-cd | 36 functionality includes a function call to query which slot is the 37 currently selected slot, a function call to query which slots contain
|
/linux-4.1.27/Documentation/usb/ |
D | usb-serial.txt | 301 Line control Input/Output query and control ** 313 -- Add true modem control line query capability. Currently tracks the
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | msr.txt | 30 Users that want to reliably query this information more than once have
|
D | api.txt | 10 - System ioctls: These query and set global attributes which affect the 14 - VM ioctls: These query and set attributes that affect an entire virtual 21 - vcpu ioctls: These query and set attributes that control the operation 57 Instead, kvm defines extension identifiers and a facility to query 160 The API allows the application to query about extensions to the core 167 It is thus encouraged to use the vm ioctl to query for capabilities (available 2722 kvm.Userspace can use the information returned by this ioctl to query 3280 Userspace can query the validity of the structure by checking
|
/linux-4.1.27/Documentation/sysctl/ |
D | net.txt | 225 The number of times we will retransmit a query before giving up.
|
D | fs.txt | 204 This value can be used to query and set the core dump mode for setuid
|
D | kernel.txt | 764 This value can be used to query and set the run time limit
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | CHANGES | 79 support posix byte range locks. Fix query of root inode when prefixpath 80 specified and user does not have access to query information about the 246 (SMB to query all EAs) if nouser_xattr specified. Fix SE Linux 1043 in most cases. Eventually will offer optional ability to query server for the correct perms.
|
/linux-4.1.27/Documentation/cgroups/ |
D | cpusets.txt | 65 specify and query to which cpuset a task is assigned, and list the 290 query and accumulate results over all the (dynamically changing) 695 There are ways to query or modify cpusets:
|
D | cgroups.txt | 66 instance of the cgroup virtual file system, specify and query to
|
/linux-4.1.27/Documentation/arm/OMAP/ |
D | DSS | 65 VESA video timing). The audio_supported function is intended to query whether
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/sec/fuc/ |
D | g98.fuc0s | 317 // prepare the query structure
|
/linux-4.1.27/Documentation/gpio/ |
D | consumer.txt | 158 A driver can also query the current direction of a GPIO:
|
/linux-4.1.27/Documentation/hid/ |
D | hid-transport.txt | 151 GET_REPORT is only used by custom HID device drivers to query device state.
|
/linux-4.1.27/drivers/net/ethernet/brocade/bna/ |
D | bfa_ioc.c | 3148 struct bfi_flash_query_rsp *query; in bfa_flash_intr() member 3162 status = be32_to_cpu(m.query->status); in bfa_flash_intr()
|
/linux-4.1.27/drivers/scsi/bfa/ |
D | bfa_ioc.c | 4358 struct bfi_flash_query_rsp_s *query; in bfa_flash_intr() member 4377 status = be32_to_cpu(m.query->status); in bfa_flash_intr() 5719 struct bfi_phy_query_rsp_s *query; in bfa_phy_intr() member 5737 status = be32_to_cpu(m.query->status); in bfa_phy_intr()
|
/linux-4.1.27/Documentation/devicetree/ |
D | usage-model.txt | 232 to call any of the DT query functions (of_* in include/linux/of*.h) to
|
/linux-4.1.27/Documentation/filesystems/configfs/ |
D | configfs.txt | 53 read(2) can query their default values, and write(2) can store new
|
/linux-4.1.27/drivers/net/ethernet/emulex/benet/ |
D | be_cmds.h | 2357 struct be_resources *res, u8 query, u8 domain);
|
D | be_cmds.c | 3653 struct be_resources *res, u8 query, u8 domain) in be_cmd_get_profile_config() argument 3687 if (query == RESOURCE_MODIFIABLE) in be_cmd_get_profile_config()
|
/linux-4.1.27/Documentation/PCI/ |
D | MSI-HOWTO.txt | 54 Often drivers have to query the device to find out what event has
|
/linux-4.1.27/Documentation/block/ |
D | biodoc.txt | 770 Some block functions exist to query current tag status or to go from a 910 elevator_merge_fn called to query requests for merge with a bio
|
/linux-4.1.27/drivers/staging/speakup/ |
D | spkguide.txt | 522 rate, etc. If you find one you aren't sure about, you can post a query
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 543 and power. Drivers may query the availability of this device to
|