Home
last modified time | relevance | path

Searched refs:filled (Results 1 – 152 of 152) sorted by relevance

/linux-4.1.27/net/mac80211/
Dethtool.c111 sinfo.filled = 0; in ieee80211_get_stats()
120 if (sinfo.filled & BIT(NL80211_STA_INFO_TX_BITRATE)) in ieee80211_get_stats()
124 if (sinfo.filled & BIT(NL80211_STA_INFO_RX_BITRATE)) in ieee80211_get_stats()
129 if (sinfo.filled & BIT(NL80211_STA_INFO_SIGNAL_AVG)) in ieee80211_get_stats()
138 sinfo.filled = 0; in ieee80211_get_stats()
148 survey.filled = 0; in ieee80211_get_stats()
161 survey.filled = 0; in ieee80211_get_stats()
163 survey.filled = 0; in ieee80211_get_stats()
170 if (survey.filled) in ieee80211_get_stats()
174 if (survey.filled & SURVEY_INFO_NOISE_DBM) in ieee80211_get_stats()
[all …]
Dsta_info.c514 sinfo.filled = 0; in sta_info_insert_finish()
1820 sinfo->filled |= BIT(NL80211_STA_INFO_INACTIVE_TIME) | in sta_set_sinfo()
1831 if (!(sinfo->filled & (BIT(NL80211_STA_INFO_TX_BYTES64) | in sta_set_sinfo()
1836 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES64); in sta_set_sinfo()
1839 if (!(sinfo->filled & BIT(NL80211_STA_INFO_TX_PACKETS))) { in sta_set_sinfo()
1843 sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS); in sta_set_sinfo()
1846 if (!(sinfo->filled & (BIT(NL80211_STA_INFO_RX_BYTES64) | in sta_set_sinfo()
1849 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BYTES64); in sta_set_sinfo()
1852 if (!(sinfo->filled & BIT(NL80211_STA_INFO_RX_PACKETS))) { in sta_set_sinfo()
1854 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS); in sta_set_sinfo()
[all …]
Dcfg.c1503 pinfo->filled = MPATH_INFO_FRAME_QLEN | in mpath_set_pinfo()
/linux-4.1.27/drivers/vfio/pci/
Dvfio_pci_rdwr.c37 size_t fillable, filled; in do_io_rw() local
61 filled = 4; in do_io_rw()
77 filled = 2; in do_io_rw()
93 filled = 1; in do_io_rw()
96 filled = min(count, (size_t)(x_end - off)); in do_io_rw()
101 for (i = 0; i < filled; i++) in do_io_rw()
107 count -= filled; in do_io_rw()
108 done += filled; in do_io_rw()
109 off += filled; in do_io_rw()
110 buf += filled; in do_io_rw()
Dvfio_pci_config.c1167 int filled; in vfio_fill_vconfig_bytes() local
1177 filled = 4; in vfio_fill_vconfig_bytes()
1186 filled = 2; in vfio_fill_vconfig_bytes()
1192 filled = 1; in vfio_fill_vconfig_bytes()
1195 offset += filled; in vfio_fill_vconfig_bytes()
1196 size -= filled; in vfio_fill_vconfig_bytes()
/linux-4.1.27/drivers/vfio/platform/
Dvfio_platform_common.c279 size_t filled; in vfio_platform_read_mmio() local
288 filled = 4; in vfio_platform_read_mmio()
296 filled = 2; in vfio_platform_read_mmio()
304 filled = 1; in vfio_platform_read_mmio()
308 count -= filled; in vfio_platform_read_mmio()
309 done += filled; in vfio_platform_read_mmio()
310 off += filled; in vfio_platform_read_mmio()
311 buf += filled; in vfio_platform_read_mmio()
356 size_t filled; in vfio_platform_write_mmio() local
365 filled = 4; in vfio_platform_write_mmio()
[all …]
/linux-4.1.27/drivers/usb/serial/
Dkobil_sct.c110 int filled; /* index of the last char in buf */ member
125 priv->filled = 0; in kobil_port_probe()
308 if (count > (KOBIL_BUF_LENGTH - priv->filled)) { in kobil_write()
314 memcpy(priv->buf + priv->filled, buf, count); in kobil_write()
315 usb_serial_debug_data(&port->dev, __func__, count, priv->buf + priv->filled); in kobil_write()
316 priv->filled = priv->filled + count; in kobil_write()
320 …if (((priv->device_type != KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 2) && (priv->filled >= (… in kobil_write()
321 …((priv->device_type == KOBIL_ADAPTER_B_PRODUCT_ID) && (priv->filled > 3) && (priv->filled >= (priv… in kobil_write()
327 todo = priv->filled - priv->cur_pos; in kobil_write()
341 todo = priv->filled - priv->cur_pos; in kobil_write()
[all …]
/linux-4.1.27/net/netfilter/ipset/
Dip_set_bitmap_ipmac.c65 unsigned char filled; member
91 if (elem->filled == MAC_FILLED) in bitmap_ipmac_do_test()
107 return elem->filled == MAC_FILLED; in bitmap_ipmac_gc_test()
113 return elem->filled == MAC_FILLED; in bitmap_ipmac_is_filled()
150 if (elem->filled == MAC_FILLED) { in bitmap_ipmac_do_add()
159 elem->filled = MAC_FILLED; in bitmap_ipmac_do_add()
164 elem->filled = MAC_FILLED; in bitmap_ipmac_do_add()
167 elem->filled = MAC_UNSET; in bitmap_ipmac_do_add()
189 (elem->filled == MAC_FILLED && in bitmap_ipmac_do_list()
/linux-4.1.27/drivers/crypto/caam/
Dcaamrng.c61 struct completion filled; member
110 complete(&bd->filled); in rng_done()
125 init_completion(&bd->filled); in submit_job()
128 complete(&bd->filled); /* don't wait on failed job*/ in submit_job()
156 wait_for_completion(&bd->filled); in caam_read()
249 wait_for_completion(&bd->filled); in caam_cleanup()
266 wait_for_completion(&bd->filled); in caam_init_buf()
/linux-4.1.27/arch/powerpc/boot/dts/
Dmpc836x_rdk.dts45 /* filled by u-boot */
54 /* filled by u-boot */
66 /* filled by u-boot */
109 /* filled by u-boot */
119 /* filled by u-boot */
205 /* filled by u-boot */
279 /* filled by u-boot */
294 /* filled by u-boot */
309 /* filled by u-boot */
324 /* filled by u-boot */
[all …]
Dcurrituck.dts64 reg = <0x0 0x0 0x0 0x0>; // filled in by zImage
141 /* Inbound starting at 0 to memsize filled in by zImage */
178 /* Inbound starting at 0 to memsize filled in by zImage */
215 /* Inbound starting at 0 to memsize filled in by zImage */
Dksi8560.dts148 /* Mac address filled in by bootwrapper */
186 /* Mac address filled in by bootwrapper */
293 /* Mac address filled in by bootwrapper */
Dakebono.dts65 reg = <0x0 0x0 0x0 0x0>; // filled in by zImage
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
Dex.S49 .long exception_error ! reserved_instruction (filled by trap_init) /* 180 */
50 .long exception_error ! illegal_slot_instruction (filled by trap_init) /*1A0*/
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Dgtm.txt20 /* filled by u-boot */
29 /* filled by u-boot */
/linux-4.1.27/drivers/usb/usbip/
Dusbip_protocol.txt123 | | | The unused bytes shall be filled with zero
128 | | | bytes shall be filled with zero bytes.
184 | | | shall be filled with zeros.
205 | | | The unused bytes shall be filled with zero
210 | | | bytes shall be filled with zero bytes.
265 0x28 | 8 | | setup: data bytes for USB setup, filled with
311 0x28 | 8 | | setup: data bytes for USB setup, filled with
/linux-4.1.27/arch/x86/boot/
Dheader.S200 # The offset & size fields are filled in by build.c.
219 # offset & size fields are filled in by build.c.
235 # The offset & size fields are filled in by build.c.
253 # The offset & size fields are filled in by build.c.
/linux-4.1.27/drivers/media/usb/pwc/
Dpwc-if.c225 if (fbuf->filled == 4) in pwc_frame_complete()
240 if (fbuf->filled < pdev->frame_total_size) { in pwc_frame_complete()
242 " discarded.\n", fbuf->filled); in pwc_frame_complete()
325 if (flen + fbuf->filled > pdev->frame_total_size) { in pwc_isoc_handler()
327 flen + fbuf->filled, in pwc_isoc_handler()
331 memcpy(fbuf->data + fbuf->filled, iso_buf, in pwc_isoc_handler()
333 fbuf->filled += flen; in pwc_isoc_handler()
343 pdev->fill_buf->filled = 0; in pwc_isoc_handler()
Dpwc.h216 int filled; /* number of bytes filled */ member
/linux-4.1.27/Documentation/hid/
Dhiddev.txt143 be filled in by the user through HIDIOCSUSAGE calls (below) to fill in
150 must be filled in by the user. The ID can be absolute -- the actual
157 filled into the returned hiddev_report_info structure.
163 be filled in, which should be a number from 0 and maxfield-1, as
169 field have already been filled into the structure.
176 filled in with the report and field information associated with this
203 to read() filled in with the report_type and report_id, but
/linux-4.1.27/Documentation/blockdev/drbd/
Ddrbd-connection-state-overview.dot9 StandAlone [ style=filled,fillcolor=gray,label=StandAlone ]
29 Connected [ label=Connected,style=filled,fillcolor=green,fontcolor=black ]
/linux-4.1.27/Documentation/devicetree/bindings/net/can/
Dfsl-flexcan.txt28 clock-frequency = <200000000>; // filled in by bootloader
/linux-4.1.27/Documentation/infiniband/
Duser_mad.txt69 fields will be filled in with information on the received MAD. For
81 filled into the id field of the MAD, the destination LID should be
82 filled into the lid field, and so on. The send side does support
/linux-4.1.27/drivers/parisc/
Dccio-dma.c905 int coalesced, filled = 0; in ccio_map_sg() local
952 filled = iommu_fill_pdir(ioc, sglist, nents, hint, ccio_io_pdir_entry); in ccio_map_sg()
956 BUG_ON(coalesced != filled); in ccio_map_sg()
958 DBG_RUN_SG("%s() DONE %d mappings\n", __func__, filled); in ccio_map_sg()
960 for (i = 0; i < filled; i++) in ccio_map_sg()
965 return filled; in ccio_map_sg()
Dsba_iommu.c939 int coalesced, filled = 0; in sba_map_sg() local
986 filled = iommu_fill_pdir(ioc, sglist, nents, 0, sba_io_pdir_entry); in sba_map_sg()
1002 DBG_RUN_SG("%s() DONE %d mappings\n", __func__, filled); in sba_map_sg()
1004 return filled; in sba_map_sg()
/linux-4.1.27/Documentation/devicetree/bindings/video/
Dsimple-framebuffer.txt28 It is advised that devicetree files contain pre-filled, disabled framebuffer
34 If pre-filled framebuffer nodes are used, the firmware may need extra
/linux-4.1.27/drivers/atm/
Dambassador.h554 unsigned int filled; member
563 unsigned int filled; member
Dambassador.c618 cq->filled++; in command_do()
653 txq->filled++; in tx_give()
1452 t->pending, t->maximum, t->high, t->filled); in amb_proc_read()
1568 txq->filled = 0; in create_queues()
/linux-4.1.27/Documentation/devicetree/bindings/dma/
Dfsl-mxs-dma.txt7 If a channel is empty/reserved, 0 should be filled in place.
/linux-4.1.27/arch/ia64/hp/common/
Dsba_iommu.c1465 int coalesced, filled = 0; in sba_map_sg_attrs() local
1480 for_each_sg(sglist, sg, nents, filled) { in sba_map_sg_attrs()
1484 return filled; in sba_map_sg_attrs()
1528 filled = sba_fill_pdir(ioc, sglist, nents); in sba_map_sg_attrs()
1540 ASSERT(coalesced == filled); in sba_map_sg_attrs()
1541 DBG_RUN_SG("%s() DONE %d mappings\n", __func__, filled); in sba_map_sg_attrs()
1543 return filled; in sba_map_sg_attrs()
/linux-4.1.27/Documentation/x86/
Dzero-page.txt2 protocol of kernel. These should be filled by bootloader or 16-bit
Dboot.txt227 ("read"), some are expected to be filled out by the bootloader
/linux-4.1.27/Documentation/fmc/
Dcarrier.txt59 The following fields must be filled by the carrier driver before
94 The following fields should not be assigned, because they are filled
99 * fru_id: filled by the bus, parsing the eeprom.
101 * slot_base: filled and used by the driver, if useful to it.
115 * mezzanine_name: filled by fmc-bus during identification.
/linux-4.1.27/Documentation/ABI/obsolete/
Dsysfs-block-zram60 filled pages written to this disk. No memory is allocated for
69 size of data stored in this disk. This excludes zero-filled
/linux-4.1.27/Documentation/hwmon/
Dmax19729 filled with a pointer to a conversion function, defined like:
/linux-4.1.27/fs/ncpfs/
Ddir.c539 ctl.filled = 0; in ncp_readdir()
674 if (!ctl.filled && (ctl.fpos == ctx->pos)) { in ncp_fill_cache()
677 ctl.filled = !dir_emit(ctx, qname.name, qname.len, in ncp_fill_cache()
679 if (!ctl.filled) in ncp_fill_cache()
685 return (ctl.valid || !ctl.filled); in ncp_fill_cache()
Dncplib_kernel.h211 int filled, valid, idx; member
/linux-4.1.27/Documentation/video4linux/
Dpxa_camera.txt23 Once a buffer is filled in the QCI interface, it is marked as "DONE" and
27 Once the last buffer is filled in, the QCI interface stops.
Dmeye.txt108 This ioctl blocks until the buffer is filled and ready
Dvideobuf317 - the one which is filled in the buf_queue() callback. Because starting
Dv4l2-controls.txt357 For try/s_ctrl the new values (i.e. as passed by the user) are filled in and
Dvivid.txt336 Finally, for these inputs the v4l2_timecode struct is filled in in the
Dv4l2-framework.txt1081 in the type and the data fields. The other fields will be filled in by
/linux-4.1.27/Documentation/networking/
Dspider_net.txt43 currently being filled. When this descr is filled, the hardware
91 In the above, the hardware has filled in one descr, number 20. Both
133 this descr to be filled. However, the hardware has skipped this descr,
Dgen_stats.txt64 A struct tc_stats will be filled out during gnet_stats_copy_* calls
Dnfc.txt115 struct correctly filled. All information comes from NFC_EVENT_TARGETS_FOUND
Dieee802154.txt112 Moreover IEEE 802.15.4 device operations structure should be filled.
Dbaycom.txt51 The shift register is filled with 16 bits and an interrupt is signalled.
Ddccp.txt57 be formatted using a cmsg(3) message header filled in as follows:
/linux-4.1.27/Documentation/devicetree/bindings/phy/
Dphy-miphy365x.txt28 registers filled in "reg":
Dphy-miphy28lp.txt26 filled in "reg". It can also contain the offset of the system configuration
Dti-phy.txt65 filled in "reg".
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-block-zram94 filled pages written to this disk. No memory is allocated for
102 size of data stored in this disk. This excludes zero-filled
/linux-4.1.27/Documentation/input/
Dgameport-programming.txt161 pre-filled by cooked data by the caller, max[0..3] should be pre-filled with
Drotary-encoder.txt80 include/linux/rotary-encoder.h and needs to be filled with the number of
Dinput-programming.txt258 When a device has all 3 aforementioned fields filled in, the driver may
/linux-4.1.27/drivers/net/wireless/ath/ath9k/
Dlink.c491 survey->filled |= SURVEY_INFO_NOISE_DBM; in ath_update_survey_nf()
519 survey->filled |= SURVEY_INFO_TIME | in ath_update_survey_stats()
Dchannel.c58 sc->cur_survey->filled &= ~SURVEY_INFO_IN_USE; in ath_set_channel()
63 sc->cur_survey->filled |= SURVEY_INFO_IN_USE; in ath_set_channel()
64 } else if (!(sc->survey[pos].filled & SURVEY_INFO_IN_USE)) { in ath_set_channel()
Dmain.c2150 u32 filled = 0; in fill_chainmask() local
2158 filled |= BIT(i); in fill_chainmask()
2163 return filled; in fill_chainmask()
/linux-4.1.27/Documentation/virtual/kvm/
Dmsr.txt28 whose data will be filled in by the hypervisor. The hypervisor is only
67 whose data will be filled in by the hypervisor periodically. Only one
214 whose data will be filled in by the hypervisor periodically. Only one
Dapi.txt1211 entries in the 'entries' array, which is then filled.
2732 filled.
2835 bytes. This buffer will be filled with storage key data by the ioctl.
3090 true, and should be filled by application code otherwise.
/linux-4.1.27/net/wireless/
Dwext-compat.c1303 if (!(sinfo.filled & BIT(NL80211_STA_INFO_TX_BITRATE))) in cfg80211_wext_giwrate()
1345 if (sinfo.filled & BIT(NL80211_STA_INFO_SIGNAL)) { in cfg80211_wireless_stats()
1359 if (sinfo.filled & BIT(NL80211_STA_INFO_SIGNAL)) { in cfg80211_wireless_stats()
1372 if (sinfo.filled & BIT(NL80211_STA_INFO_RX_DROP_MISC)) in cfg80211_wireless_stats()
1374 if (sinfo.filled & BIT(NL80211_STA_INFO_TX_FAILED)) in cfg80211_wireless_stats()
Dtrace.h891 __field(u32, filled)
904 __entry->filled = pinfo->filled;
917 __entry->filled, __entry->frame_qlen, __entry->sn,
1618 __field(u32, filled)
1631 __entry->filled = info->filled;
1642 __entry->filled, __entry->noise)
Dnl80211.c3697 if (sinfo->filled & BIT(NL80211_STA_INFO_ ## attr) && \ in nl80211_send_station()
3706 if (sinfo->filled & (BIT(NL80211_STA_INFO_RX_BYTES) | in nl80211_send_station()
3712 if (sinfo->filled & (BIT(NL80211_STA_INFO_TX_BYTES) | in nl80211_send_station()
3732 if (sinfo->filled & BIT(NL80211_STA_INFO_CHAIN_SIGNAL)) { in nl80211_send_station()
3738 if (sinfo->filled & BIT(NL80211_STA_INFO_CHAIN_SIGNAL_AVG)) { in nl80211_send_station()
3744 if (sinfo->filled & BIT(NL80211_STA_INFO_TX_BITRATE)) { in nl80211_send_station()
3749 if (sinfo->filled & BIT(NL80211_STA_INFO_RX_BITRATE)) { in nl80211_send_station()
3765 if (sinfo->filled & BIT(NL80211_STA_INFO_BSS_PARAM)) { in nl80211_send_station()
3784 if ((sinfo->filled & BIT(NL80211_STA_INFO_STA_FLAGS)) && in nl80211_send_station()
3797 if (sinfo->filled & BIT(NL80211_STA_INFO_TID_STATS)) { in nl80211_send_station()
[all …]
/linux-4.1.27/Documentation/thermal/
Dnouveau_thermal81 Bug reports should be filled on Freedesktop's bug tracker. Please follow
/linux-4.1.27/drivers/staging/i2o/
DREADME.ioctl213 and SwSize fields of the ExecSwDownload message are filled in with
255 message are filled in with the values of sw->flags, sw->sw_id,
296 are filled in with the values of sw->flags, sw->sw_id, sw->sw_type and
/linux-4.1.27/drivers/staging/wlan-ng/
Dcfg80211.c328 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); in prism2_get_station()
330 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in prism2_get_station()
/linux-4.1.27/Documentation/isdn/
DINTERFACE.CAPI28 capi_driver. This structure must be filled with the name and revision of the
35 struct capi_ctr before they can be used. This structure must be filled with
165 - to be filled in before calling capi_ctr_ready():
DINTERFACE238 parm.num = first bytes filled with (unsigned long)arg
529 para.setup.eazmsn may be filled with an uus1 message of
534 para.setup.eazmsn may be filled with an uus1 message of
DREADME.concap190 Most of this is filled in when the device requests the protocol to
DREADME.sc278 the isdn4linux parameters, (isdn_ctrl, data field) was filled in. In some
DREADME.gigaset152 Upon return, version[] is filled with the requested version information.
/linux-4.1.27/Documentation/trace/
Dftrace-design.txt212 <details to be filled>
279 <details to be filled>
373 <details to be filled>
/linux-4.1.27/arch/mn10300/mm/
DKconfig.cache14 is filled and a cacheline needs to be displaced from the cache to
/linux-4.1.27/Documentation/
Dxillybus.txt281 stops momentarily before a DMA buffer is filled, the intuitive expectation is
287 But the FPGA will submit a partially filled buffer only if directed to do so
292 filled buffers being sent) and a latency held fairly low for tails of data.
371 catch regarding the FPGA to host direction: The FPGA may have filled a DMA
Dpwm.txt96 again with pwmchip_remove(). pwmchip_add() takes a filled in struct
Dcircular-buffers.txt145 allowing the buffer to be filled and emptied at the same time; and
Dmedia-framework.txt58 - model must be filled with the device model name as a NUL-terminated UTF-8
Ddma-buf-sharing.txt52 associated with this buffer. All these fields are filled in struct
Dkernel-parameters.txt3693 be filled with content caused by the warning output.
/linux-4.1.27/drivers/net/ethernet/via/
Dvia-velocity.c561 vptr->rx.dirty = vptr->rx.filled = vptr->rx.curr = 0; in velocity_init_rx_ring_indexes()
1455 if (vptr->rx.filled < 4) in velocity_give_many_rx_descs()
1460 unusable = vptr->rx.filled & 0x0003; in velocity_give_many_rx_descs()
1462 for (avail = vptr->rx.filled & 0xfffc; avail; avail--) { in velocity_give_many_rx_descs()
1467 writew(vptr->rx.filled & 0xfffc, &regs->RBRDU); in velocity_give_many_rx_descs()
1468 vptr->rx.filled = unusable; in velocity_give_many_rx_descs()
1583 vptr->rx.filled += done; in velocity_rx_refill()
Dvia-velocity.h1467 u32 filled; member
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
Dcfg80211.c1804 sinfo->filled |= BIT(NL80211_STA_INFO_RX_BYTES64); in ath6kl_get_station()
1806 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS); in ath6kl_get_station()
1811 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES64); in ath6kl_get_station()
1813 sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS); in ath6kl_get_station()
1817 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in ath6kl_get_station()
1850 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); in ath6kl_get_station()
1855 sinfo->filled |= BIT(NL80211_STA_INFO_BSS_PARAM); in ath6kl_get_station()
/linux-4.1.27/include/net/
Dcfg80211.h605 u32 filled; member
1001 u32 filled; member
1063 u32 filled; member
1184 u32 filled; member
/linux-4.1.27/drivers/staging/rtl8723au/os_dep/
Dioctl_cfg80211.c1065 sinfo->filled = 0; in cfg80211_rtw_get_station()
1093 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in cfg80211_rtw_get_station()
1097 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); in cfg80211_rtw_get_station()
1100 sinfo->filled |= BIT(NL80211_STA_INFO_RX_PACKETS); in cfg80211_rtw_get_station()
1103 sinfo->filled |= BIT(NL80211_STA_INFO_TX_PACKETS); in cfg80211_rtw_get_station()
2359 sinfo.filled = 0; in rtw_cfg80211_indicate_sta_assoc()
/linux-4.1.27/drivers/net/wireless/ath/wil6210/
Dcfg80211.c146 sinfo->filled = BIT(NL80211_STA_INFO_RX_BYTES) | in wil_cid_fill_sinfo()
167 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in wil_cid_fill_sinfo()
/linux-4.1.27/Documentation/frv/
Dmmu-layout.txt201 are cached by the TLB handler. The lower mmap space is filled first, and then the upper mmap space
202 is filled.
/linux-4.1.27/drivers/net/wireless/libertas/
Dcfg.c1619 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BYTES) | in lbs_cfg_get_station()
1632 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in lbs_cfg_get_station()
1639 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); in lbs_cfg_get_station()
/linux-4.1.27/Documentation/s390/
Dkvm.txt50 optimizations. The memory slot doesn't have to be filled
/linux-4.1.27/fs/btrfs/
Dextent_io.h209 unsigned bits, int filled,
Dextent_io.c1932 unsigned bits, int filled, struct extent_state *cached) in test_range_bit() argument
1947 if (filled && state->start > start) { in test_range_bit()
1957 if (!filled) in test_range_bit()
1959 } else if (filled) { in test_range_bit()
1972 if (filled) in test_range_bit()
Dinode.c3583 bool filled = false; in btrfs_read_locked_inode() local
3588 filled = true; in btrfs_read_locked_inode()
3602 if (filled) in btrfs_read_locked_inode()
/linux-4.1.27/Documentation/vm/
Dbalance20 the dma pool, so as to keep the dma pool filled for dma requests (atomic
Dfrontswap.txt182 it was, the page of data is filled from the frontswap backend and
/linux-4.1.27/drivers/net/wireless/ath/carl9170/
Dmain.c1687 survey->filled = SURVEY_INFO_NOISE_DBM; in carl9170_op_get_survey()
1690 survey->filled |= SURVEY_INFO_IN_USE; in carl9170_op_get_survey()
1693 survey->filled |= SURVEY_INFO_TIME | in carl9170_op_get_survey()
/linux-4.1.27/Documentation/blockdev/
Dzram.txt120 zero_pages RO the number of zero filled pages written to this disk
/linux-4.1.27/Documentation/w1/
Dw1.netlink66 being zero and filled type (one of event types) and id:
/linux-4.1.27/drivers/net/wireless/ath/ath5k/
Dmac80211-ops.c687 survey->filled = SURVEY_INFO_NOISE_DBM | in ath5k_get_survey()
/linux-4.1.27/drivers/net/wireless/mwifiex/
Dcfg80211.c1201 sinfo->filled = BIT(NL80211_STA_INFO_RX_BYTES) | BIT(NL80211_STA_INFO_TX_BYTES) | in mwifiex_dump_station_info()
1235 sinfo->filled |= BIT(NL80211_STA_INFO_BSS_PARAM); in mwifiex_dump_station_info()
1312 survey->filled = SURVEY_INFO_NOISE_DBM; in mwifiex_cfg80211_dump_survey()
1327 survey->filled = SURVEY_INFO_NOISE_DBM | in mwifiex_cfg80211_dump_survey()
/linux-4.1.27/arch/arm/boot/dts/
Dimx6qdl-tx6.dtsi33 reg = <0 0>; /* will be filled by U-Boot */
Dimx28-tx28.dts38 reg = <0 0>; /* will be filled in by U-Boot */
/linux-4.1.27/arch/frv/
DKconfig165 is filled and a cacheline needs to be displaced from the cache to
/linux-4.1.27/drivers/net/wireless/p54/
Dmain.c640 survey->filled |= SURVEY_INFO_IN_USE; in p54_get_survey()
Deeprom.c198 priv->survey[*chan_num].filled = SURVEY_INFO_NOISE_DBM | in p54_generate_band()
/linux-4.1.27/drivers/net/wireless/libertas_tf/
Dmain.c541 survey->filled = SURVEY_INFO_NOISE_DBM; in lbtf_op_get_survey()
/linux-4.1.27/firmware/keyspan_pda/
Dkeyspan_pda.S177 .byte 0 ; filled in by the USB core
574 ;; driver are too long and are filled with trailing garbage (including
Dxircom_pgs.S179 .byte 0 ; filled in by the USB core
612 ;; driver are too long and are filled with trailing garbage (including
/linux-4.1.27/Documentation/usb/
Dpersist.txt106 where the "..." should be filled in the with the device's ID. Disable
DURB.txt103 1.4. What has to be filled in?
Dusbmon.txt284 Before the call, hdr, data, and alloc should be filled. Upon return, the area
/linux-4.1.27/Documentation/filesystems/caching/
Dnetfs-api.txt58 This first two fields should be filled in before registration, and the third
59 will be filled in by the registration function; any other fields should just be
121 To define an object, a structure of the following type should be filled out:
/linux-4.1.27/Documentation/RCU/
DlistRCU.txt163 otherwise, the added fields would need to be filled in):
/linux-4.1.27/Documentation/filesystems/
Dlogfs.txt236 (on 32bit) are filled with file data, the high 8TB are used for
Drelay.txt404 sub-buffer. This is filled in for the previous sub-buffer in the
408 known until a sub-buffer is filled. The subbuf_start() callback is
Dseq_file.txt243 kmallocs a zero filled block of memory and stores a pointer to it in the
Dcoda.txt289 is filled in, flags are set to 0, and it is placed on the _p_e_n_d_i_n_g
687 DDeessccrriippttiioonn The structure attr is filled with attributes to be changed
1088 data arguments are filled as usual. flags is not used by Venus.
Dspufs.txt312 gets filled when spu_run returns. It can be one of the following con-
Dntfs.txt93 writing into sparse regions is supported and the holes are filled in with
Dxfs-delayed-logging-design.txt69 filled (a log buffer can hold multiple transactions) or a synchronous operation
/linux-4.1.27/Documentation/filesystems/nfs/
Drpc-cache.txt99 to the cache_head in a sample item with the 'key' fields filled in.
/linux-4.1.27/net/netfilter/ipvs/
DKconfig252 until all slots in the table are filled. When using weights to
/linux-4.1.27/Documentation/sound/alsa/
DOSS-Emulation.txt180 filled. The latter stops writing the silence data ahead
Dhda_codec.txt27 struct should be filled and passed to the constructor:
DALSA-Configuration.txt2271 instead of filled blocks
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/
Dmac80211.c3919 survey->filled = SURVEY_INFO_TIME | in iwl_mvm_mac_get_survey()
3975 sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_RX); in iwl_mvm_mac_sta_statistics()
3979 sinfo->filled |= BIT(NL80211_STA_INFO_BEACON_SIGNAL_AVG); in iwl_mvm_mac_sta_statistics()
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dentry.S289 move.d [$sp+PT_orig_r10], $r10 ; PT_r10 is already filled with -ENOSYS.
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/
Dcfg80211.c2395 sinfo->filled = BIT(NL80211_STA_INFO_INACTIVE_TIME); in brcmf_cfg80211_get_station()
2398 sinfo->filled |= BIT(NL80211_STA_INFO_CONNECTED_TIME); in brcmf_cfg80211_get_station()
2416 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); in brcmf_cfg80211_get_station()
2431 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in brcmf_cfg80211_get_station()
2458 sinfo->filled |= BIT(NL80211_STA_INFO_BSS_PARAM); in brcmf_cfg80211_get_station()
/linux-4.1.27/Documentation/security/
Dkeys.txt1155 the payload blob parameters; quotalen will be filled in with the default
1177 struct as filled in by the preparse() method. It will always be called
1189 blob. If preparse() was supplied then other fields may be filled in also.
1207 blob. If preparse() was supplied then other fields may be filled in also.
/linux-4.1.27/Documentation/nfc/
Dnfc-hci.txt228 receives incoming frames in an skb queue filled from the driver IRQ handler.
/linux-4.1.27/tools/perf/
Ddesign.txt401 Normally a notification is generated for every page filled, however one can
/linux-4.1.27/Documentation/ioctl/
Dcdrom.txt453 cdrom_multisession structure is filled with last_session
Dhdio.txt756 args[] buffer is filled with register values followed by any
/linux-4.1.27/drivers/net/wireless/ti/wl1251/
Dmain.c1360 survey->filled = SURVEY_INFO_NOISE_DBM; in wl1251_op_get_survey()
/linux-4.1.27/Documentation/crypto/
Ddescore-readme.txt301 m is filled in from k so that when one of the routines below
/linux-4.1.27/drivers/net/wireless/
Drndis_wlan.c2481 sinfo->filled |= BIT(NL80211_STA_INFO_TX_BITRATE); in rndis_fill_station_info()
2489 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in rndis_fill_station_info()
Dmwl8k.c3117 survey->filled = SURVEY_INFO_NOISE_DBM | in mwl8k_update_survey()
5413 survey->filled = SURVEY_INFO_NOISE_DBM; in mwl8k_get_survey()
Dmac80211_hwsim.c1738 survey->filled = SURVEY_INFO_NOISE_DBM; in mac80211_hwsim_get_survey()
/linux-4.1.27/Documentation/arm64/
Dacpi_object_usage.txt120 filled in properly -- that the PSCI_COMPLIANT flag is set and that
/linux-4.1.27/Documentation/filesystems/configfs/
Dconfigfs.txt476 callback. If all required attributes are filled to satisfaction, the
/linux-4.1.27/Documentation/netlabel/
Ddraft-ietf-cipso-ipsecurity-01.txt285 octets are zero filled. Ten octets, allowing for 80 categories, was chosen
/linux-4.1.27/drivers/net/wireless/ti/wlcore/
Dmain.c4923 survey->filled = 0; in wl1271_op_get_survey()
5692 sinfo->filled |= BIT(NL80211_STA_INFO_SIGNAL); in wlcore_op_sta_statistics()
/linux-4.1.27/crypto/
DKconfig601 the data lanes filled to get performance benefit. If the data
/linux-4.1.27/Documentation/m68k/
Dkernel-options.txt280 device. <write_thres> sets the number of blocks which must be filled
/linux-4.1.27/drivers/net/wireless/rt2x00/
Drt2800lib.c8023 survey->filled = SURVEY_INFO_TIME | in rt2800_get_survey()
8033 survey->filled |= SURVEY_INFO_IN_USE; in rt2800_get_survey()
/linux-4.1.27/drivers/net/wireless/b43legacy/
Dmain.c3563 survey->filled = SURVEY_INFO_NOISE_DBM; in b43legacy_op_get_survey()
/linux-4.1.27/Documentation/block/
Dbiodoc.txt477 entries with their corresponding dma address mappings filled in at the
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
Dmac.c4649 survey->filled |= SURVEY_INFO_IN_USE; in ath10k_get_survey()
Dwmi.c1696 survey->filled = SURVEY_INFO_TIME | in ath10k_wmi_event_chan_info()
/linux-4.1.27/drivers/scsi/aic7xxx/
Daic79xx.reg3373 * Number of filled FIFO locations.
/linux-4.1.27/Documentation/scsi/
Dncr53c8xx.txt1210 command after having only filled part of the last cache line involved in
/linux-4.1.27/drivers/net/wireless/b43/
Dmain.c5203 survey->filled = SURVEY_INFO_NOISE_DBM; in b43_op_get_survey()
/linux-4.1.27/Documentation/devicetree/
Dbooting-without-of.txt1004 Typically, the value of this field is filled in by the boot