Lines Matching refs:wiped
480 * Return: >0 Success, the attribute was wiped
537 * - skip non-used block already wiped
539 * Return: >0 Success, the attribute was wiped
582 * if all unused clusters in this block are already wiped,
634 " already wiped, %lld more bytes wiped\n",
648 * Return: >0 Success, the attribute was wiped
656 s64 size, offset, ret, wiped = 0;
722 wiped += size;
751 wiped += ret;
758 return wiped;
768 * Return: >0 Success, the attribute was wiped
776 s64 wiped;
798 wiped = ntfs_rl_pwrite(vol, na->rl, 0, offset, size, buf);
799 if (wiped == -1) {
805 return wiped;
811 * Return: >0 Success, the clusters were wiped
821 s64 wiped;
823 wiped = -1;
843 wiped = wipe_compressed_attribute(vol, byte, act, na);
845 wiped = wipe_attribute(vol, byte, act, na);
847 if (wiped == -1) {
853 return (wiped);
865 * Return: >0 Success, the clusters were wiped
890 s64 wiped = 0;
923 wiped += attr_wiped;
927 if (wiped) {
929 (unsigned long long)wiped);
930 total += wiped;
952 * Return: >0 Success, the clusters were wiped
1091 * Return: >0 Success, the clusters were wiped
1100 s64 wiped = 0;
1178 wiped = ntfs_rl_pwrite(vol, naa->rl, 0, offset, indx_record_size, buf);
1179 if (wiped != indx_record_size) {
1194 if ((opts.verbose > 1) && (wiped != -1))
1238 * Return: >0 Success, the clusters were wiped
1262 s64 wiped;
1336 wiped = wipe_index_allocation(vol, byte, act,
1338 if (wiped == -1) {
1344 if (wiped) {
1346 (unsigned long long)wiped);
1347 total += wiped;
1375 * Return: >0 Success, the clusters were wiped
1484 * Windows recreates the file at bootup, so it can be wiped without harm.
1486 * Return: >0 Success, the clusters were wiped
2211 s64 wiped = 0;
2216 wiped = wipe_directory(vol, byte, act);
2217 if (wiped < 0)
2220 total += wiped;
2224 wiped = wipe_tails(vol, byte, act);
2225 if (wiped < 0)
2228 total += wiped;
2232 wiped = wipe_logfile(vol, byte, act);
2233 if (wiped < 0)
2236 total += wiped;
2240 wiped = wipe_mft(vol, byte, act);
2241 if (wiped < 0)
2244 total += wiped;
2248 wiped = wipe_pagefile(vol, byte, act);
2249 if (wiped < 0)
2252 total += wiped;
2257 wiped = wipe_unused_fast(vol, byte,
2260 wiped = wipe_unused(vol, byte, act);
2261 if (wiped < 0)
2264 total += wiped;
2268 wiped = wipe_unrm(vol);
2269 if (wiped != 0)
2273 total += wiped;
2282 ntfs_log_info("%lld bytes would be wiped"
2286 ntfs_log_info("%lld bytes were wiped"