Searched refs:mtime (Results 1 - 25 of 54) sorted by relevance

123

/haiku-fatelf/src/bin/bash/lib/sh/
H A Dmailstat.c65 time_t atime, mtime; local
67 atime = mtime = 0;
146 if (st_tmp.st_mtime > mtime)
147 mtime = st_tmp.st_mtime;
154 if (mtime)
155 st_ret.st_mtime = mtime;
/haiku-fatelf/headers/build/os/storage/
H A DStatable.h41 status_t GetModificationTime(time_t *mtime) const;
42 status_t SetModificationTime(time_t mtime);
/haiku-fatelf/headers/os/storage/
H A DStatable.h50 status_t GetModificationTime(time_t *mtime) const;
51 status_t SetModificationTime(time_t mtime);
/haiku-fatelf/src/build/libbe/storage/
H A DStatable.cpp195 \param mtime a pointer to a variable to be set to the result
199 BStatable::GetModificationTime(time_t *mtime) const
201 status_t error = (mtime ? B_OK : B_BAD_VALUE);
206 *mtime = statData.st_mtime;
211 \param mtime the new modification time
215 BStatable::SetModificationTime(time_t mtime) argument
218 statData.st_mtime = mtime;
/haiku-fatelf/src/tests/kits/storage/
H A DStatableTest.cpp108 time_t mtime; local
121 CPPUNIT_ASSERT( statable->GetModificationTime(&mtime) == B_OK );
134 CPPUNIT_ASSERT( mtime == st.st_mtime );
151 time_t mtime; local
160 CPPUNIT_ASSERT( statable->GetModificationTime(&mtime) == B_NO_INIT );
201 time_t mtime = 1234567; local
210 CPPUNIT_ASSERT( statable->SetModificationTime(mtime) == B_OK );
219 CPPUNIT_ASSERT( mtime == st.st_mtime );
233 time_t mtime = 1234567; local
239 CPPUNIT_ASSERT( statable->SetModificationTime(mtime) !
[all...]
/haiku-fatelf/src/bin/bash/
H A Dmailcheck.c263 time_t mtime; local
268 mtime = mailfiles[i]->mod_time;
271 return (mtime != finfo.st_mtime);
438 #define mtime mailfiles[i]->mod_time macro
452 if ((atime >= mtime) && !file_is_bigger)
457 if (use_user_notification == 0 && (atime < mtime) && file_is_bigger)
460 #undef mtime macro
/haiku-fatelf/src/apps/packageinstaller/
H A DPackageItem.h77 uint8 type, uint32 ctime, uint32 mtime,
84 uint8 type, uint32 ctime, uint32 mtime,
119 uint8 type, uint32 ctime, uint32 mtime,
153 uint8 type, uint32 ctime, uint32 mtime,
176 uint32 mtime, uint32 mode, uint64 offset = 0,
H A DPackageItem.cpp147 uint32 ctime, uint32 mtime, uint64 offset, uint64 size)
149 SetTo(parent, path, type, ctime, mtime, offset, size);
160 uint32 mtime, uint64 offset, uint64 size)
169 fModificationTime = mtime;
698 uint8 type, uint32 ctime, uint32 mtime, uint64 offset, uint64 size)
700 PackageItem(parent, path, type, ctime, mtime, offset, size)
753 uint32 ctime, uint32 mtime, uint64 offset, uint64 size,
757 PackageItem(parent, path, type, ctime, mtime, offset, size),
919 const BString &link, uint8 type, uint32 ctime, uint32 mtime,
922 PackageItem(parent, path, type, ctime, mtime, offse
146 PackageItem(BFile *parent, const BString &path, uint8 type, uint32 ctime, uint32 mtime, uint64 offset, uint64 size) argument
159 SetTo(BFile *parent, const BString &path, uint8 type, uint32 ctime, uint32 mtime, uint64 offset, uint64 size) argument
697 PackageDirectory(BFile *parent, const BString &path, uint8 type, uint32 ctime, uint32 mtime, uint64 offset, uint64 size) argument
752 PackageFile(BFile *parent, const BString &path, uint8 type, uint32 ctime, uint32 mtime, uint64 offset, uint64 size, uint64 originalSize, uint32 platform, const BString &mime, const BString &signature, uint32 mode) argument
918 PackageLink(BFile *parent, const BString &path, const BString &link, uint8 type, uint32 ctime, uint32 mtime, uint32 mode, uint64 offset, uint64 size) argument
[all...]
H A DPackageInfo.cpp623 uint32 itemGroups = 0, path = 0, cust = 0, ctime = 0, mtime = 0; local
647 mtime = 0; \
739 fPackageFile->Read(&mtime, 4);
740 swap_data(B_UINT32_TYPE, &mtime, sizeof(uint32),
890 mtime, offset, size, originalSize, 0, mimeString,
954 pathType, ctime, mtime, offset, size);
999 localType, ctime, mtime, mode, offset, size);
/haiku-fatelf/src/kits/storage/
H A DStatable.cpp225 \param mtime a pointer to a variable to be set to the result
229 BStatable::GetModificationTime(time_t *mtime) const
231 status_t error = (mtime ? B_OK : B_BAD_VALUE);
236 *mtime = statData.st_mtime;
241 \param mtime the new modification time
245 BStatable::SetModificationTime(time_t mtime) argument
248 statData.st_mtime = mtime;
/haiku-fatelf/src/bin/gdb/gdb/
H A Dcorefile.c156 long mtime;
165 mtime = bfd_get_mtime (exec_bfd);
168 if (mtime && mtime != st.st_mtime)
154 long mtime; local
H A Dobjfiles.h255 long mtime; member in struct:objfile
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dstat_util.cpp21 myst->mtime = st->st_mtime;
39 st->st_mtime = myst->mtime;
223 myst->mtime = st->st_mtime;
241 st->st_mtime = myst->mtime;
H A Drootfs.c53 time_t mtime; member in struct:vnode
452 newdir->mtime = olddir->mtime = time(NULL);
725 st->atime = st->ctime = st->mtime = node->mtime;
751 node->mtime = st->mtime;
753 node->mtime = st->atime;
814 root->mtime = time(NULL);
970 dir->mtime
[all...]
H A Dcompat.h147 time_t mtime; /* last modification time */ member in struct:my_stat
/haiku-fatelf/src/apps/mail/
H A DWIndex.cpp88 time_t mtime; local
91 dataFile->GetModificationTime(&mtime);
105 if (mtime == modified) {
121 &mtime, 4);
/haiku-fatelf/src/bin/rcs/
H A Dci.c301 time_t mtime, wtime; variable
778 mtime = mtimeflag ? wtime : (time_t)-1;
781 if (changework || (r=fixwork(newworkmode,mtime)) != 0) {
804 if ((r=fixwork(newworkmode,mtime)) == 0)
812 workname, 1, newworkmode, mtime
1173 fixwork(mode_t newworkmode, time_t mtime) argument
1176 fixwork(newworkmode, mtime)
1178 time_t mtime;
1184 || setmtime(workname, mtime) != 0
H A Drcsedit.c1570 int set_mode, mode_t mode, time_t mtime
1574 chnamemod(fromp, from, to, set_mode, mode, mtime)
1576 int set_mode; mode_t mode; time_t mtime;
1582 * If MTIME is not -1, change its mtime to MTIME before renaming.
1620 if (setmtime(from, mtime) != 0)
1665 setmtime(file, mtime)
1667 time_t mtime;
1671 if (mtime == -1)
1674 amtime.modtime = mtime;
/haiku-fatelf/src/bin/gdb/bfd/
H A Dbfdio.c390 return abfd->mtime;
398 abfd->mtime = buf.st_mtime; /* Save value in case anyone wants it */
/haiku-fatelf/src/bin/network/ftp/
H A Dfetch.c485 time_t mtime; local
564 mtime = -1;
578 mtime = sb.st_mtime;
940 mtime = timegm(&parsed);
941 if (debug && mtime != -1) {
944 ctime(&mtime));
1240 if (closefunc == fclose && mtime != -1) {
1244 tval[1].tv_sec = mtime;
1252 asctime(localtime(&mtime)));
/haiku-fatelf/src/bin/coreutils/src/
H A Dtest.c159 get_mtime (char const *filename, struct timespec *mtime) argument
165 *mtime = zero;
168 *mtime = get_stat_mtime (&finfo);
/haiku-fatelf/src/bin/unzip/
H A Dlist.c271 TIMET_TO_NATIVE(z_utime.mtime) /* NOP unless MSC 7.0, Mac */
272 t = localtime(&(z_utime.mtime));
594 if (*last_modtime < z_utime.mtime)
595 *last_modtime = z_utime.mtime;
H A Dprocess.c1290 iztimes *z_utim; /* return storage: atime, mtime, ctime */
1359 z_utim->mtime =
1363 z_utim->mtime =
1367 /* cannot determine sign of mtime;
1377 z_utim->mtime = (time_t)i_time;
1386 /* UnZip interprets mtime differently than Zip;
1397 z_utim->mtime = (time_t)i_time;
1512 z_utim->mtime =
1516 z_utim->mtime =
1520 /* cannot determine sign of mtime;
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/server-1.2.6/
H A Drpc_workers.h35 int btWStat(char *pathBuf, vnode_id vnid, long mask, int32 mode, int32 uid, int32 gid, int64 size, int32 atime, int32 mtime);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/server/
H A Dcompat.h108 time_t mtime; /* last modification time */ member in struct:my_stat

Completed in 481 milliseconds

123