Home
last modified time | relevance | path

Searched refs:stat1 (Results 1 – 14 of 14) sorted by relevance

/third_party/boost/boost/process/detail/posix/
Dcompare_handles.hpp27 struct stat stat1, stat2; in compare_handles() local
28 if(fstat(lhs, &stat1) < 0) ::boost::process::detail::throw_last_error("fstat() failed"); in compare_handles()
31 return (stat1.st_dev == stat2.st_dev) && (stat1.st_ino == stat2.st_ino); in compare_handles()
/third_party/python/Tools/scripts/
Dcopytime.py15 stat1 = os.stat(file1)
20 os.utime(file2, (stat1[ST_ATIME], stat1[ST_MTIME]))
/third_party/uboot/u-boot-2020.01/drivers/net/
Dat91_emac.c273 unsigned short stat1; in at91emac_UpdateLinkSpeed() local
275 at91emac_read(emac, CONFIG_DRIVER_AT91EMAC_PHYADDR, MII_BMSR, &stat1); in at91emac_UpdateLinkSpeed()
277 if (!(stat1 & BMSR_LSTATUS)) /* link status up? */ in at91emac_UpdateLinkSpeed()
280 if (stat1 & BMSR_100FULL) { in at91emac_UpdateLinkSpeed()
288 if (stat1 & BMSR_10FULL) { in at91emac_UpdateLinkSpeed()
297 if (stat1 & BMSR_100HALF) { in at91emac_UpdateLinkSpeed()
306 if (stat1 & BMSR_10HALF) { in at91emac_UpdateLinkSpeed()
Dbcm-sf2-eth-gmac.c399 uint32_t stat0 = 0, stat1 = 0; in gmac_check_rx_done() local
419 stat1 = readl(GMAC0_DMA_RX_STATUS1_ADDR) & D64_RS0_CD_MASK; in gmac_check_rx_done()
421 active = ((stat1 - offset) & D64_RS0_CD_MASK) / sizeof(dma64dd_t); in gmac_check_rx_done()
447 stat1 = readl(GMAC0_DMA_RX_STATUS1_ADDR); in gmac_check_rx_done()
450 (uint32_t)bufp, index, buflen, stat0, stat1); in gmac_check_rx_done()
Dpic32_eth.h154 u32 stat1; /* transmit/receive packet status */ member
Dpic32_eth.c295 rxd->stat1 = 0; in pic32_rx_desc_init()
/third_party/python/Lib/test/
Dtest_genericpath.py261 stat1 = os.stat(test_fn1)
262 self.assertTrue(self.pathmodule.samestat(stat1, os.stat(test_fn1)))
266 self.assertFalse(self.pathmodule.samestat(stat1, stat2))
Dtest_os.py3877 def assert_stat_equal(self, stat1, stat2, skip_fields): argument
3879 for attr in dir(stat1):
3884 self.assertEqual(getattr(stat1, attr),
3886 (stat1, stat2, attr))
3888 self.assertEqual(stat1, stat2)
/third_party/uboot/u-boot-2020.01/arch/arm/include/asm/arch-hi6220/
Dhi6220.h42 u32 stat1; /*0x94*/ member
Dhi6220_regs_alwayson.h20 u32 stat1; member
/third_party/uboot/u-boot-2020.01/include/andestech/
Dandes_pcu.h18 unsigned int stat1; /* PCSx Status 1 */ member
/third_party/openssl/
DConfigure3450 my @stat1 = stat($_[1]); # Second argument
3453 die "Couldn't stat $_[1]" unless @stat1;
3456 return 0 unless ($stat0[0] == $stat1[0]);
3459 return 0 unless ($stat0[1] eq $stat1[1]);
/third_party/python/Doc/library/
Dos.path.rst411 .. function:: samestat(stat1, stat2)
413 Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same file.
/third_party/sqlite/src/
Dsqlite3.c208625 SessionStat1Ctx stat1 = {{0,0,0,0,0},0};
208646 stat1.hook = pSession->hook;
208647 stat1.pSession = pSession;
208648 pSession->hook.pCtx = (void*)&stat1;
208759 pSession->hook = stat1.hook;