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

12 3 4 5 6 7 8 91011>>

  /cts/tests/backup/app/src/android/backup/app/
FullBackupBackupAgent.java 55 File destination, int type, long mode, long mtime) throws IOException {
57 super.onRestoreFile(data, size, destination, type, mode, mtime);
  /external/libyuv/files/tools_libyuv/valgrind/
libyuv_tests.sh 90 # -mtime +1 <- only print files modified more than 24h ago,
95 \) -mtime +1 -print0 | xargs -0 rm -rf
  /external/squashfs-tools/kernel/fs/squashfs/
squashfs_fs.h 251 __le32 mtime; member in struct:squashfs_base_inode
260 __le32 mtime; member in struct:squashfs_ipc_inode
270 __le32 mtime; member in struct:squashfs_dev_inode
281 __le32 mtime; member in struct:squashfs_symlink_inode
293 __le32 mtime; member in struct:squashfs_reg_inode
307 __le32 mtime; member in struct:squashfs_lreg_inode
324 __le32 mtime; member in struct:squashfs_dir_inode
338 __le32 mtime; member in struct:squashfs_ldir_inode
  /external/squashfs-tools/kernel/include/linux/
squashfs_fs.h 250 __le32 mtime; member in struct:squashfs_base_inode
259 __le32 mtime; member in struct:squashfs_ipc_inode
269 __le32 mtime; member in struct:squashfs_dev_inode
280 __le32 mtime; member in struct:squashfs_symlink_inode
292 __le32 mtime; member in struct:squashfs_reg_inode
306 __le32 mtime; member in struct:squashfs_lreg_inode
323 __le32 mtime; member in struct:squashfs_dir_inode
337 __le32 mtime; member in struct:squashfs_ldir_inode
  /frameworks/base/core/java/com/android/internal/backup/
IObbBackupService.aidl 43 long fileSize, int type, in String path, long mode, long mtime,
  /external/python/cpython3/Lib/
linecache.py 26 # or a tuple (size, mtime, lines, fullname) once loaded.
70 size, mtime, lines, fullname = entry
71 if mtime is None:
78 if size != stat.st_size or mtime != stat.st_mtime:
142 size, mtime = stat.st_size, stat.st_mtime
143 cache[filename] = size, mtime, lines, fullname
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_gzip.py 190 mtime = 123456789
191 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
196 self.assertTrue(hasattr(fRead, 'mtime'))
197 self.assertEqual(fRead.mtime, mtime)
200 mtime = 123456789
202 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
218 self.assertEqual(mtimeBytes, struct.pack('<i', mtime)) # little-endian
    [all...]
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...]
  /prebuilts/go/darwin-x86/src/net/
hosts.go 47 mtime time.Time
58 mtime, size, err := stat(hp)
59 if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {
97 hosts.mtime = mtime
  /prebuilts/go/linux-x86/src/net/
hosts.go 47 mtime time.Time
58 mtime, size, err := stat(hp)
59 if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {
97 hosts.mtime = mtime
  /external/elfutils/tests/
dwfllines.c 68 Dwarf_Word mtime; local
71 &mtime, &length);
140 assert (mtime == dw_mtime);
148 i, addr, src, lineno, colno, mtime, length,
  /external/python/cpython3/Tools/scripts/
pathfix.py 126 mtime = None
131 mtime = statbuf.st_mtime
148 if atime and mtime:
150 os.utime(filename, (atime, mtime))
  /external/autotest/client/site_tests/login_OwnershipNotRetaken/
login_OwnershipNotRetaken.py 49 mtime = os.stat(constants.OWNER_KEY_FILE).st_mtime
58 # Checking mtime to see if key file was touched during second sign in.
59 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
  /frameworks/base/core/java/android/app/
IBackupAgent.aidl 151 * @param mtime Last modification time of the file system entity.
160 int type, String domain, String path, long mode, long mtime,
  /frameworks/base/services/backup/java/com/android/server/backup/
FileMetadata.java 37 public long mtime; // last mod time, UTC time_t (actually int) field in class:FileMetadata
76 Date stamp = new Date(mtime);
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/cache/
cache_test.go 217 checkTime := func(name string, mtime int64) {
224 if info.ModTime().Unix() != mtime {
225 t.Fatalf("%s mtime = %d, want %d", name, info.ModTime().Unix(), mtime)
233 mtime := now
234 checkTime(fmt.Sprintf("%x-a", id), mtime)
235 checkTime(fmt.Sprintf("%x-d", entry.OutputID), mtime)
240 checkTime(fmt.Sprintf("%x-a", id), mtime)
241 checkTime(fmt.Sprintf("%x-d", entry.OutputID), mtime)
297 // The c.Get(id) refreshed id's mtime again
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/cache/
cache_test.go 217 checkTime := func(name string, mtime int64) {
224 if info.ModTime().Unix() != mtime {
225 t.Fatalf("%s mtime = %d, want %d", name, info.ModTime().Unix(), mtime)
233 mtime := now
234 checkTime(fmt.Sprintf("%x-a", id), mtime)
235 checkTime(fmt.Sprintf("%x-d", entry.OutputID), mtime)
240 checkTime(fmt.Sprintf("%x-a", id), mtime)
241 checkTime(fmt.Sprintf("%x-d", entry.OutputID), mtime)
297 // The c.Get(id) refreshed id's mtime again
    [all...]
  /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 239 mtime = 123456789
240 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
245 self.assertTrue(hasattr(fRead, 'mtime'))
246 self.assertEqual(fRead.mtime, mtime)
249 mtime = 123456789
251 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
267 self.assertEqual(mtimeBytes, struct.pack('<i', mtime)) # little-endia
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/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...]
  /prebuilts/gdb/linux-x86/lib/python2.7/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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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...]

Completed in 1296 milliseconds

12 3 4 5 6 7 8 91011>>