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

1 2 3 4 5 6 7 8 9

  /external/elfutils/0.153/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/0.153/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))
  /external/qemu/distrib/ext4_utils/src/
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);
  /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);
  /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/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
  /external/chromium_org/chrome/test/nacl_test_injection/
find_chrome.py 52 mtime = os.path.getmtime(chrome_filename)
53 if mtime > latest_mtime:
54 latest_mtime = mtime
  /external/chromium_org/sync/engine/
model_type_entity.cc 39 base::Time mtime,
52 mtime,
67 base::Time mtime,
80 mtime_(mtime),
111 base::Time mtime,
121 mtime_ = mtime;
155 request->mtime = mtime_;
entity_tracker.cc 28 base::Time mtime,
40 mtime,
69 base::Time mtime,
81 mtime_(mtime),
121 base::Time mtime,
164 mtime_ = mtime;
entity_tracker.h 48 base::Time mtime,
69 base::Time mtime,
117 base::Time mtime,
model_type_entity.h 49 base::Time mtime,
83 base::Time mtime,
135 base::Time mtime,
  /external/oprofile/daemon/liblegacy/
opd_image.h 44 time_t mtime; member in struct:opd_image
  /external/chromium_org/sync/internal_api/public/
non_blocking_sync_common.h 73 base::Time mtime; member in struct:syncer::CommitRequestData
97 base::Time mtime; member in struct:syncer::UpdateResponseData
  /frameworks/base/core/java/android/app/
IBackupAgent.aidl 115 * @param mtime Last modification time of the file system entity.
124 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/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...]
  /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 788 milliseconds

1 2 3 4 5 6 7 8 9