Home | History | Annotate | Download | only in recovery

Lines Matching defs:head

364     saved_log_file* head = NULL;
395 p->next = head;
396 head = p;
416 while (head) {
417 FILE* f = fopen_path(head->name, "wb");
419 fwrite(head->data, 1, head->st.st_size, f);
421 chmod(head->name, head->st.st_mode);
422 chown(head->name, head->st.st_uid, head->st.st_gid);
424 free(head->name);
425 free(head->data);
426 saved_log_file* temp = head->next;
427 free(head);
428 head = temp;