/openssl/util/perl/OpenSSL/ |
H A D | Ordinals.pm | 267 sub items { subroutine 312 if (scalar @items < 1 || scalar @items > 2) { 344 $items[0]->name(), " and ", $items[1]->name(), ":", 351 if $items[0]->name() eq $items[1]->name() 352 && $items[0]->type() eq $items[1]->type() 381 $self->{contents}->[$items[0]->intnum()] = [ @items ]; 468 my @items = $self->items(filter => f_name($name)); 471 my $number = @items ? $items[0]->number() : '?'; 475 @items = grep { $_->exists() } @items; 540 my @items = $self->items(filter => $f_byalias); [all …]
|
H A D | Util.pm | 286 my @items; # Items to iterate over 298 @items = @$ref; 310 @items = sort keys %$ref; 319 $delim_l . join($separator, map { &$product } @items) . $delim_r;
|
/openssl/ssl/ |
H A D | pqueue.c | 14 pitem *items; member 52 if (pq->items == NULL) { in pqueue_insert() 53 pq->items = item; in pqueue_insert() 57 for (curr = NULL, next = pq->items; in pqueue_insert() 67 pq->items = item; in pqueue_insert() 86 return pq->items; in pqueue_peek() 91 pitem *item = pq->items; in pqueue_pop() 93 if (pq->items != NULL) in pqueue_pop() 94 pq->items = pq->items->next; in pqueue_pop() 104 if (pq->items == NULL) in pqueue_find() [all …]
|
/openssl/crypto/rsa/ |
H A D | rsa_schemes.c | 19 const OSSL_ITEM *items, size_t items_n) in meth2nid() argument 25 if (meth_is_a(meth, items[i].ptr)) in meth2nid() 26 return (int)items[i].id; in meth2nid() 30 static const char *nid2name(int meth, const OSSL_ITEM *items, size_t items_n) in nid2name() argument 35 if (meth == (int)items[i].id) in nid2name() 36 return items[i].ptr; in nid2name()
|
/openssl/test/ |
H A D | quic_cfq_test.c | 55 static QUIC_CFQ_ITEM *items[QUIC_PN_SPACE_NUM][10]; variable 84 items[pn_space][i] = item; in check() 151 for (i = 0; i < OSSL_NELEM(items[0]); ++i) in test_cfq() 152 if (items[pn_space][i] != NULL) in test_cfq() 153 ossl_quic_cfq_mark_lost(cfq, items[pn_space][i], UINT32_MAX); in test_cfq() 159 for (i = 0; i < OSSL_NELEM(items[0]); ++i) in test_cfq() 160 if (items[pn_space][i] != NULL) in test_cfq() 161 ossl_quic_cfq_release(cfq, items[pn_space][i]); in test_cfq()
|
/openssl/ssl/rio/ |
H A D | poll_immediate.c | 15 #define ITEM_N(items, stride, n) \ argument 16 (*(SSL_POLL_ITEM *)((char *)(items) + (n)*(stride))) 23 ITEM_N(items, stride, j).revents = 0; \ 31 ITEM_N(items, stride, i).revents = SSL_POLL_EVENT_F; \ 36 int SSL_poll(SSL_POLL_ITEM *items, in SSL_poll() argument 71 item = &ITEM_N(items, stride, i); in SSL_poll()
|
/openssl/providers/implementations/rands/seeding/ |
H A D | rand_vms.c | 285 ILE3 *items, in prepare_item_list() argument 292 items->ile3$w_code = items_input->code; in prepare_item_list() 294 if (items->ile3$w_code == JPI$_FINALEXC) in prepare_item_list() 295 items->ile3$w_length = 4; in prepare_item_list() 299 items->ile3$ps_bufaddr = databuffer; in prepare_item_list() 300 items->ile3$ps_retlen_addr = 0; in prepare_item_list() 306 items->ile3$w_length = items->ile3$w_code = 0; in prepare_item_list() 307 items->ile3$ps_bufaddr = items->ile3$ps_retlen_addr = NULL; in prepare_item_list() 312 static void massage_JPI(ILE3 *items) in massage_JPI() argument 319 for (; items->ile3$w_length != 0; items++) { in massage_JPI() [all …]
|
/openssl/crypto/ |
H A D | threads_none.c | 62 struct rcu_cb_item *items = lock->cb_items; in ossl_synchronize_rcu() local 67 while (items != NULL) { in ossl_synchronize_rcu() 68 tmp = items->next; in ossl_synchronize_rcu() 69 items->fn(items->data); in ossl_synchronize_rcu() 70 OPENSSL_free(items); in ossl_synchronize_rcu() 71 items = tmp; in ossl_synchronize_rcu()
|
/openssl/doc/internal/man7/ |
H A D | build.info.pod | 27 B<DEPEND[>I<items>B<]=> I<otheritem> ... 35 B<DEFINE[>I<items>B<]=> I<name>[B<=>I<value>] ... 37 B<INCLUDE[>I<items>B<]=> I<dir> ... 125 =item B<I<KEYWORD>[>I<items>B<]> B<=> I<value> ... 147 specify further details for existing items, for example: 157 Multiple space separated items are allowed too: 436 =item B<DEPEND[>I<items>B<]> B<=> I<file> ... 442 rather than the specific I<items>. 504 B<DEPEND[>I<items>B<]> B<=> I<dir>|I<module> 554 value if no I<value> is given) associated with I<items>. [all …]
|
H A D | VERSION.pod | 59 The following items in %config from F<configdata.pm> are affected: 65 These items get their values from B<MAJOR>, B<MINOR>, B<PATCH>, and
|
/openssl/apps/ |
H A D | storeutl.c | 352 int ret = 1, items = 0; in process() local 419 indent_printf(indent, bio_out, "%d: %s: %s\n", items, infostr, in process() 424 indent_printf(indent, bio_out, "%d: %s\n", items, infostr); in process() 489 items++; in process() 492 indent_printf(indent, out, "Total found: %d\n", items); in process()
|
/openssl/util/ |
H A D | mknum.pl | 50 $ordinals->items(comparator => sub { $_[0] cmp $_[1] }, 97 $ordinals->items(comparator => sub { $_[0] cmp $_[1] },
|
H A D | mkdef.pl | 164 $writer->($ordinals->items(%ordinal_opts));
|
/openssl/doc/man3/ |
H A D | SSL_poll.pod | 67 int SSL_poll(SSL_POLL_ITEM *items, 192 Where this event is raised on at least one item in I<items>, SSL_poll() will 194 in I<items> with B<SSL_POLL_EVENT_F> set. See L</RETURN VALUES> for more 309 Unless the I<items> pointer itself is invalid, SSL_poll() will always initialise 310 the I<revents> fields of all items in the input array upon returning, even if it 313 If I<result_count> is non-NULL, it is always written with the number of items in 324 condition while processing a subsequent entry in the I<items> array. 359 If SSL_poll() returns 0 and I<result_count> is nonzero, inspect the I<items> 363 item in I<items> with B<SSL_POLL_EVENT_F> raised. Note that there may be events 364 other than I<SSL_POLL_EVENT_F> output for items which come before the first
|
H A D | OPENSSL_LH_stats.pod | 41 the average number of data items per 'bucket' in the hash table. The 42 'actual load' is the average number of items per 'bucket', but only
|
H A D | OPENSSL_LH_COMPFUNC.pod | 108 will contain items of some particular type and the I<hash> and 175 /* Call "TYPE_cleanup" against all items in a hash table. */ 214 items from a hash table during a call to B<lh_I<TYPE>_doall>() or 223 B<lh_I<TYPE>_num_items>() returns the number of items in the hash table. 228 B<LH_LOAD_MULT>, where the load factor is the number of items divided by the 281 internally represents lh_insert()'d items with a "const void *" 284 parameters that pass back the table items' data pointers - for
|
H A D | SSL_free.pod | 22 SSL_free() also calls the free()ing procedures for indirectly affected items, if 25 Do not explicitly free these indirectly freed up items before or after
|
H A D | SSL_CTX_free.pod | 18 It also calls the free()ing procedures for indirectly affected items, if
|
H A D | ASN1_STRING_TABLE_add.pod | 40 ASN1_STRING_TABLE_cleanup() frees all B<ASN1_STRING_TABLE> items added
|
H A D | SSL_CTX_set_keylog_callback.pod | 28 The key logging callback is called with two items: the B<ssl> object associated
|
H A D | EVP_PKEY_todata.pod | 30 callback returns. The user must preserve the items of interest, or use
|
/openssl/dev/ |
H A D | NEWS-FORMAT.md | 21 descending order of importance. Equally, list items within a block should be 32 - Omit blocks which have no items to list. 104 Bullet items in this block should be complete sentences with trailing full stops 125 Bullet items in this block should be summary lines without a trailing full stop
|
/openssl/doc/designs/quic-design/ |
H A D | qlog.md | 120 Each term is applied in sequence, therefore later items in the filter override 121 earlier items. In the example above, for example, all event types are enabled,
|
H A D | quic-fifm.md | 144 of their membership of the CFQ. The CFQ maintains memory allocation of CFQ items 324 /* Linked list of CFQ items in this packet. */ 419 immediately released. CFQ items may be freed (on ACK or discard) or transitioned 426 - It references a CFQ used to manage CFQ items; 504 implementation. It also takes care of informing the CFQ that any CFQ items
|
/openssl/test/recipes/ |
H A D | 90-test_store.t | 553 my ($function, @items) = @_; 555 foreach (@items) {
|