Lines Matching refs:sgc
2380 struct binder_sg_copy *sgc, *tmpsgc; in binder_do_deferred_txn_copies() local
2386 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_do_deferred_txn_copies()
2389 while (bytes_copied < sgc->length) { in binder_do_deferred_txn_copies()
2391 size_t bytes_left = sgc->length - bytes_copied; in binder_do_deferred_txn_copies()
2392 size_t offset = sgc->offset + bytes_copied; in binder_do_deferred_txn_copies()
2403 sgc->sender_uaddr + bytes_copied, in binder_do_deferred_txn_copies()
2433 list_del(&sgc->node); in binder_do_deferred_txn_copies()
2434 kfree(sgc); in binder_do_deferred_txn_copies()
2457 struct binder_sg_copy *sgc, *tmpsgc; in binder_cleanup_deferred_txn_lists() local
2460 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { in binder_cleanup_deferred_txn_lists()
2461 list_del(&sgc->node); in binder_cleanup_deferred_txn_lists()
2462 kfree(sgc); in binder_cleanup_deferred_txn_lists()