HomeSort by relevance Sort by last modified time
    Searched refs:mtime (Results 26 - 50 of 209) sorted by null

12 3 4 5 6 7 8 9

  /external/u-boot/fs/btrfs/
btrfs.c 32 time_t mtime; local
40 mtime = inode.mtime.sec;
41 ctime_r(&mtime, filetime);
  /external/autotest/client/site_tests/login_OwnershipNotRetaken/
login_OwnershipNotRetaken.py 51 mtime = os.stat(constants.OWNER_KEY_FILE).st_mtime
60 # Checking mtime to see if key file was touched during second sign in.
61 if os.stat(constants.OWNER_KEY_FILE).st_mtime > mtime:
  /external/webrtc/tools/valgrind-webrtc/
webrtc_tests.sh 77 # -mtime +1 <- only print files modified more than 24h ago,
82 \) -mtime +1 -print0 | xargs -0 rm -rf
  /external/ltp/testcases/kernel/syscalls/utimensat/
utimensat_tests.sh 82 # Create file and make atime and mtime zero.
90 read res atime mtime < $RESULT_FILE
92 test $atime -ne 0 || test $mtime != 0; then
143 read res atime mtime < $RESULT_FILE
147 echo "RESULT: $res $atime $mtime"
157 # and mtime were updated / not updated, as expected.
173 if test $mtime -eq 0; then
174 echo "mtime should have changed, but did not"
178 if test $mtime -ne 0; then
179 echo "mtime should not have changed, but did
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_zipimport.py 28 def make_pyc(co, mtime):
30 if type(mtime) is type(0.0):
32 if mtime < 0x7fffffff:
33 mtime = int(mtime)
35 mtime = int(-0x100000000L + long(mtime))
36 pyc = imp.get_magic() + struct.pack("<i", int(mtime)) + data
72 for name, (mtime, data) in files.items():
73 zinfo = ZipInfo(name, time.localtime(mtime))
    [all...]
test_compileall.py 30 mtime = int(os.stat(self.source_path).st_mtime)
31 compare = struct.pack('<4sl', imp.get_magic(), mtime)
51 # Test a change in mtime leads to a new .pyc.
55 # Test a change in mtime leads to a new .pyc.
  /external/python/cpython2/Lib/test/
test_zipimport.py 28 def make_pyc(co, mtime):
30 if type(mtime) is type(0.0):
32 if mtime < 0x7fffffff:
33 mtime = int(mtime)
35 mtime = int(-0x100000000L + long(mtime))
36 pyc = imp.get_magic() + struct.pack("<i", int(mtime)) + data
72 for name, (mtime, data) in files.items():
73 zinfo = ZipInfo(name, time.localtime(mtime))
    [all...]
test_gzip.py 240 mtime = 123456789
241 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
246 self.assertTrue(hasattr(fRead, 'mtime'))
247 self.assertEqual(fRead.mtime, mtime)
250 mtime = 123456789
252 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
268 self.assertEqual(mtimeBytes, struct.pack('<i', mtime)) # little-endia
    [all...]
  /external/openssh/
sftp-common.c 62 a->mtime = 0;
80 a->mtime = st->st_mtime;
99 st->st_mtime = a->mtime;
127 (r = sshbuf_get_u32(b, &a->mtime)) != 0)
175 (r = sshbuf_put_u32(b, a->mtime)) != 0)
  /external/squashfs-tools/squashfs-tools/
squashfs_compat.h 79 int mtime; member in struct:squashfs_base_inode_header_3
88 int mtime; member in struct:squashfs_ipc_inode_header_3
98 int mtime; member in struct:squashfs_dev_inode_header_3
109 int mtime; member in struct:squashfs_symlink_inode_header_3
121 int mtime; member in struct:squashfs_reg_inode_header_3
135 int mtime; member in struct:squashfs_lreg_inode_header_3
150 int mtime; member in struct:squashfs_dir_inode_header_3
164 int mtime; member in struct:squashfs_ldir_inode_header_3
272 SQUASHFS_SWAP((s)->mtime, d, 32, 32);\
484 int mtime; member in struct:squashfs_reg_inode_header_1
497 int mtime; member in struct:squashfs_dir_inode_header_1
617 int mtime; member in struct:squashfs_reg_inode_header_2
632 int mtime; member in struct:squashfs_dir_inode_header_2
643 int mtime; member in struct:squashfs_ldir_inode_header_2
    [all...]
  /external/python/cpython2/Demo/rpc/
nfsclient.py 37 mode, uid, gid, size, atime, mtime = sa
43 self.pack_timeval(mtime)
111 mtime = self.unpack_timeval()
114 rdev, blocks, fsid, fileid, atime, mtime, ctime)
  /external/python/cpython3/Tools/scripts/
pathfix.py 132 mtime = None
137 mtime = statbuf.st_mtime
160 if atime and mtime:
162 os.utime(filename, (atime, mtime))
  /external/strace/
oldstat.c 57 .mtime = sign_extend_unsigned_to_ll(buf.st_mtime)
print_struct_stat.c 81 PRINT_ST_TIME(mtime);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
FSProxy.py 157 def mtime(self, name): member in class:FSProxyLocal
164 mtime = time.localtime(os.stat(name)[ST_MTIME])
165 return size, mtime
170 mtime = time.localtime(os.stat(name)[ST_MTIME])
171 return sum, size, mtime
191 return self._list(self.mtime, list)
217 return self.dict(self.mtime, list)
  /external/python/cpython2/Demo/pdist/
FSProxy.py 157 def mtime(self, name): member in class:FSProxyLocal
164 mtime = time.localtime(os.stat(name)[ST_MTIME])
165 return size, mtime
170 mtime = time.localtime(os.stat(name)[ST_MTIME])
171 return sum, size, mtime
191 return self._list(self.mtime, list)
217 return self.dict(self.mtime, list)
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DumpArchiveEntry.java 188 private long mtime; field in class:DumpArchiveEntry
606 return new Date(mtime);
725 * @param mtime the last modified time
727 public void setLastModifiedDate(final Date mtime) {
728 this.mtime = mtime.getTime();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gzip.py 46 compresslevel=9, fileobj=None, mtime=None):
73 The mtime argument is an optional numeric timestamp to be written
124 self.mtime = mtime
165 mtime = self.mtime
166 if mtime is None:
167 mtime = time.time()
168 write32u(self.fileobj, long(mtime))
186 self.mtime = read32(self.fileobj)
    [all...]
  /external/python/cpython2/Lib/
gzip.py 46 compresslevel=9, fileobj=None, mtime=None):
74 The mtime argument is an optional numeric timestamp to be written
132 self.mtime = mtime
180 mtime = self.mtime
181 if mtime is None:
182 mtime = time.time()
183 write32u(self.fileobj, long(mtime))
201 self.mtime = read32(self.fileobj
    [all...]
  /external/python/cpython3/Modules/
zipimport.c 1474 time_t mtime; local
1558 time_t mtime = 0; local
    [all...]
  /external/toybox/toys/pending/
tar.c 25 m Don't restore mtime
53 char name[100], mode[8], uid[8], gid[8],size[12], mtime[12], chksum[8], member in struct:tar_hdr
64 time_t mtime; member in struct:file_header
139 sprintf(tmp.mtime, "%0*d", (int)sizeof(tmp.mtime)-1, 0);
199 itoo(hdr.mtime, sizeof(hdr.mtime), st->st_mtime);
340 sprintf(buf, "%0o", (int)file_hdr->mtime);
453 //apply mtime
455 struct timeval times[2] = {{file_hdr->mtime, 0},{file_hdr->mtime, 0}}
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/zlib/
minigzip.py 30 mtime = statval[8]
31 write32(output, mtime)
  /external/autotest/venv/lucifer/
leasing.py 61 # Seconds after a lease file's mtime where its owning process is not
93 mtime = stat_result.st_mtime_ns / (10 ** 9)
94 if time.time() - mtime < self._FRESH_LIMIT:
  /external/e2fsprogs/util/
gen-tarball.in 47 --numeric-owner --mtime="@${SOURCE_DATE_EPOCH}" $base_e2fsprogs) \
  /external/python/cpython2/Demo/zlib/
minigzip.py 30 mtime = statval[8]
31 write32(output, mtime)

Completed in 1832 milliseconds

12 3 4 5 6 7 8 9