Lines Matching defs:ssc
90 struct sss_creds *ssc = NULL;
111 ssc = talloc_size(mem_ctx,
113 if (!ssc) {
118 ssc->num_gids = size;
120 size = getgroups(ssc->num_gids, ssc->gids);
125 /* free ssc immediately otherwise the code will try to restore
127 talloc_zfree(ssc);
132 ssc->uid = myuid;
133 ssc->gid = mygid;
153 talloc_zfree(ssc);
192 restore_creds(ssc);
193 talloc_free(ssc);
195 *saved_creds = ssc;