/third_party/openssl/ohos_lite/ |
H A D | e_os.h | 109 # include <sys/stat.h>
|
/third_party/skia/third_party/externals/microhttpd/src/testcurl/https/ |
H A D | test_empty_response.c | 29 #include <sys/stat.h>
|
H A D | test_https_get_select.c | 30 #include <sys/stat.h>
|
H A D | test_https_sni.c | 29 #include <sys/stat.h>
|
/third_party/skia/third_party/externals/microhttpd/src/testspdy/ |
H A D | test_session_timeout.c | 33 #include <sys/stat.h>
|
/third_party/python/Modules/_ctypes/darwin/ |
H A D | dlfcn_simple.c | 36 #include <sys/stat.h>
|
/third_party/pulseaudio/src/tests/ |
H A D | lo-latency-test.c | 26 #include <sys/stat.h>
|
/third_party/skia/tools/skqp/src/ |
H A D | skqp_main.cpp | 9 #include <sys/stat.h>
|
/third_party/toybox/toys/other/ |
H A D | losetup.c | 161 struct stat st; in losetup_main()
|
/third_party/protobuf/src/google/protobuf/testing/ |
H A D | googletest.cc | 38 #include <sys/stat.h>
|
/third_party/python/Lib/ |
H A D | uu.py | 59 mode = os.stat(in_file).st_mode
|
/third_party/selinux/libselinux/src/ |
H A D | sestatus.c | 13 #include <sys/stat.h>
|
/device/soc/rockchip/common/sdk_linux/drivers/devfreq/ |
H A D | devfreq.c | 19 #include <linux/stat.h> 1749 struct devfreq_dev_status stat = devfreq->last_status; in load_show() local 1758 if (stat.total_time < stat.busy_time) { in load_show() 1765 if (!stat.total_time) { in load_show() 1769 len = sprintf(buf, "%lu", stat.busy_time * 0x64 / stat.total_time); in load_show()
|
/kernel/linux/linux-5.10/drivers/dma/ |
H A D | imx-sdma.c | 849 unsigned long stat; in sdma_int_handler() local 851 stat = readl_relaxed(sdma->regs + SDMA_H_INTR); in sdma_int_handler() 852 writel_relaxed(stat, sdma->regs + SDMA_H_INTR); in sdma_int_handler() 854 stat &= ~1; in sdma_int_handler() 856 while (stat) { in sdma_int_handler() 857 int channel = fls(stat) - 1; in sdma_int_handler() 874 __clear_bit(channel, &stat); in sdma_int_handler()
|
/kernel/linux/linux-5.10/drivers/net/dsa/ |
H A D | rtl8366rb.c | 441 u32 stat; in rtl8366rb_irq() local 446 &stat); in rtl8366rb_irq() 451 stat &= RTL8366RB_INTERRUPT_VALID; in rtl8366rb_irq() 452 if (!stat) in rtl8366rb_irq() 454 while (stat) { in rtl8366rb_irq() 455 int line = __ffs(stat); in rtl8366rb_irq() 458 stat &= ~BIT(line); in rtl8366rb_irq()
|
/kernel/linux/linux-5.10/drivers/mmc/host/ |
H A D | rtsx_pci_sdmmc.c | 1159 u8 stat; in sd_wait_voltage_stable_1() local 1171 err = rtsx_pci_read_register(pcr, SD_BUS_STAT, &stat); in sd_wait_voltage_stable_1() 1175 if (stat & (SD_CMD_STATUS | SD_DAT3_STATUS | SD_DAT2_STATUS | in sd_wait_voltage_stable_1() 1192 u8 stat, mask, val; in sd_wait_voltage_stable_2() local 1208 err = rtsx_pci_read_register(pcr, SD_BUS_STAT, &stat); in sd_wait_voltage_stable_2() 1216 if ((stat & mask) != val) { in sd_wait_voltage_stable_2() 1218 "%s: SD_BUS_STAT = 0x%x\n", __func__, stat); in sd_wait_voltage_stable_2() local
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/e1000/ |
H A D | e1000_ethtool.c | 1804 const struct e1000_stats *stat = e1000_gstrings_stats; in e1000_get_ethtool_stats() local 1807 for (i = 0; i < E1000_GLOBAL_STATS_LEN; i++, stat++) { in e1000_get_ethtool_stats() 1810 switch (stat->type) { in e1000_get_ethtool_stats() 1812 p = (char *)netdev + stat->stat_offset; in e1000_get_ethtool_stats() 1815 p = (char *)adapter + stat->stat_offset; in e1000_get_ethtool_stats() 1818 netdev_WARN_ONCE(netdev, "Invalid E1000 stat type: %u index %d\n", in e1000_get_ethtool_stats() 1819 stat->type, i); in e1000_get_ethtool_stats() 1823 if (stat->sizeof_stat == sizeof(u64)) in e1000_get_ethtool_stats()
|
/kernel/linux/linux-5.10/drivers/ide/ |
H A D | ide-tape.c | 521 u8 stat; in idetape_media_access_finished() local 523 stat = hwif->tp_ops->read_status(hwif); in idetape_media_access_finished() 525 if (stat & ATA_DSC) { in idetape_media_access_finished() 526 if (stat & ATA_ERR) { in idetape_media_access_finished() 575 u8 stat; in idetape_do_request() local 595 stat = hwif->tp_ops->read_status(hwif); in idetape_do_request() 607 !(stat & ATA_DSC)) { in idetape_do_request()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/apple/ |
H A D | bmac.c | 680 int i, nb, stat; in bmac_rxdma_intr() local 697 stat = le16_to_cpu(cp->xfer_status); in bmac_rxdma_intr() 699 if ((stat & ACTIVE) == 0) in bmac_rxdma_intr() 753 int stat; in bmac_txdma_intr() local 767 stat = le16_to_cpu(cp->xfer_status); in bmac_txdma_intr() 769 XXDEBUG(("bmac_txdma_xfer_stat=%#0x\n", stat)); in bmac_txdma_intr() 771 if (!(stat & ACTIVE)) { in bmac_txdma_intr()
|
/kernel/linux/linux-5.10/drivers/net/ethernet/tundra/ |
H A D | tsi108_eth.c | 171 printk("TX: head %d, tail %d, free %d, stat %x, estat %x, err %x\n", in dump_eth_one() 177 printk("RX: head %d, tail %d, free %d, stat %x," in dump_eth_one() 448 /* Read a stat counter atomically with respect to carries. 1003 u32 stat = TSI_READ(TSI108_EC_INTSTAT); in tsi108_irq() local 1005 if (!(stat & TSI108_INT_ANY)) in tsi108_irq() 1008 stat &= ~TSI_READ(TSI108_EC_INTMASK); in tsi108_irq() 1010 if (stat & (TSI108_INT_TXQUEUE0 | TSI108_INT_TXIDLE | in tsi108_irq() 1013 if (stat & (TSI108_INT_RXQUEUE0 | TSI108_INT_RXTHRESH | in tsi108_irq() 1018 if (stat & TSI108_INT_SFN) { in tsi108_irq() 1024 if (stat in tsi108_irq() [all...] |
/kernel/linux/linux-5.10/drivers/slimbus/ |
H A D | qcom-ngd-ctrl.c | 757 u32 stat = readl(base + NGD_INT_STAT); in qcom_slim_ngd_interrupt() local 759 if ((stat & NGD_INT_MSG_BUF_CONTE) || in qcom_slim_ngd_interrupt() 760 (stat & NGD_INT_MSG_TX_INVAL) || (stat & NGD_INT_DEV_ERR) || in qcom_slim_ngd_interrupt() 761 (stat & NGD_INT_TX_NACKED_2)) { in qcom_slim_ngd_interrupt() 762 dev_err(ctrl->dev, "Error Interrupt received 0x%x\n", stat); in qcom_slim_ngd_interrupt() 765 writel(stat, base + NGD_INT_CLR); in qcom_slim_ngd_interrupt()
|
/kernel/linux/linux-5.10/drivers/usb/class/ |
H A D | cdc-acm.c | 800 int stat; in acm_tty_write() local 829 stat = usb_autopm_get_interface_async(acm->control); in acm_tty_write() 830 if (stat) { in acm_tty_write() 833 return stat; in acm_tty_write() 842 stat = acm_start_wb(acm, wb); in acm_tty_write() 845 if (stat < 0) in acm_tty_write() 846 return stat; in acm_tty_write()
|
/kernel/linux/linux-5.10/fs/ext2/ |
H A D | inode.c | 1640 int ext2_getattr(const struct path *path, struct kstat *stat, in ext2_getattr() argument 1649 stat->attributes |= STATX_ATTR_APPEND; in ext2_getattr() 1651 stat->attributes |= STATX_ATTR_COMPRESSED; in ext2_getattr() 1653 stat->attributes |= STATX_ATTR_IMMUTABLE; in ext2_getattr() 1655 stat->attributes |= STATX_ATTR_NODUMP; in ext2_getattr() 1656 stat->attributes_mask |= (STATX_ATTR_APPEND | in ext2_getattr() 1662 generic_fillattr(inode, stat); in ext2_getattr()
|
/kernel/linux/linux-6.6/drivers/mmc/host/ |
H A D | rtsx_pci_sdmmc.c | 1189 u8 stat; in sd_wait_voltage_stable_1() local 1201 err = rtsx_pci_read_register(pcr, SD_BUS_STAT, &stat); in sd_wait_voltage_stable_1() 1205 if (stat & (SD_CMD_STATUS | SD_DAT3_STATUS | SD_DAT2_STATUS | in sd_wait_voltage_stable_1() 1222 u8 stat, mask, val; in sd_wait_voltage_stable_2() local 1238 err = rtsx_pci_read_register(pcr, SD_BUS_STAT, &stat); in sd_wait_voltage_stable_2() 1246 if ((stat & mask) != val) { in sd_wait_voltage_stable_2() 1248 "%s: SD_BUS_STAT = 0x%x\n", __func__, stat); in sd_wait_voltage_stable_2() local
|
/kernel/linux/linux-6.6/drivers/net/ethernet/apple/ |
H A D | bmac.c | 676 int i, nb, stat; in bmac_rxdma_intr() local 693 stat = le16_to_cpu(cp->xfer_status); in bmac_rxdma_intr() 695 if ((stat & ACTIVE) == 0) in bmac_rxdma_intr() 749 int stat; in bmac_txdma_intr() local 763 stat = le16_to_cpu(cp->xfer_status); in bmac_txdma_intr() 765 XXDEBUG(("bmac_txdma_xfer_stat=%#0x\n", stat)); in bmac_txdma_intr() 767 if (!(stat & ACTIVE)) { in bmac_txdma_intr()
|