Home
last modified time | relevance | path

Searched refs:outkey (Results 1 – 12 of 12) sorted by relevance

/freebsd/usr.sbin/ypserv/common/
H A Dyplib_host.c174 yp_first_host(CLIENT *client, char *indomain, char *inmap, char **outkey, in yp_first_host() argument
182 *outkey = *outval = NULL; in yp_first_host()
199 *outkey = malloc(*outkeylen+1); in yp_first_host()
200 memcpy(*outkey, yprkv.key.keydat_val, *outkeylen); in yp_first_host()
201 (*outkey)[*outkeylen] = '\0'; in yp_first_host()
214 int inkeylen, char **outkey, int *outkeylen, char **outval, int *outvallen) in yp_next_host() argument
221 *outkey = *outval = NULL; in yp_next_host()
240 *outkey = malloc(*outkeylen+1); in yp_next_host()
241 memcpy(*outkey, yprkv.key.keydat_val, *outkeylen); in yp_next_host()
242 (*outkey)[*outkeylen] = '\0'; in yp_next_host()
H A Dyplib_host.h35 char **outkey, int *outkeylen, char **outval, int *outvallen);
37 int inkeylen, char **outkey, int *outkeylen, char **outval,
/freebsd/crypto/krb5/src/lib/crypto/krb/
H A Dderive.c110 krb5_key inkey, krb5_keyblock *outkey, in krb5int_derive_keyblock() argument
127 ret = krb5_c_random_to_key(NULL, inkey->keyblock.enctype, &rawkey, outkey); in krb5int_derive_keyblock()
137 krb5_key inkey, krb5_key *outkey, in krb5int_derive_key() argument
144 *outkey = NULL; in krb5int_derive_key()
149 *outkey = dkey; in krb5int_derive_key()
169 *outkey = dkey; in krb5int_derive_key()
H A Dcrypto_int.h388 krb5_key inkey, krb5_keyblock *outkey,
393 krb5_key inkey, krb5_key *outkey,
/freebsd/lib/libc/yp/
H A Dyplib.c767 yp_first(char *indomain, char *inmap, char **outkey, int *outkeylen, in yp_first() argument
782 *outkey = *outval = NULL; in yp_first()
815 *outkey = (char *)malloc(*outkeylen+1); in yp_first()
816 if (*outkey == NULL) { in yp_first()
823 bcopy(yprkv.key.keydat_val, *outkey, *outkeylen); in yp_first()
824 (*outkey)[*outkeylen] = '\0'; in yp_first()
828 free(*outkey); in yp_first()
846 char **outkey, int *outkeylen, char **outval, int *outvallen) in yp_next() argument
861 *outkey = *outval = NULL; in yp_next()
896 *outkey = (char *)malloc(*outkeylen+1); in yp_next()
[all …]
/freebsd/include/rpcsvc/
H A Dypclnt.h79 int yp_first(char *indomain, char *inmap, char **outkey, int *outkeylen,
82 char **outkey, int *outkeylen, char **outval, int *outvallen);
/freebsd/contrib/mandoc/
H A Dmansearch.c95 size_t cur, i, maxres, outkey; in mansearch() local
109 outkey = KEY_Nd; in mansearch()
110 if (search->outkey != NULL) in mansearch()
112 if (0 == strcasecmp(search->outkey, in mansearch()
114 outkey = im; in mansearch()
201 mpage->output = buildoutput(outkey, page); in mansearch()
H A Dmansearch.h104 const char *outkey; /* show content of this macro */ member
H A Dmain.c189 search.outkey = "Nd"; in main()
371 search.outkey = oarg; in main()
705 "[-M path] [-m path] [-O outkey] [-S arch]\n" in main()
710 "[-M path] [-m path] [-O outkey] [-S arch]\n" in main()
1062 search.outkey = NULL; in parse()
H A Dcgi.c1031 search.outkey = "Nd"; in pg_search()
/freebsd/usr.sbin/ypldap/
H A Daldap.c443 aldap_first_attr(struct aldap_message *msg, char **outkey, char ***outvalues) in aldap_first_attr() argument
462 (*outkey) = utoa(key); in aldap_first_attr()
466 (*outkey) = NULL; in aldap_first_attr()
472 aldap_next_attr(struct aldap_message *msg, char **outkey, char ***outvalues) in aldap_next_attr() argument
496 (*outkey) = utoa(key); in aldap_next_attr()
501 (*outkey) = NULL; in aldap_next_attr()
/freebsd/crypto/openssl/test/
H A Devp_extra_test2.c1763 EVP_PKEY *key = NULL, *outkey = NULL; in test_ec_d2i_i2d_pubkey() local
1774 || !TEST_ptr(outkey = d2i_PUBKEY_ex_fp(fp, NULL, mainctx, NULL)) in test_ec_d2i_i2d_pubkey()
1775 || !TEST_int_eq(EVP_PKEY_eq(key, outkey), 1)) in test_ec_d2i_i2d_pubkey()
1781 EVP_PKEY_free(outkey); in test_ec_d2i_i2d_pubkey()