Lines Matching refs:sgc
2365 struct binder_sg_copy *sgc, *tmpsgc; in binder_do_deferred_txn_copies() local
2371 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_do_deferred_txn_copies()
2374 while (bytes_copied < sgc->length) { in binder_do_deferred_txn_copies()
2376 size_t bytes_left = sgc->length - bytes_copied; in binder_do_deferred_txn_copies()
2377 size_t offset = sgc->offset + bytes_copied; in binder_do_deferred_txn_copies()
2388 sgc->sender_uaddr + bytes_copied, in binder_do_deferred_txn_copies()
2418 list_del(&sgc->node); in binder_do_deferred_txn_copies()
2419 kfree(sgc); in binder_do_deferred_txn_copies()
2442 struct binder_sg_copy *sgc, *tmpsgc; in binder_cleanup_deferred_txn_lists() local
2445 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_cleanup_deferred_txn_lists()
2446 list_del(&sgc->node); in binder_cleanup_deferred_txn_lists()
2447 kfree(sgc); in binder_cleanup_deferred_txn_lists()