Lines Matching refs:sgc
2476 struct binder_sg_copy *sgc, *tmpsgc; in binder_do_deferred_txn_copies() local
2482 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_do_deferred_txn_copies()
2485 while (bytes_copied < sgc->length) { in binder_do_deferred_txn_copies()
2487 size_t bytes_left = sgc->length - bytes_copied; in binder_do_deferred_txn_copies()
2488 size_t offset = sgc->offset + bytes_copied; in binder_do_deferred_txn_copies()
2499 sgc->sender_uaddr + bytes_copied, in binder_do_deferred_txn_copies()
2529 list_del(&sgc->node); in binder_do_deferred_txn_copies()
2530 kfree(sgc); in binder_do_deferred_txn_copies()
2553 struct binder_sg_copy *sgc, *tmpsgc; in binder_cleanup_deferred_txn_lists() local
2556 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_cleanup_deferred_txn_lists()
2557 list_del(&sgc->node); in binder_cleanup_deferred_txn_lists()
2558 kfree(sgc); in binder_cleanup_deferred_txn_lists()