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) argument
45 indexInfo->type = stat.st_type;
46 indexInfo->size = stat.st_size;
47 indexInfo->modification_time = stat.st_mtime;
48 indexInfo->creation_time = stat.st_crtime;
49 indexInfo->uid = stat.st_uid;
50 indexInfo->gid = stat.st_gid;
/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);
/haiku/src/bin/
H A Dreindex.cpp233 index_info indexInfo; local
234 if (fs_stat_index(ref.device, attrName, &indexInfo) != B_OK)
288 index_info indexInfo; local
289 if (fs_stat_index(sourceDevice, index->d_name, &indexInfo) != B_OK) {
295 if (fs_create_index(targetDevice, index->d_name, indexInfo.type, 0)
298 "): %s\n", index->d_name, indexInfo.type, strerror(errno));
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelVolume.cpp765 beos_index_info indexInfo;
766 status_t error = fFSOps->stat_index(fVolumeCookie, name, &indexInfo);
771 st->st_type = indexInfo.type;
772 st->st_size = indexInfo.size;
773 st->st_mtime = indexInfo.modification_time;
774 st->st_crtime = indexInfo.creation_time;
775 st->st_uid = indexInfo.uid;
776 st->st_gid = indexInfo.gid;

Completed in 105 milliseconds