| /src/lib/libc/yp/ |
| yp_first.c | 48 yp_first(const char *indomain, const char *inmap, char **outkey, 56 if (outkey == NULL || outkeylen == NULL || \ 59 *outkey = *outval = NULL; 89 if ((*outkey = malloc((size_t)(*outkeylen + 1))) == NULL) 92 (void)memcpy(*outkey, yprkv.keydat.dptr, 94 (*outkey)[*outkeylen] = '\0'; 108 if (*outkey) { 109 free(*outkey); 110 *outkey = NULL; 122 int inkeylen, char **outkey, int *outkeylen, char **outval, int *outvallen [all...] |
| /src/usr.sbin/ypserv/common/ |
| yplib_host.h | 36 char **outkey, int *outkeylen, char **outval, 39 char *inkey, int inkeylen, char **outkey,
|
| yplib_host.c | 160 yp_first_host(CLIENT *client, char *indomain, char *inmap, char **outkey, 167 *outkey = *outval = NULL; 181 *outkey = (char *)malloc(*outkeylen+1); 182 memcpy(*outkey, yprkv.keydat.dptr, *outkeylen); 183 (*outkey)[*outkeylen] = '\0'; 195 int inkeylen, char **outkey, int *outkeylen, char **outval, 202 *outkey = *outval = NULL; 218 *outkey = (char *)malloc(*outkeylen+1); 219 memcpy(*outkey, yprkv.keydat.dptr, *outkeylen); 220 (*outkey)[*outkeylen] = '\0' [all...] |
| /src/distrib/utils/libhack/ |
| yplib.c | 188 yp_first(indomain, inmap, outkey, outkeylen, outval, outvallen) 191 char **outkey; 197 *outkey = *outval = NULL; 204 yp_next(indomain, inmap, inkey, inkeylen, outkey, outkeylen, outval, outvallen) 209 char **outkey; 214 *outkey = *outval = NULL;
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| tkey.h | 165 dns_tsigkey_t **outkey, dns_tsig_keyring_t *ring); 176 *\li 'outkey' is either NULL or a pointer to NULL 188 isc_buffer_t *outtoken, dns_tsigkey_t **outkey, 216 dns_tsigkey_t **outkey, dns_tsig_keyring_t *ring, 231 * 'outkey' receives the established key, if non-NULL;
|
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| tkey.h | 117 dns_tsigkey_t **outkey, dns_tsigkeyring_t *ring, 131 * 'outkey' receives the established key, if non-NULL;
|
| /src/external/bsd/am-utils/dist/amd/ |
| info_nis.c | 402 char *outkey, *outval; local 409 i = yp_first(indomain, inmap, &outkey, &outkeylen, &outval, &outvallen); 415 outkey, 425 * outval must be freed *before* calling yp_next again, outkey can be 430 outkey_old = outkey; 436 &outkey,
|
| /src/external/bsd/mdocml/dist/ |
| mansearch.h | 104 const char *outkey; /* show content of this macro */ member in struct:mansearch
|
| mansearch.c | 95 size_t cur, i, maxres, outkey; local 109 outkey = KEY_Nd; 110 if (search->outkey != NULL) 112 if (0 == strcasecmp(search->outkey, 114 outkey = im; 201 mpage->output = buildoutput(outkey, page);
|
| main.c | 187 search.outkey = "Nd"; 363 search.outkey = oarg; 686 "[-M path] [-m path] [-O outkey] [-S arch]\n" 691 "[-M path] [-m path] [-O outkey] [-S arch]\n" 1053 search.outkey = NULL;
|
| cgi.c | 1000 search.outkey = "Nd";
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| tkey.c | 1220 dns_tsigkey_t **outkey, dns_tsig_keyring_t *ring) { 1239 if (outkey != NULL) { 1240 REQUIRE(*outkey == NULL); 1327 rtkey.expire, rmsg->mctx, ring, outkey); 1352 isc_buffer_t *outtoken, dns_tsigkey_t **outkey, 1367 if (outkey != NULL) { 1368 REQUIRE(*outkey == NULL); 1417 rtkey.inception, rtkey.expire, ring->mctx, ring, outkey)); 1489 dns_tsigkey_t **outkey, dns_tsig_keyring_t *ring, 1503 if (outkey != NULL) 1590 outkey)); local [all...] |
| /src/external/mpl/bind/dist/lib/dns/ |
| tkey.c | 621 dns_tsigkey_t **outkey, dns_tsigkeyring_t *ring, 635 REQUIRE(outkey == NULL || *outkey == NULL); 696 if (outkey == NULL) { 699 *outkey = tsigkey;
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| evp_extra_test2.c | 538 EVP_PKEY *key = NULL, *outkey = NULL; local 549 || !TEST_ptr(outkey = d2i_PUBKEY_ex_fp(fp, NULL, mainctx, NULL)) 550 || !TEST_int_eq(EVP_PKEY_eq(key, outkey), 1)) 556 EVP_PKEY_free(outkey);
|