HomeSort by relevance Sort by last modified time
    Searched full:modtime (Results 26 - 50 of 358) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-18/arch-arm/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-18/arch-mips/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/
utime.h 17 time_t modtime; member in struct:utimbuf
  /prebuilts/go/darwin-x86/src/archive/tar/
tar_test.go 36 if g, e := h.ModTime, fi.ModTime(); !g.Equal(e) {
37 t.Errorf("ModTime = %v; want %v", g, e)
64 if g, e := h.ModTime, fi.ModTime(); !g.Equal(e) {
65 t.Errorf("ModTime = %v; want %v", g, e)
87 func (symlink) ModTime() time.Time { return time.Time{} }
100 ModTime: time.Now(),
103 hdr.ModTime = hdr.ModTime.Add(-time.Duration(hdr.ModTime.Nanosecond()) * time.Nanosecond
    [all...]
  /prebuilts/go/linux-x86/src/archive/tar/
tar_test.go 36 if g, e := h.ModTime, fi.ModTime(); !g.Equal(e) {
37 t.Errorf("ModTime = %v; want %v", g, e)
64 if g, e := h.ModTime, fi.ModTime(); !g.Equal(e) {
65 t.Errorf("ModTime = %v; want %v", g, e)
87 func (symlink) ModTime() time.Time { return time.Time{} }
100 ModTime: time.Now(),
103 hdr.ModTime = hdr.ModTime.Add(-time.Duration(hdr.ModTime.Nanosecond()) * time.Nanosecond
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
utime.h 60 time_t modtime; member in struct:_utimbuf
65 __time32_t modtime; member in struct:__utimbuf32
70 __time64_t modtime; member in struct:__utimbuf64
76 time_t modtime; member in struct:utimbuf
81 __time32_t modtime; member in struct:utimbuf32
  /build/blueprint/choosestage/
choosestage.go 89 time := fileStat.ModTime()
90 if !bootstrapStat.ModTime().After(time) {
96 fmt.Printf("Source: %s\nBuilt: %s\n", bootstrapStat.ModTime(), time)
167 fmt.Printf("For %s:\n file: %s\n time: %s\n", fileName, fileStat.ModTime(), timestampStat.ModTime())
173 if timestampStat.ModTime().After(fileStat.ModTime()) {
  /bionic/libc/kernel/uapi/linux/
utime.h 25 __kernel_time_t modtime; member in struct:utimbuf
  /development/ndk/platforms/android-21/include/linux/
utime.h 25 __kernel_time_t modtime; member in struct:utimbuf
  /external/libnfc-nxp/src/
phLibNfc_discovery.h 23 * $Modtime:: $
phOsalNfc_Msg.h 23 * $Modtime:: $
  /external/llvm/lib/Object/
ArchiveWriter.cpp 103 const sys::TimeValue &ModTime, unsigned UID,
106 printWithSpacePadding(Out, ModTime.toEpochTime(), 12);
115 const sys::TimeValue &ModTime,
119 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size);
123 const sys::TimeValue &ModTime, unsigned UID,
130 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms,
146 const sys::TimeValue &ModTime, unsigned UID, unsigned GID,
149 return printBSDMemberHeader(Out, Name, ModTime, UID, GID, Perms, Size);
151 return printGNUSmallMemberHeader(Out, Name, ModTime, UID, GID, Perms, Size);
154 printRestOfMemberHeader(Out, ModTime, UID, GID, Perms, Size)
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
fs.go 105 // If modtime is not the zero time or Unix epoch, ServeContent
108 // modtime to decide whether the content needs to be sent at all.
117 func ServeContent(w ResponseWriter, req *Request, name string, modtime time.Time, content io.ReadSeeker) {
129 serveContent(w, req, name, modtime, sizeFunc, content)
139 // if modtime.IsZero(), modtime is unknown.
142 func serveContent(w ResponseWriter, r *Request, name string, modtime time.Time, sizeFunc func() (int64, error), content io.ReadSeeker) {
143 if checkLastModified(w, r, modtime) {
146 rangeReq, done := checkETag(w, r, modtime)
263 // modtime is the modification time of the resource to be served, or IsZero()
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
fs.go 105 // If modtime is not the zero time or Unix epoch, ServeContent
108 // modtime to decide whether the content needs to be sent at all.
117 func ServeContent(w ResponseWriter, req *Request, name string, modtime time.Time, content io.ReadSeeker) {
129 serveContent(w, req, name, modtime, sizeFunc, content)
139 // if modtime.IsZero(), modtime is unknown.
142 func serveContent(w ResponseWriter, r *Request, name string, modtime time.Time, sizeFunc func() (int64, error), content io.ReadSeeker) {
143 if checkLastModified(w, r, modtime) {
146 rangeReq, done := checkETag(w, r, modtime)
263 // modtime is the modification time of the resource to be served, or IsZero()
    [all...]
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
utime.h 25 __kernel_time_t modtime; member in struct:utimbuf

Completed in 2345 milliseconds

12 3 4 5 6 7 8 91011>>