Lines Matching refs:out
205 unsigned int timeout, struct output *out)
289 SAFEALIGN_COPY_UINT32(&out->type, repbuf + 2 * sizeof(uint32_t), NULL);
311 out->d.str = str;
321 out->d.id = c;
332 out->types = types;
333 out->d.names = names;
342 out->d.kv_list = kv_list;
367 struct output out;
375 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETSIDBYNAME, timeout, &out);
377 *sid = out.d.str;
378 *type = out.type;
395 struct output out;
403 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETSIDBYID, timeout, &out);
405 *sid = out.d.str;
406 *type = out.type;
422 struct output out;
430 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETNAMEBYSID, timeout, &out);
432 *fq_name = out.d.str;
433 *type = out.type;
450 struct output out;
458 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETIDBYSID, timeout, &out);
460 *id = out.d.id;
461 *id_type = out.type;
478 struct output out;
486 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETORIGBYNAME, timeout, &out);
488 *kv_list = out.d.kv_list;
489 *type = out.type;
506 struct output out;
514 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETNAMEBYCERT, timeout, &out);
516 *fq_name = out.d.str;
517 *type = out.type;
534 struct output out;
542 ret = sss_nss_getyyybyxxx(inp, SSS_NSS_GETLISTBYCERT, timeout, &out);
544 *fq_name = out.d.names;
545 *type = out.types;