Home
last modified time | relevance | path

Searched refs:stat (Results 1776 - 1800 of 7147) sorted by relevance

1...<<71727374757677787980>>...286

/kernel/linux/linux-6.6/drivers/dma/
H A Dmilbeaut-hdmac.c329 enum dma_status stat; in milbeaut_hdmac_tx_status() local
333 stat = dma_cookie_status(chan, cookie, txstate); in milbeaut_hdmac_tx_status()
335 if (stat == DMA_COMPLETE || !txstate) in milbeaut_hdmac_tx_status()
336 return stat; in milbeaut_hdmac_tx_status()
377 return stat; in milbeaut_hdmac_tx_status()
H A Duniphier-xdmac.c232 u32 stat; in uniphier_xdmac_chan_irq() local
237 stat = readl(xc->reg_ch_base + XDMAC_ID); in uniphier_xdmac_chan_irq()
239 if (stat & XDMAC_ID_ERRIDF) { in uniphier_xdmac_chan_irq()
248 } else if ((stat & XDMAC_ID_ENDIDF) && xc->xd) { in uniphier_xdmac_chan_irq()
259 writel(stat, xc->reg_ch_base + XDMAC_IR); in uniphier_xdmac_chan_irq()
/kernel/linux/linux-6.6/drivers/net/ethernet/chelsio/cxgb/
H A Dvsc7326.c571 static void rmon_update(struct cmac *mac, unsigned int addr, u64 *stat) in rmon_update() argument
576 lo = *stat; in rmon_update()
577 *stat = *stat - lo + v; in rmon_update()
583 *stat += (1ULL << 32); in rmon_update()
/kernel/linux/linux-6.6/drivers/net/phy/
H A Daquantia_main.c196 const struct aqr107_hw_stat *stat = aqr107_hw_stats + index; in aqr107_get_stat() local
197 int len_l = min(stat->size, 16); in aqr107_get_stat()
198 int len_h = stat->size - len_l; in aqr107_get_stat()
202 val = phy_read_mmd(phydev, MDIO_MMD_C22EXT, stat->reg); in aqr107_get_stat()
208 val = phy_read_mmd(phydev, MDIO_MMD_C22EXT, stat->reg + 1); in aqr107_get_stat()
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-mxs.c671 u32 stat = readl(i2c->regs + MXS_I2C_CTRL1) & MXS_I2C_IRQ_MASK; in mxs_i2c_isr() local
673 if (!stat) in mxs_i2c_isr()
676 if (stat & MXS_I2C_CTRL1_NO_SLAVE_ACK_IRQ) in mxs_i2c_isr()
678 else if (stat & (MXS_I2C_CTRL1_EARLY_TERM_IRQ | in mxs_i2c_isr()
684 writel(stat, i2c->regs + MXS_I2C_CTRL1_CLR); in mxs_i2c_isr()
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
H A Djsunit_driver.py23 import stat namespace
205 stat.S_IWUSR | stat.S_IRUSR)
453 stat.S_IWUSR | stat.S_IRUSR)
/test/testfwk/xdevice/src/xdevice/_core/executor/
H A Dsource.py22 import stat namespace
157 modes = stat.S_IWUSR | stat.S_IRUSR
201 modes = stat.S_IWUSR | stat.S_IRUSR
/third_party/eudev/src/libudev/
H A Dlibudev-enumerate.c29 #include <sys/stat.h>
900 struct stat statbuf; in scan_devices_all()
902 if (stat("/sys/subsystem", &statbuf) == 0) { in scan_devices_all()
948 struct stat statbuf; in udev_enumerate_scan_subsystems()
958 if (stat("/sys/subsystem", &statbuf) == 0) in udev_enumerate_scan_subsystems()
/third_party/lzma/CPP/Windows/
H A DFileDir.cpp15 #include <sys/stat.h>
966 struct stat info_file; in MyMoveFile()
967 res = stat(oldFile, &info_file); in MyMoveFile()
1050 struct stat st; in SetDirTime()
1054 int ret = stat(path, &st); in SetDirTime()
1147 struct stat st; in SetFileAttrib_PosixHighDetect()
1161 if (stat(path, &st) != 0) in SetFileAttrib_PosixHighDetect()
1163 TRACE_SetFileAttrib("bad stat()") in SetFileAttrib_PosixHighDetect()
/third_party/node/deps/npm/node_modules/read-package-json/lib/
H A Dread-json.js86 return fs.stat(path.dirname(file), function (err, stat) {
87 if (!err && stat && !stat.isDirectory()) {
480 fs.stat(binPath, (err) => handleExists(relName, !err))
/third_party/python/Modules/
H A D_posixsubprocess.c17 #include <sys/stat.h>
103 struct stat dev_stat; in _is_fdescfs_mounted_on_dev_fd()
104 struct stat dev_fd_stat; in _is_fdescfs_mounted_on_dev_fd()
105 if (stat("/dev", &dev_stat) != 0) in _is_fdescfs_mounted_on_dev_fd()
107 if (stat(FD_DIR, &dev_fd_stat) != 0) in _is_fdescfs_mounted_on_dev_fd()
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/
H A Dnand_base.c3074 int stat; in nand_read_page_swecc() local
3076 stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]); in nand_read_page_swecc()
3077 if (stat < 0) { in nand_read_page_swecc()
3080 mtd->ecc_stats.corrected += stat; in nand_read_page_swecc()
3081 max_bitflips = max_t(unsigned int, max_bitflips, stat); in nand_read_page_swecc()
3174 int stat; in nand_read_subpage() local
3176 stat = chip->ecc.correct(chip, p, &chip->ecc.code_buf[i], in nand_read_subpage()
3178 if (stat == -EBADMSG && in nand_read_subpage()
3181 stat = nand_check_erased_ecc_chunk(p, chip->ecc.size, in nand_read_subpage()
3188 if (stat < in nand_read_subpage()
3247 int stat; nand_read_page_hwecc() local
3307 int stat; nand_read_page_hwecc_oob_first() local
3363 int stat; nand_read_page_syndrome() local
[all...]
/applications/sample/camera/cameraApp/cameraApp/src/main/cpp/
H A Dcamera_manager.cpp17 #include <sys/stat.h>
101 struct stat stStat; in SampleGetThmFromJpg()
102 (void)memset_s(&stStat, sizeof(struct stat), 0, sizeof(struct stat)); in SampleGetThmFromJpg()
/kernel/linux/linux-5.10/arch/powerpc/platforms/cell/spufs/
H A Dbacking_ops.c80 u32 stat; in spu_backing_mbox_stat_poll() local
84 stat = ctx->csa.prob.mb_stat_R; in spu_backing_mbox_stat_poll()
92 if (stat & 0xff0000) in spu_backing_mbox_stat_poll()
102 if (stat & 0x00ff00) in spu_backing_mbox_stat_poll()
/kernel/linux/linux-5.10/arch/sparc/kernel/
H A Dpsycho_common.c257 u16 stat, *addr; in psycho_pcierr_intr_other() local
276 pci_config_read16(addr, &stat); in psycho_pcierr_intr_other()
277 if (stat & (PCI_STATUS_PARITY | in psycho_pcierr_intr_other()
283 pbm->name, stat); in psycho_pcierr_intr_other()
/kernel/linux/linux-5.10/arch/sparc/include/asm/
H A Dfloppy_64.h203 void __iomem *stat = (void __iomem *) fdc_status; in sparc_floppy_irq() local
209 val = readb(stat); in sparc_floppy_irq()
223 *vaddr++ = readb(stat + 1); in sparc_floppy_irq()
228 writeb(data, stat + 1); in sparc_floppy_irq()
/kernel/linux/linux-5.10/drivers/atm/
H A Dnicstar.h559 #define ns_stat_sfbqc_get(stat) (((stat) & NS_STAT_SFBQC_MASK) >> 23)
560 #define ns_stat_lfbqc_get(stat) (((stat) & NS_STAT_LFBQC_MASK) >> 15)
/kernel/linux/linux-5.10/drivers/devfreq/
H A Drk3399_dmc.c166 struct devfreq_dev_status *stat) in rk3399_dmcfreq_get_dev_status()
176 stat->current_frequency = dmcfreq->rate; in rk3399_dmcfreq_get_dev_status()
177 stat->busy_time = edata.load_count; in rk3399_dmcfreq_get_dev_status()
178 stat->total_time = edata.total_count; in rk3399_dmcfreq_get_dev_status()
165 rk3399_dmcfreq_get_dev_status(struct device *dev, struct devfreq_dev_status *stat) rk3399_dmcfreq_get_dev_status() argument
/kernel/linux/linux-6.6/arch/powerpc/platforms/cell/spufs/
H A Dbacking_ops.c80 u32 stat; in spu_backing_mbox_stat_poll() local
84 stat = ctx->csa.prob.mb_stat_R; in spu_backing_mbox_stat_poll()
92 if (stat & 0xff0000) in spu_backing_mbox_stat_poll()
102 if (stat & 0x00ff00) in spu_backing_mbox_stat_poll()
/kernel/linux/linux-6.6/arch/sparc/kernel/
H A Dpsycho_common.c258 u16 stat, *addr; in psycho_pcierr_intr_other() local
277 pci_config_read16(addr, &stat); in psycho_pcierr_intr_other()
278 if (stat & (PCI_STATUS_PARITY | in psycho_pcierr_intr_other()
284 pbm->name, stat); in psycho_pcierr_intr_other()
/kernel/linux/linux-6.6/arch/sparc/include/asm/
H A Dfloppy_64.h203 void __iomem *stat = (void __iomem *) fdc_status; in sparc_floppy_irq() local
209 val = readb(stat); in sparc_floppy_irq()
223 *vaddr++ = readb(stat + 1); in sparc_floppy_irq()
228 writeb(data, stat + 1); in sparc_floppy_irq()
/kernel/linux/linux-5.10/drivers/input/touchscreen/
H A Dsx8654.c134 u8 stat; in sx8650_irq() local
142 stat = i2c_smbus_read_byte_data(ts->client, CMD_READ_REGISTER in sx8650_irq()
145 if (!(stat & SX8650_STAT_CONVIRQ)) { in sx8650_irq()
146 dev_dbg(dev, "%s ignore stat [0x%02x]", __func__, stat); in sx8650_irq()
/kernel/linux/linux-5.10/drivers/net/ethernet/sfc/falcon/
H A Dnic.h447 static inline void ef4_update_diff_stat(u64 *stat, u64 diff) in ef4_update_diff_stat() argument
449 if ((s64)(diff - *stat) > 0) in ef4_update_diff_stat()
450 *stat = diff; in ef4_update_diff_stat()
505 void ef4_nic_fix_nodesc_drop_stat(struct ef4_nic *efx, u64 *stat);
/kernel/linux/linux-5.10/drivers/sbus/char/
H A Ductrl.c264 int stat, incnt, outcnt, bytecnt, intr; in uctrl_do_txn() local
267 stat = sbus_readl(&driver->regs->uctrl_stat); in uctrl_do_txn()
269 sbus_writel(stat, &driver->regs->uctrl_stat); in uctrl_do_txn()
271 dprintk(("interrupt stat 0x%x int 0x%x\n", stat, intr)); in uctrl_do_txn()
/kernel/linux/linux-5.10/sound/soc/meson/
H A Daxg-spdifin.c78 unsigned int stat, mode, rate = 0; in axg_spdifin_get_rate() local
80 regmap_read(priv->map, SPDIFIN_STAT0, &stat); in axg_spdifin_get_rate()
81 mode = FIELD_GET(SPDIFIN_STAT0_MODE, stat); in axg_spdifin_get_rate()
88 if (FIELD_GET(SPDIFIN_STAT0_MAXW, stat) && in axg_spdifin_get_rate()

Completed in 30 milliseconds

1...<<71727374757677787980>>...286