Home
last modified time | relevance | path

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

12345678910>>...129

/src/contrib/libarchive/libarchive/test/
H A Dtest_open_failure.c43 struct my_data *private = (struct my_data *)_private; in my_read() local
46 assertEqualInt(MAGIC, private->magic); in my_read()
47 ++private->read_called; in my_read()
48 return (private->read_return); in my_read()
54 struct my_data *private = (struct my_data *)_private; in my_write() local
58 assertEqualInt(MAGIC, private->magic); in my_write()
59 ++private->write_called; in my_write()
60 return (private->write_return); in my_write()
66 struct my_data *private = (struct my_data *)_private; in my_open() local
68 assertEqualInt(MAGIC, private->magic); in my_open()
[all …]
H A Dtest_write_format_zip_large.c68 struct fileblocks *private = _private; in memory_write() local
76 private->last->gap_size += (int64_t)size; in memory_write()
85 if (private->last == NULL) { in memory_write()
86 private->first = private->last = block; in memory_write()
88 private->last->next = block; in memory_write()
89 private->last = block; in memory_write()
93 private->filesize += size; in memory_write()
100 struct fileblocks *private = _private; in memory_read() local
105 while (private->current != NULL && private->buff == NULL && private->gap_remaining == 0) { in memory_read()
106 private->current = private->current->next; in memory_read()
[all …]
H A Dtest_tar_large.c83 struct memdata *private = _private; in memory_write() local
98 private->last->filebytes += (int64_t)size; in memory_write()
107 if (private->last == NULL) { in memory_write()
108 private->first = private->last = block; in memory_write()
110 private->last->next = block; in memory_write()
111 private->last = block; in memory_write()
121 struct memdata *private = _private; in memory_read() local
127 free(private->buff); in memory_read()
128 private->buff = NULL; in memory_read()
129 if (private->first == NULL) { in memory_read()
[all …]
/src/lib/libc++/
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" ] },
5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
6 { include: [ "<__algorithm/clamp.h>", "private", "<algorithm>", "public" ] },
7 { include: [ "<__algorithm/comp.h>", "private", "<algorithm>", "public" ] },
8 { include: [ "<__algorithm/comp_ref_type.h>", "private", "<algorithm>", "public" ] },
9 { include: [ "<__algorithm/copy.h>", "private", "<algorithm>", "public" ] },
10 { include: [ "<__algorithm/copy_backward.h>", "private", "<algorithm>", "public" ] },
11 { include: [ "<__algorithm/copy_if.h>", "private", "<algorithm>", "public" ] },
[all …]
/src/crypto/openssl/test/
H A Ddrbgtest.c176 EVP_RAND_CTX *private, in test_drbg_reseed() argument
202 || !TEST_int_ne(private_reseed = reseed_counter(private), 0)) in test_drbg_reseed()
230 || !TEST_int_eq(state(private), expected_state)) in test_drbg_reseed()
249 if (!TEST_int_ge(reseed_counter(private), private_reseed) in test_drbg_reseed()
250 || !TEST_uint_ge(reseed_counter(private), in test_drbg_reseed()
263 || !TEST_time_t_ge(reseed_time(private), reseed_time(primary))) in test_drbg_reseed()
284 int private; /* true if the private drbg was used */ member
301 result = l->private - r->private; in compare_drbg_fork_result()
330 EVP_RAND_CTX *private, in test_drbg_reseed_in_child() argument
358 result[0].private = 0; in test_drbg_reseed_in_child()
[all …]
/src/crypto/openssl/doc/man3/
H A DSSL_CTX_use_certificate.pod54 These functions load the certificates and private keys into the SSL_CTX
91 SSL_CTX_use_PrivateKey() adds B<pkey> as private key to B<ctx>. B<ctx> B<MUST NOT> be NULL.
92 SSL_CTX_use_RSAPrivateKey() adds the private key B<rsa> of type RSA
93 to B<ctx>. SSL_use_PrivateKey() adds B<pkey> as private key to B<ssl>;
94 SSL_use_RSAPrivateKey() adds B<rsa> as private key of type RSA to B<ssl>.
95 If a certificate has already been set and the private key does not belong
96 to the certificate an error is returned. To change a [certificate/private-key]
98 SSL_CTX_use_certificate() before setting the private key with
103 certificate B<x>, private key B<key>, and certificate B<chain> onto the
104 corresponding B<ssl> or B<ctx>. The B<pkey> argument must be the private
[all …]
/src/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()
/src/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 …]
/src/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DDAGISelMatcher.h236 private:
260 private:
291 private:
305 private:
320 private:
337 private:
357 private:
372 private:
391 private:
416 private:
[all …]
/src/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()
/src/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:
204 …rl ../../cf/make-proto.pl -q -P comment -p ntlm/ntlm-private.h $(ntlmsrc) || rm -f ntlm/ntlm-priva…
238 ntlm/ntlm-private.h \
239 spnego/spnego-private.h \
240 krb5/gsskrb5-private.h
266 $(srcdir)/krb5/gsskrb5-private.h \
267 $(srcdir)/spnego/spnego-private.h \
[all …]
/src/crypto/openssl/doc/man1/
H A Dopenssl-pkcs8.pod.in6 openssl-pkcs8 - PKCS#8 format private key conversion command
36 This command processes private keys in PKCS#8 format. It can handle
50 Normally a PKCS#8 private key is expected on input and a private key will be
52 reversed: it reads a private key and writes a PKCS#8 format key.
64 unencrypted private key in PKCS#8 format. If the B<-traditional> option is
65 used then a traditional format private key is written instead.
68 unencrypted private key in traditional DER format.
70 If B<-topk8> is used then any supported private key can be used for the input
77 When this option is present and B<-topk8> is not a traditional format private
118 This option does not encrypt private keys at all and should only be used
[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
92 By default a private key is read from the input.
94 If the input contains no public key but a private key, its public part is used.
121 Encrypt the PEM encoded private key with the supplied cipher. Any algorithm
134 Normally a private key is written using standard format: this is PKCS#8 form
140 By default the private and public key is output;
158 Output in text form only the public key components (also for private keys).
175 This option only applies to elliptic curve based public and private keys.
[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.
86 These options encrypt the private key with the DES, triple DES, IDEA or
97 Prints out the public, private key components and parameters.
109 By default a private key is read from the input.
111 If the input contains no public key but a private key, its public part is used.
115 By default a private key is output. With this option a public
141 This option omits the public key components from the private key output.
[all …]
H A Dopenssl-rsa.pod.in73 When writing a private key, use the traditional PKCS#1 format
97 These options encrypt the private key with the specified
107 Prints out the various public or private key components in
120 This option checks the consistency of an RSA private key.
124 By default a private key is read from the input.
126 If the input contains no public key but a private key, its public part is used.
130 By default a private key is output: with this option a public
166 To remove the pass phrase on an RSA private key:
170 To encrypt a private key using triple DES:
174 To convert a private key from PEM to DER format:
[all …]
/src/sys/compat/linuxkpi/common/src/
H A Dlinux_seq_file.c161 void *private; in __seq_open_private() local
164 private = malloc(size, M_LSEQ, M_NOWAIT|M_ZERO); in __seq_open_private()
165 if (private == NULL) in __seq_open_private()
170 free(private, M_LSEQ); in __seq_open_private()
175 seq_file->private = private; in __seq_open_private()
177 return (private); in __seq_open_private()
196 ((struct seq_file *)f->private_data)->private = d; in _single_open_without_sbuf()
247 free(seq->private, M_LSEQ); in seq_release_private()
/src/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.h130 private:
169 private:
198 private:
237 private:
302 private:
327 private:
352 private:
382 private:
401 private:
418 private:
[all …]
/src/contrib/libarchive/libarchive/
H A Darchive_read_disk_private.h70 const char * (*lookup_gname)(void *private, int64_t gid);
71 void (*cleanup_gname)(void *private);
73 const char * (*lookup_uname)(void *private, int64_t uid);
74 void (*cleanup_uname)(void *private);
/src/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DFrontendActions.h25 private ExtractAPIActionBase {
30 private:
60 private ExtractAPIActionBase {
72 private:
/src/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.
/src/contrib/file/magic/Magdir/
H A Dssl17 0 string -----BEGIN\040RSA\040PRIVATE PEM RSA private key
19 !:mime text/x-ssl-private-key
21 0 string -----BEGIN\040RSA\040PRIVATE PEM RSA private key
23 0 string -----BEGIN\040DSA\040PRIVATE PEM DSA private key
25 0 string -----BEGIN\040EC\040PRIVATE PEM EC private key
27 0 string -----BEGIN\040ECDSA\040PRIVATE PEM ECDSA private key
/src/contrib/opencsd/decoder/source/c_api/
H A Docsd_c_api_obj.h32 private:
61 private:
86 private:
116 private:
142 private:
175 private:
/src/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h69 private:
83 private:
100 private:
118 private:
131 private:
/src/crypto/openssh/regress/unittests/kex/
H A Dtest_kex.c82 struct sshkey *private, *public; in do_kex_with_key() local
89 ASSERT_INT_EQ(sshkey_generate(keytype, bits, &private), 0); in do_kex_with_key()
93 ASSERT_INT_EQ(sshkey_from_private(private, &public), 0); in do_kex_with_key()
100 keyname = strdup(sshkey_ssh_name(private)); in do_kex_with_key()
110 ASSERT_INT_EQ(ssh_add_hostkey(server, private), 0); in do_kex_with_key()
139 ASSERT_INT_EQ(ssh_add_hostkey(server2, private), 0); in do_kex_with_key()
170 sshkey_free(private); in do_kex_with_key()

12345678910>>...129