Lines Matching refs:out
142 struct output *out)
205 SAFEALIGN_COPY_UINT32(&out->type, repbuf + 2 * sizeof(uint32_t), NULL);
227 out->d.str = str;
237 out->d.id = c;
246 out->d.kv_list = kv_list;
271 struct output out;
279 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETSIDBYNAME, &out);
281 *sid = out.d.str;
282 *type = out.type;
292 struct output out;
300 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETSIDBYID, &out);
302 *sid = out.d.str;
303 *type = out.type;
314 struct output out;
322 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETNAMEBYSID, &out);
324 *fq_name = out.d.str;
325 *type = out.type;
335 struct output out;
343 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETIDBYSID, &out);
345 *id = out.d.id;
346 *id_type = out.type;
357 struct output out;
365 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETORIGBYNAME, &out);
367 *kv_list = out.d.kv_list;
368 *type = out.type;
379 struct output out;
387 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETNAMEBYCERT, &out);
389 *fq_name = out.d.str;
390 *type = out.type;