Home
last modified time | relevance | path

Searched refs:private (Results 1 – 25 of 2290) sorted by relevance

12345678910>>...92

/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_open_failure.c47 ++private->read_called; in my_read()
89 memset(&private, 0, sizeof(private)); in DEFINE_TEST()
90 private.magic = MAGIC; in DEFINE_TEST()
104 memset(&private, 0, sizeof(private)); in DEFINE_TEST()
105 private.magic = MAGIC; in DEFINE_TEST()
119 memset(&private, 0, sizeof(private)); in DEFINE_TEST()
134 memset(&private, 0, sizeof(private)); in DEFINE_TEST()
153 memset(&private, 0, sizeof(private)); in DEFINE_TEST()
168 memset(&private, 0, sizeof(private)); in DEFINE_TEST()
185 memset(&private, 0, sizeof(private)); in DEFINE_TEST()
[all …]
H A Dtest_write_format_zip_large.c105 private->first = private->last = block; in memory_write()
124 while (private->current != NULL && private->buff == NULL && private->gap_remaining == 0) { in memory_read()
125 private->current = private->current->next; in memory_read()
127 private->buff = private->current->buff; in memory_read()
160 private->current = private->current->next; in memory_read()
162 private->buff = private->current->buff; in memory_read()
179 private->current = private->first; in memory_read_open()
182 private->buff = private->current->buff; in memory_read_open()
210 private->current = private->first; in memory_read_seek()
214 private->buff = (char *)private->current->buff in memory_read_seek()
[all …]
H A Dtest_tar_large.c107 if (private->last == NULL) { in memory_write()
108 private->first = private->last = block; in memory_write()
111 private->last = block; in memory_write()
127 free(private->buff); in memory_read()
128 private->buff = NULL; in memory_read()
130 private->last = NULL; in memory_read()
142 private->filebytes -= size; in memory_read()
148 block = private->first; in memory_read()
155 private->buff = NULL; in memory_read()
173 private->last = NULL; in memory_read_skip()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dlibcxx.imp2 { include: [ "<__algorithm/adjacent_find.h>", "private", "<algorithm>", "public" ] },
3 { include: [ "<__algorithm/all_of.h>", "private", "<algorithm>", "public" ] },
4 { include: [ "<__algorithm/any_of.h>", "private", "<algorithm>", "public" ] },
6 { include: [ "<__algorithm/clamp.h>", "private", "<algorithm>", "public" ] },
7 { include: [ "<__algorithm/comp.h>", "private", "<algorithm>", "public" ] },
251 { include: [ "<__bit/blsr.h>", "private", "<bit>", "public" ] },
253 { include: [ "<__bit/countl.h>", "private", "<bit>", "public" ] },
254 { include: [ "<__bit/countr.h>", "private", "<bit>", "public" ] },
426 { include: [ "<__fwd/ios.h>", "private", "<ios>", "public" ] },
432 { include: [ "<__fwd/span.h>", "private", "<span>", "public" ] },
[all …]
/freebsd/crypto/openssl/test/
H A Ddrbgtest.c309 result = l->private - r->private; in compare_drbg_fork_result()
366 result[0].private = 0; in test_drbg_reseed_in_child()
371 result[1].private = 1; in test_drbg_reseed_in_child()
451 result[0].private = 0; in test_rand_reseed_on_fork()
456 result[1].private = 1; in test_rand_reseed_on_fork()
473 ++duplicate[result[i].private]; in test_rand_reseed_on_fork()
529 EVP_RAND_CTX *primary, *public, *private; in test_rand_fork_safety() local
577 if (!TEST_ptr_ne(public, private) in test_rand_reseed()
579 || !TEST_ptr_ne(private, primary) in test_rand_reseed()
590 EVP_RAND_uninstantiate(private); in test_rand_reseed()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_use_certificate.pod91 SSL_CTX_use_PrivateKey() adds B<pkey> as private key to B<ctx>.
92 SSL_CTX_use_RSAPrivateKey() adds the private key B<rsa> of type RSA
98 SSL_CTX_use_certificate() before setting the private key with
113 private key being assigned via SSL_CTX_use_PrivateKey(), etc.
115 SSL_CTX_use_PrivateKey_ASN1() adds the private key of type B<pk>
117 SSL_CTX_use_RSAPrivateKey_ASN1() adds the private key of type RSA
122 SSL_CTX_use_PrivateKey_file() adds the first private key found in
140 The internal certificate store of OpenSSL can hold several private
146 one certificate or private key, consequently
176 functions to set a new private key will replace any private key that has already
[all …]
/freebsd/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dtraverse.c45 tdtrav_cb_f *preops, tdtrav_cb_f *postops, void *private) in tdtrav_init() argument
51 tdtd->private = private; in tdtrav_init()
107 tdtrav_assert(tdesc_t *node __unused, tdesc_t **nodep __unused, void *private __unused) in tdtrav_assert()
157 if ((rc = travcb(this, thisp, tdtd->private)) < 0) in tdtraverse()
168 if ((rc = travcb(this, thisp, tdtd->private)) < 0) in tdtraverse()
180 (rc = travcb(this, thisp, tdtd->private)) < 0) in tdtraverse()
208 tdtrav_cb_f *postops, void *private) in iitraverse() argument
212 tdtrav_init(&tdtd, vgenp, firstops, preops, postops, private); in iitraverse()
219 tdtrav_cb_f *preops, tdtrav_cb_f *postops, void *private) in iitraverse_hash() argument
223 tdtrav_init(&tdtd, vgenp, firstops, preops, postops, private); in iitraverse_hash()
H A Dhash.c115 hash_add_cb(void *node, void *private) in hash_add_cb() argument
117 hash_add((hash_t *)private, node); in hash_add_cb()
145 void *private) in hash_match() argument
149 return (list_iter(hash->h_buckets[bucket], fun, private) < 0); in hash_match()
170 void *private) in hash_find_iter() argument
178 hd.hd_private = private; in hash_find_iter()
215 hash_iter(hash_t *hash, int (*fun)(void *, void *), void *private) in hash_iter() argument
224 private)) < 0) in hash_iter()
245 hash_free(hash_t *hash, void (*datafree)(void *, void *), void *private) in hash_free() argument
253 list_free(hash->h_buckets[i], datafree, private); in hash_free()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DProgramPoint.h47 private:
88 private:
236 private:
257 private:
281 private:
298 private:
322 private:
345 private:
360 private:
375 private:
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.h237 private:
262 private:
294 private:
310 private:
326 private:
344 private:
364 private:
381 private:
401 private:
425 private:
[all …]
/freebsd/cddl/contrib/opensolaris/tools/ctf/common/
H A Dlist.c73 list_defcmp(void *d1, void *d2, void *private __unused) in list_defcmp()
80 void *private) in list_remove() argument
89 if (cmp(le->l_data, data, private) == 0) { in list_remove()
101 list_free(list_t *list, void (*datafree)(void *, void *), void *private) in list_free() argument
109 datafree(le->l_data, private); in list_free()
119 list_iter(list_t *list, int (*func)(void *, void *), void *private) in list_iter() argument
127 if ((cbrc = func(list->l_data, private)) < 0) in list_iter()
138 list_count_cb(void *data __unused, void *private __unused) in list_count_cb()
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-pkcs8.pod.in6 openssl-pkcs8 - PKCS#8 format private key conversion command
35 This command processes private keys in PKCS#8 format. It can handle
49 Normally a PKCS#8 private key is expected on input and a private key will be
51 reversed: it reads a private key and writes a PKCS#8 format key.
64 used then a traditional format private key is written instead.
67 unencrypted private key in traditional DER format.
115 code signing software used unencrypted private keys.
211 Convert a private key to PKCS#8 unencrypted format:
215 Convert a private key to PKCS#5 v2.0 format using triple DES:
234 Read a DER unencrypted PKCS#8 format private key:
[all …]
H A Dopenssl-pkey.pod.in10 openssl-pkey - public or private key processing command
37 This command processes public or private keys. They can be
56 This option checks the consistency of a key pair for both public and private
91 By default a private key is read from the input.
134 By default the private and public key is output;
183 To remove the pass phrase on a private key:
187 To encrypt a private key using triple DES:
191 To convert a private key from PEM to DER format:
195 To print out the components of a private key to standard output:
199 To print out the public components of a private key to standard output:
[all …]
H A Dopenssl-ec.pod.in40 private key format specified in 'SEC 1: Elliptic Curve Cryptography'
41 (http://www.secg.org/). To convert an OpenSSL EC private key into the
42 PKCS#8 private key format use the L<openssl-pkcs8(1)> command.
62 Private keys are an SEC1 private key or PKCS#8 format.
97 Prints out the public, private key components and parameters.
114 By default a private key is output. With this option a public
144 This option checks the consistency of an EC private or public key.
160 To encrypt a private key using triple DES:
164 To convert a private key from PEM to DER format:
168 To print out the components of a private key to standard output:
[all …]
H A Dopenssl-pkcs12.pod.in124 No private keys will be output.
194 Use AES to encrypt private keys before outputting.
198 Use ARIA to encrypt private keys before outputting.
202 Use Camellia to encrypt private keys before outputting.
206 Use DES to encrypt private keys before outputting.
214 Use IDEA to encrypt private keys before outputting.
218 Don't encrypt private keys at all.
252 The private key input for PKCS12 output.
254 contain a private key.
388 the one corresponding to the private key.
[all …]
/freebsd/crypto/heimdal/lib/gssapi/
H A DMakefile.am49 krb5/gsskrb5-private.h \
168 spnego/spnego-private.h
187 ntlm/ntlm-private.h \
203 $(srcdir)/ntlm/ntlm-private.h:
238 ntlm/ntlm-private.h \
239 spnego/spnego-private.h \
240 krb5/gsskrb5-private.h
266 $(srcdir)/krb5/gsskrb5-private.h \
268 $(srcdir)/ntlm/ntlm-private.h
292 $(srcdir)/krb5/gsskrb5-private.h:
[all …]
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_seq_file.c170 void *private; in __seq_open_private() local
173 private = malloc(size, M_LSEQ, M_NOWAIT|M_ZERO); in __seq_open_private()
174 if (private == NULL) in __seq_open_private()
179 free(private, M_LSEQ); in __seq_open_private()
184 seq_file->private = private; in __seq_open_private()
186 return (private); in __seq_open_private()
205 ((struct seq_file *)f->private_data)->private = d; in _single_open_without_sbuf()
256 free(seq->private, M_LSEQ); in seq_release_private()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_disk_private.h69 const char * (*lookup_gname)(void *private, int64_t gid);
70 void (*cleanup_gname)(void *private);
72 const char * (*lookup_uname)(void *private, int64_t uid);
73 void (*cleanup_uname)(void *private);
/freebsd/contrib/opencsd/decoder/source/c_api/
H A Docsd_c_api_obj.h32 private:
61 private:
86 private:
116 private:
142 private:
175 private:
/freebsd/crypto/openssh/
H A DPROTOCOL.key1 This document describes the private key format for OpenSSH.
6 an encrypted list of matching private keys.
19 string encrypted, padded list of private keys
30 3. Unencrypted list of N private keys
51 where each private key is encoded using the same rules as used for
63 encrypt the unencrypted list of private keys.
/freebsd/crypto/openssh/regress/unittests/kex/
H A Dtest_kex.c81 struct sshkey *private, *public; in do_kex_with_key() local
88 ASSERT_INT_EQ(sshkey_generate(keytype, bits, &private), 0); in do_kex_with_key()
92 ASSERT_INT_EQ(sshkey_from_private(private, &public), 0); in do_kex_with_key()
99 keyname = strdup(sshkey_ssh_name(private)); in do_kex_with_key()
109 ASSERT_INT_EQ(ssh_add_hostkey(server, private), 0); in do_kex_with_key()
138 ASSERT_INT_EQ(ssh_add_hostkey(server2, private), 0); in do_kex_with_key()
168 sshkey_free(private); in do_kex_with_key()
/freebsd/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h129 private:
168 private:
197 private:
236 private:
301 private:
336 private:
367 private:
386 private:
403 private:
415 private:
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DFrontendActions.h25 private ExtractAPIActionBase {
30 private:
63 private ExtractAPIActionBase {
75 private:
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h69 private:
83 private:
100 private:
118 private:
131 private:
/freebsd/crypto/heimdal/lib/kadm5/
H A DMakefile.am35 dist_kadm5include_HEADERS = admin.h private.h kadm5-pwcheck.h
36 dist_kadm5include_HEADERS += kadm5-protos.h kadm5-private.h
69 private.h \
103 private.h \
167 …kadm5clnt_la_OBJECTS) $(libkadm5srv_la_OBJECTS): $(srcdir)/kadm5-protos.h $(srcdir)/kadm5-private.h
177 $(srcdir)/kadm5-private.h:
179 -p kadm5-private.h \
182 || rm -f kadm5-private.h

12345678910>>...92