Searched refs:stamp (Results 1 – 4 of 4) sorted by relevance
/security/tomoyo/ |
D | audit.c | 152 struct tomoyo_time stamp; in tomoyo_print_header() local 163 tomoyo_convert_time(ktime_get_real_seconds(), &stamp); in tomoyo_print_header() 167 stamp.year, stamp.month, stamp.day, stamp.hour, in tomoyo_print_header() 168 stamp.min, stamp.sec, r->profile, tomoyo_mode[r->mode], in tomoyo_print_header()
|
D | util.c | 91 void tomoyo_convert_time(time64_t time64, struct tomoyo_time *stamp) in tomoyo_convert_time() argument 96 stamp->sec = tm.tm_sec; in tomoyo_convert_time() 97 stamp->min = tm.tm_min; in tomoyo_convert_time() 98 stamp->hour = tm.tm_hour; in tomoyo_convert_time() 99 stamp->day = tm.tm_mday; in tomoyo_convert_time() 100 stamp->month = tm.tm_mon + 1; in tomoyo_convert_time() 101 stamp->year = tm.tm_year + 1900; in tomoyo_convert_time()
|
D | common.c | 2353 struct tomoyo_time stamp; in tomoyo_read_stat() local 2355 tomoyo_convert_time(tomoyo_stat_modified[i], &stamp); in tomoyo_read_stat() 2357 stamp.year, stamp.month, stamp.day, in tomoyo_read_stat() 2358 stamp.hour, stamp.min, stamp.sec); in tomoyo_read_stat()
|
D | common.h | 1050 void tomoyo_convert_time(time64_t time, struct tomoyo_time *stamp);
|