HomeSort by relevance Sort by last modified time
    Searched refs:mtime (Results 1 - 25 of 190) sorted by null

1 2 3 4 5 6 7 8

  /external/elfutils/libdw/
dwarf_filesrc.c 59 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime,
65 if (mtime != NULL)
66 *mtime = file->info[idx].mtime;
dwarf_linesrc.c 59 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length)
70 if (mtime != NULL)
71 *mtime = line->files->info[line->file].mtime;
  /external/elfutils/libdwfl/
dwfl_lineinfo.c 55 Dwarf_Word *mtime, Dwarf_Word *length)
71 if (mtime != NULL)
72 *mtime = file->mtime;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dircache.py 28 mtime = os.stat(path).st_mtime
29 if mtime != cached_mtime:
32 cache[path] = mtime, list
linecache.py 56 size, mtime, lines, fullname = cache[filename]
57 if mtime is None:
64 if size != stat.st_size or mtime != stat.st_mtime:
133 size, mtime = stat.st_size, stat.st_mtime
134 cache[filename] = size, mtime, lines, fullname
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dircache.py 28 mtime = os.stat(path).st_mtime
29 if mtime != cached_mtime:
32 cache[path] = mtime, list
linecache.py 56 size, mtime, lines, fullname = cache[filename]
57 if mtime is None:
64 if size != stat.st_size or mtime != stat.st_mtime:
133 size, mtime = stat.st_size, stat.st_mtime
134 cache[filename] = size, mtime, lines, fullname
  /external/chromium_org/tools/gyp/test/mac/
gyptest-copies.py 39 mtime = os.path.getmtime(dep_bundle) variable
42 os.utime(dep_bundle, (atime + i * 1000, mtime + i * 1000))
  /system/extras/ext4_utils/
contents.h 31 u32 mtime; member in struct:dentry
40 int inode_set_permissions(u32 inode_num, u16 mode, u16 uid, u16 gid, u32 mtime);
  /external/openssh/
sftp-common.h 41 u_int32_t mtime; member in struct:Attrib
sftp-common.c 60 a->mtime = 0;
78 a->mtime = st->st_mtime;
97 st->st_mtime = a->mtime;
119 a.mtime = buffer_get_int(b);
153 buffer_put_int(b, a->mtime);
  /external/oprofile/daemon/
opd_events.h 45 int spu_samples, uint64_t embed_offset, time_t mtime);
  /external/oprofile/libop/
op_sample_file.h 31 time_t mtime; member in struct:opd_header
  /ndk/sources/host-tools/make-3.81/
remake.c 88 #define MTIME(file) (rebuilding_makefiles ? file_mtime_no_search (file) \
184 FILE_TIMESTAMP mtime = MTIME (file);
188 mtime != file->mtime_before_update)
476 FILE_TIMESTAMP mtime;
482 mtime = file_mtime (d->file);
543 d->changed = ((file_mtime (d->file) != mtime)
544 /* || (mtime == NONEXISTENT_MTIME) */);
560 FILE_TIMESTAMP mtime = file_mtime (d->file);
598 || file_mtime (d->file) != mtime);
183 FILE_TIMESTAMP mtime = MTIME (file); local
473 FILE_TIMESTAMP mtime; local
557 FILE_TIMESTAMP mtime = file_mtime (d->file); local
946 FILE_TIMESTAMP mtime; local
957 FILE_TIMESTAMP mtime; local
1146 FILE_TIMESTAMP mtime; local
1357 FILE_TIMESTAMP mtime; local
1472 FILE_TIMESTAMP mtime; local
    [all...]
  /external/chromium_org/chrome/test/nacl_test_injection/
find_chrome.py 54 mtime = os.path.getmtime(chrome_filename)
55 if mtime > latest_mtime:
56 latest_mtime = mtime
  /external/oprofile/daemon/liblegacy/
opd_image.h 44 time_t mtime; member in struct:opd_image
  /frameworks/base/core/java/android/app/
IBackupAgent.aidl 114 * @param mtime Last modification time of the file system entity.
117 int type, String domain, String path, long mode, long mtime,
  /frameworks/base/core/java/com/android/internal/backup/
IObbBackupService.aidl 43 long fileSize, int type, in String path, long mode, long mtime,
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPv3FileAttributes.java 74 * The MTIME attribute. Represented as seconds from Jan 1, 1970 in UTC.
77 public Integer mtime = null; field in class:SFTPv3FileAttributes
  /system/extras/fatblock/
fatblock.h 51 time_t mtime; member in struct:file
  /external/oprofile/libpp/
op_header.cpp 45 if (h1.mtime != h2.mtime) {
48 << h1.mtime << ", " << h2.mtime << ") for "
92 if (newmtime == header.mtime)
100 // Files we couldn't get mtime of have zero mtime
101 if (!header.mtime) {
102 // FIXME: header.mtime for JIT sample files is 0. The problem could be that
  /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...]
test_gzip.py 197 mtime = 123456789
198 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
203 self.assertTrue(hasattr(fRead, 'mtime'))
204 self.assertEqual(fRead.mtime, mtime)
207 mtime = 123456789
209 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
225 self.assertEqual(mtimeBytes, struct.pack('<i', mtime)) # little-endia
    [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...]
test_gzip.py 197 mtime = 123456789
198 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
203 self.assertTrue(hasattr(fRead, 'mtime'))
204 self.assertEqual(fRead.mtime, mtime)
207 mtime = 123456789
209 with gzip.GzipFile(self.filename, 'w', mtime = mtime) as fWrite:
225 self.assertEqual(mtimeBytes, struct.pack('<i', mtime)) # little-endia
    [all...]

Completed in 1515 milliseconds

1 2 3 4 5 6 7 8