Home | History | Annotate | Download | only in e2fsck

Lines Matching refs:allocated

5 $1 == "+"	{ if (allocated[$2] != "")
6 print "+", $2, "Alloc", NR, "duplicate:", allocated[$2];
8 allocated[$2] = $3;
10 $1 == "-" { if (allocated[$2] != "") {
11 allocated[$2] = "";
12 if (allocated[$2] != "")
13 print "DELETE FAILED", $2, allocated[$2];
17 $1 == "<" { if (allocated[$2] != "")
18 allocated[$2] = "";
22 $1 == ">" { if (allocated[$2] != "")
23 print "+", $2, "Realloc", NR, "duplicate:", allocated[$2];
25 allocated[$2] = $3;
34 END { for (x in allocated)
35 if (allocated[x] != "")
36 print "+", x, allocated[x];