Symbol: SetCreationTime
headers/build/os/storage/Statable.h
45
status_t SetCreationTime(time_t ctime);
headers/os/package/hpkg/PackageEntry.h
55
void SetCreationTime(uint32 seconds)
headers/os/package/hpkg/v1/PackageEntry.h
57
void SetCreationTime(uint32 seconds)
headers/os/storage/Statable.h
54
status_t SetCreationTime(time_t ctime);
src/add-ons/kernel/file_systems/ext2/Inode.cpp
606
inode->SetCreationTime(&timespec);
src/add-ons/kernel/file_systems/ext2/Inode.h
78
void SetCreationTime(const struct timespec *timespec)
src/add-ons/kernel/file_systems/ext2/Inode.h
79
{ fNode.SetCreationTime(timespec,
src/add-ons/kernel/file_systems/ext2/ext2.h
554
void SetCreationTime(const struct timespec *timespec, bool extra)
src/add-ons/kernel/file_systems/ext2/kernel_interface.cpp
688
inode->SetCreationTime(&stat->st_crtim);
src/apps/installer/CopyEngine.cpp
482
destination.SetCreationTime(sourceInfo.st_crtime);
src/apps/packageinstaller/PackageItem.cpp
1129
ret = symlink.SetCreationTime(static_cast<time_t>(fCreationTime));
src/apps/packageinstaller/PackageItem.cpp
834
dir.SetCreationTime(static_cast<time_t>(fCreationTime));
src/apps/packageinstaller/PackageItem.cpp
931
ret = file.SetCreationTime(static_cast<time_t>(fCreationTime));
src/apps/soundrecorder/FileUtils.cpp
75
dst.SetCreationTime(src_stat.st_crtime);
src/bin/bfs_tools/lib/Inode.cpp
545
node->SetCreationTime(fInode->create_time >> 16);
src/bin/copyattr.cpp
443
destNode->SetCreationTime(sourceStat.st_crtime);
src/kits/package/hpkg/PackageReaderImpl.cpp
178
fEntry.SetCreationTime(value.unsignedInt);
src/kits/package/hpkg/v1/PackageReaderImplV1.cpp
247
fEntry.SetCreationTime(value.unsignedInt);
src/kits/storage/CopyEngine.cpp
284
destNode->SetCreationTime(sourceStat.st_crtime);
src/kits/tracker/FSUtils.cpp
1409
newLink.SetCreationTime(srcStat->st_crtime);
src/kits/tracker/FSUtils.cpp
1518
destFile.SetCreationTime(srcStat->st_crtime);
src/kits/tracker/FSUtils.cpp
2000
destNode->SetCreationTime(srcStat.st_crtime);
src/tests/kits/storage/StatableTest.cpp
211
CPPUNIT_ASSERT( statable->SetCreationTime(ctime) == B_OK );
src/tests/kits/storage/StatableTest.cpp
240
CPPUNIT_ASSERT( statable->SetCreationTime(ctime) != B_OK );
src/tests/system/kernel/file_corruption/fs/Node.h
75
void SetCreationTime(uint64 time);
src/tests/system/kernel/file_corruption/fs/checksumfs.cpp
1493
node->SetCreationTime(timespec_to_nsecs(st->st_crtim));