Searched refs:atime (Results 1 - 11 of 11) sorted by relevance

/haiku/headers/build/os/storage/
H A DStatable.h47 status_t GetAccessTime(time_t *atime) const;
48 status_t SetAccessTime(time_t atime);
/haiku/headers/os/storage/
H A DStatable.h56 status_t GetAccessTime(time_t* atime) const;
57 status_t SetAccessTime(time_t atime);
/haiku/src/build/libbe/storage/
H A DStatable.cpp228 BStatable::GetAccessTime(time_t *atime) const
230 status_t error = (atime ? B_OK : B_BAD_VALUE);
235 *atime = statData.st_atime;
245 BStatable::SetAccessTime(time_t atime) argument
248 statData.st_atime = atime;
/haiku/src/tests/kits/storage/
H A DStatableTest.cpp112 time_t atime; local
124 CPPUNIT_ASSERT( statable->GetAccessTime(&atime) == B_OK );
137 CPPUNIT_ASSERT( atime == st.st_atime );
153 time_t atime; local
162 CPPUNIT_ASSERT( statable->GetAccessTime(&atime) == B_NO_INIT );
205 time_t atime = 2345678; local
213 CPPUNIT_ASSERT( statable->SetAccessTime(atime) == B_OK );
222 CPPUNIT_ASSERT( atime == st.st_atime );
235 time_t atime = 2345678; local
241 CPPUNIT_ASSERT( statable->SetAccessTime(atime) !
[all...]
/haiku/src/servers/mail/
H A DErrorLogWindow.cpp183 BString atime = asctime(localtime(&thetime)); local
184 atime.Prepend(" [");
185 atime.RemoveAll("\n");
186 atime.Append("]");
187 view->Insert(view->TextLength(),atime.String(),atime.Length(),&array);
/haiku/src/kits/storage/
H A DStatable.cpp261 // Fills out atime with the access time of the node.
263 BStatable::GetAccessTime(time_t* atime) const
265 status_t result = (atime ? B_OK : B_BAD_VALUE);
272 *atime = stat.st_atime;
278 // Sets the node's access time to atime.
280 BStatable::SetAccessTime(time_t atime) argument
283 stat.st_atime = atime;
/haiku/src/bin/unzip/
H A Dprocess.c1290 iztimes *z_utim; /* return storage: atime, mtime, ctime */
1417 z_utim->atime =
1420 z_utim->atime =
1429 z_utim->atime = (time_t)i_time;
1438 z_utim->atime = (time_t)i_time;
1555 z_utim->atime =
1558 z_utim->atime =
1567 z_utim->atime = (time_t)i_time;
1572 /* atime not in range of UnZip's time_t */
1577 z_utim->atime
[all...]
H A Dbeos.c883 we're laughing: both mtime and atime are ours. On the other hand, we
903 zt.atime));
905 zt.atime = zt.mtime;
H A Dextract.c1140 (*pdirlist)->u.t3.atime));
1142 (*pdirlist)->u.t3.atime =
H A Dunzpriv.h1366 #define EB_UX_MINLEN 8 /* minimal "UX" field contains atime, mtime */
1367 #define EB_UX_FULLSIZE 12 /* full "UX" field (atime, mtime, uid, gid) */
1368 #define EB_UX_ATIME 0 /* offset of atime in "UX" extra field data */
1382 #define EB_UT_FL_ATIME (1 << 1) /* atime present */
1497 time_t atime; /* new access time */ member in struct:iztimes
1507 iztimes t3; /* mtime, atime, ctime */
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dlowntfs.c61 if (ctx->atime == ATIME_DISABLED)
63 else if (ctx->atime == ATIME_RELATIVE && mask == NTFS_UPDATE_ATIME &&

Completed in 139 milliseconds