cfg 33 source3/modules/onefs_config.c struct onefs_vfs_share_config *cfg)
cfg 42 source3/modules/onefs_config.c cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
cfg 43 source3/modules/onefs_config.c set_namearray(&cfg->atime_now_list,*parm);
cfg 50 source3/modules/onefs_config.c cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
cfg 51 source3/modules/onefs_config.c set_namearray(&cfg->ctime_now_list,*parm);
cfg 58 source3/modules/onefs_config.c cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
cfg 59 source3/modules/onefs_config.c set_namearray(&cfg->mtime_now_list,*parm);
cfg 66 source3/modules/onefs_config.c cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
cfg 67 source3/modules/onefs_config.c set_namearray(&cfg->atime_static_list,*parm);
cfg 74 source3/modules/onefs_config.c cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
cfg 75 source3/modules/onefs_config.c set_namearray(&cfg->mtime_static_list,*parm);
cfg 78 source3/modules/onefs_config.c cfg->atime_slop = lp_parm_int(snum, PARM_ONEFS_TYPE, PARM_ATIME_SLOP,
cfg 80 source3/modules/onefs_config.c cfg->ctime_slop = lp_parm_int(snum, PARM_ONEFS_TYPE, PARM_CTIME_SLOP,
cfg 82 source3/modules/onefs_config.c cfg->mtime_slop = lp_parm_int(snum, PARM_ONEFS_TYPE, PARM_MTIME_SLOP,
cfg 217 source3/modules/onefs_config.c struct onefs_vfs_share_config *cfg)
cfg 220 source3/modules/onefs_config.c *cfg = vfs_share_config[snum];
cfg 90 source3/modules/onefs_config.h #define IS_CTIME_NOW_PATH(conn,cfg,path) ((conn) && is_in_path((path),\
cfg 91 source3/modules/onefs_config.h (cfg)->ctime_now_list,(conn)->case_sensitive))
cfg 92 source3/modules/onefs_config.h #define IS_MTIME_NOW_PATH(conn,cfg,path) ((conn) && is_in_path((path),\
cfg 93 source3/modules/onefs_config.h (cfg)->mtime_now_list,(conn)->case_sensitive))
cfg 94 source3/modules/onefs_config.h #define IS_ATIME_NOW_PATH(conn,cfg,path) ((conn) && is_in_path((path),\
cfg 95 source3/modules/onefs_config.h (cfg)->atime_now_list,(conn)->case_sensitive))
cfg 96 source3/modules/onefs_config.h #define IS_MTIME_STATIC_PATH(conn,cfg,path) ((conn) && is_in_path((path),\
cfg 97 source3/modules/onefs_config.h (cfg)->mtime_static_list,(conn)->case_sensitive))
cfg 98 source3/modules/onefs_config.h #define IS_ATIME_STATIC_PATH(conn,cfg,path) ((conn) && is_in_path((path),\
cfg 99 source3/modules/onefs_config.h (cfg)->atime_static_list,(conn)->case_sensitive))
cfg 152 source3/modules/onefs_config.h struct onefs_vfs_share_config *cfg);
cfg 236 source3/modules/onefs_streams.c struct onefs_vfs_share_config cfg;
cfg 242 source3/modules/onefs_streams.c ONEFS_VFS_CONFIG_FAKETIMESTAMPS, &cfg)) {
cfg 246 source3/modules/onefs_streams.c if (IS_MTIME_STATIC_PATH(handle->conn, &cfg, fname)) {
cfg 250 source3/modules/onefs_streams.c if (IS_ATIME_STATIC_PATH(handle->conn, &cfg, fname)) {
cfg 255 source3/modules/onefs_streams.c if (IS_CTIME_NOW_PATH(handle->conn, &cfg, fname)) {
cfg 256 source3/modules/onefs_streams.c if (cfg.ctime_slop < 0) {
cfg 260 source3/modules/onefs_streams.c sbuf->st_birthtime = tv_now.tv_sec + cfg.ctime_slop;
cfg 264 source3/modules/onefs_streams.c if (!static_mtime && IS_MTIME_NOW_PATH(handle->conn,&cfg,fname)) {
cfg 265 source3/modules/onefs_streams.c if (cfg.mtime_slop < 0) {
cfg 270 source3/modules/onefs_streams.c sbuf->st_mtime = tv_now.tv_sec + cfg.mtime_slop;
cfg 273 source3/modules/onefs_streams.c if (!static_atime && IS_ATIME_NOW_PATH(handle->conn,&cfg,fname)) {
cfg 274 source3/modules/onefs_streams.c if (cfg.atime_slop < 0) {
cfg 279 source3/modules/onefs_streams.c sbuf->st_atime = tv_now.tv_sec + cfg.atime_slop;