Home | History | Annotate | Download | only in strace

Lines Matching refs:copy

640 		struct modify_ldt_ldt_s copy;
644 || umove(tcp, tcp->u_arg[1], &copy) == -1)
647 tprintf(", {entry_number:%d, ", copy.entry_number);
651 print_ldt_entry(&copy);
663 struct modify_ldt_ldt_s copy;
665 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
666 if (copy.entry_number == -1)
668 copy.entry_number);
673 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
674 tprintf("%d, ", copy.entry_number);
678 print_ldt_entry(&copy);
692 struct modify_ldt_ldt_s copy;
694 if (umove(tcp, tcp->u_arg[0], &copy) != -1) {
695 tprintf("{entry_number:%d, ", copy.entry_number);
699 print_ldt_entry(&copy);