Lines Matching refs:ft_low
651 uint32 file_attributes, ft_high, ft_low;
685 &ft_low);
686 out_uint32_le(out, ft_low); /* create_access_time */
689 seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
690 out_uint32_le(out, ft_low); /* last_access_time */
693 seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);
694 out_uint32_le(out, ft_low); /* last_write_time */
697 seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
698 out_uint32_le(out, ft_low); /* last_change_time */
732 uint32 length, file_attributes, ft_high, ft_low;
754 in_uint32_le(in, ft_low);
758 in_uint32_le(in, ft_low);
760 if (ft_low || ft_high)
761 access_time = convert_1970_to_filetime(ft_high, ft_low);
764 in_uint32_le(in, ft_low);
766 if (ft_low || ft_high)
767 write_time = convert_1970_to_filetime(ft_high, ft_low);
770 in_uint32_le(in, ft_low);
772 if (ft_low || ft_high)
773 change_time = convert_1970_to_filetime(ft_high, ft_low);
1197 uint32 file_attributes, ft_low, ft_high;
1282 &ft_low);
1283 out_uint32_le(out, ft_low); /* create time */
1286 seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
1287 out_uint32_le(out, ft_low); /* last_access_time */
1290 seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);
1291 out_uint32_le(out, ft_low); /* last_write_time */
1294 seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
1295 out_uint32_le(out, ft_low); /* change_write_time */
1317 &ft_low);
1318 out_uint32_le(out, ft_low); /* create time */
1321 seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
1322 out_uint32_le(out, ft_low); /* last_access_time */
1325 seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);
1326 out_uint32_le(out, ft_low); /* last_write_time */
1329 seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
1330 out_uint32_le(out, ft_low); /* change_write_time */
1346 &ft_low);
1347 out_uint32_le(out, ft_low); /* create time */
1350 seconds_since_1970_to_filetime(filestat.st_atime, &ft_high, &ft_low);
1351 out_uint32_le(out, ft_low); /* last_access_time */
1354 seconds_since_1970_to_filetime(filestat.st_mtime, &ft_high, &ft_low);
1355 out_uint32_le(out, ft_low); /* last_write_time */
1358 seconds_since_1970_to_filetime(filestat.st_ctime, &ft_high, &ft_low);
1359 out_uint32_le(out, ft_low); /* change_write_time */