Lines Matching full:txt
6 * cat /sys/kernel/debug/page_owner > page_owner_full.txt
7 * grep -v ^PFN page_owner_full.txt > page_owner.txt
8 * ./page_owner_sort page_owner.txt sorted_page_owner.txt
22 char *txt; member
51 return strcmp(l1->txt, l2->txt); in compare_txt()
65 memcmp(buf, list[list_size-1].txt, len) == 0) { in add_list()
73 list[list_size].txt = malloc(len+1); in add_list()
76 memcpy(list[list_size].txt, buf, len); in add_list()
77 list[list_size].txt[len] = 0; in add_list()
139 strcmp(list2[count-1].txt, list[i].txt) != 0) { in main()
149 fprintf(fout, "%d times:\n%s\n", list2[i].num, list2[i].txt); in main()