Lines Matching defs:sgc
2437 * This is used for the sg copy list (sgc) which is created and consumed
2471 struct binder_sg_copy *sgc, *tmpsgc;
2477 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) {
2480 while (bytes_copied < sgc->length) {
2482 size_t bytes_left = sgc->length - bytes_copied;
2483 size_t offset = sgc->offset + bytes_copied;
2494 sgc->sender_uaddr + bytes_copied,
2524 list_del(&sgc->node);
2525 kfree(sgc);
2548 struct binder_sg_copy *sgc, *tmpsgc;
2551 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) {
2552 list_del(&sgc->node);
2553 kfree(sgc);