Home
last modified time | relevance | path

Searched refs:indexInfo (Results 1 – 5 of 5) sorted by relevance

/haiku/src/system/libroot/os/
H A Dfs_index.c39 fs_stat_index(dev_t device, const char *name, struct index_info *indexInfo) in fs_stat_index() argument
45 indexInfo->type = stat.st_type; in fs_stat_index()
46 indexInfo->size = stat.st_size; in fs_stat_index()
47 indexInfo->modification_time = stat.st_mtime; in fs_stat_index()
48 indexInfo->creation_time = stat.st_crtime; in fs_stat_index()
49 indexInfo->uid = stat.st_uid; in fs_stat_index()
50 indexInfo->gid = stat.st_gid; in fs_stat_index()
/haiku/src/bin/
H A Dreindex.cpp233 index_info indexInfo; in handleFile() local
234 if (fs_stat_index(ref.device, attrName, &indexInfo) != B_OK) in handleFile()
288 index_info indexInfo; in copyIndicesFromVolume() local
289 if (fs_stat_index(sourceDevice, index->d_name, &indexInfo) != B_OK) { in copyIndicesFromVolume()
295 if (fs_create_index(targetDevice, index->d_name, indexInfo.type, 0) in copyIndicesFromVolume()
298 "): %s\n", index->d_name, indexInfo.type, strerror(errno)); in copyIndicesFromVolume()
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.cpp765 beos_index_info indexInfo; in ReadIndexStat() local
766 status_t error = fFSOps->stat_index(fVolumeCookie, name, &indexInfo); in ReadIndexStat()
771 st->st_type = indexInfo.type; in ReadIndexStat()
772 st->st_size = indexInfo.size; in ReadIndexStat()
773 st->st_mtime = indexInfo.modification_time; in ReadIndexStat()
774 st->st_crtime = indexInfo.creation_time; in ReadIndexStat()
775 st->st_uid = indexInfo.uid; in ReadIndexStat()
776 st->st_gid = indexInfo.gid; in ReadIndexStat()
/haiku/headers/os/kernel/
H A Dfs_index.h29 extern int fs_stat_index(dev_t device, const char *name, struct index_info *indexInfo);
/haiku/headers/private/fs_shell/
H A Dfssh_fs_index.h31 struct fssh_index_info *indexInfo);