Home
last modified time | relevance | path

Searched refs:records (Results 1 – 25 of 202) sorted by relevance

123456789

/freebsd-head/crypto/openssl/test/recipes/
HD70-test_sslrecords.t257 my $records = $proxy->record_list;
261 $fatal_alert = 1 if @{$records}[-1]->is_fatal_alert(1) == 10;
277 push @{$records}, $record;
284 my $records = $proxy->record_list;
289 $fatal_alert = 1 if @{$records}[-1]->is_fatal_alert(1) == 10;
319 push @{$records}, $record;
334 push @{$records}, $record;
487 my $records = $proxy->record_list;
495 $fatal_alert = 1 if @{$records}[-1]->is_fatal_alert(0) == 10;
502 @{$records}[-1]->version(),
[all …]
/freebsd-head/contrib/xz/src/liblzma/common/
HDindex_hash.c51 lzma_index_hash_info records; member
86 index_hash->records.blocks_size = 0; in lzma_index_hash_init()
87 index_hash->records.uncompressed_size = 0; in lzma_index_hash_init()
88 index_hash->records.count = 0; in lzma_index_hash_init()
89 index_hash->records.index_list_size = 0; in lzma_index_hash_init()
97 (void)lzma_check_init(&index_hash->records.check, LZMA_CHECK_BEST); in lzma_index_hash_init()
240 hash_append(&index_hash->records, in lzma_index_hash_decode()
251 < index_hash->records.blocks_size in lzma_index_hash_decode()
253 < index_hash->records.uncompressed_size in lzma_index_hash_decode()
255 < index_hash->records.index_list_size) in lzma_index_hash_decode()
[all …]
HDindex.c102 index_record records[]; member
431 lzma_index_prealloc(lzma_index *i, lzma_vli records) in lzma_index_prealloc() argument
433 if (records > PREALLOC_MAX) in lzma_index_prealloc()
434 records = PREALLOC_MAX; in lzma_index_prealloc()
436 i->prealloc = (size_t)(records); in lzma_index_prealloc()
565 g == NULL ? 0 : g->records[g->last].unpadded_sum, in lzma_index_file_size()
653 : vli_ceil4(g->records[g->last].unpadded_sum); in lzma_index_append()
655 : g->records[g->last].uncompressed_sum; in lzma_index_append()
711 g->records[g->last].uncompressed_sum in lzma_index_append()
713 g->records[g->last].unpadded_sum in lzma_index_append()
[all …]
/freebsd-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
HDtst.MultiAggPrinta.ksh.out1 …low = null, records = [org.opensolaris.os.dtrace.PrintaRecord[aggregations = [org.opensolaris.os.d…
5 …d[aggregations = [org.opensolaris.os.dtrace.Aggregation[name = , id = 1, records = [org.opensolari…
7 …[aggregations = [org.opensolaris.os.dtrace.Aggregation[name = a, id = 2, records = [org.opensolari…
13records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris…
21 …= 4, records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [], value = 3]], org.opensolar…
23 …= 4, records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [], value = 3]], org.opensolar…
25 …[aggregations = [org.opensolaris.os.dtrace.Aggregation[name = c, id = 4, records = [org.opensolari…
27records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris…
33records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris…
39records = [org.opensolaris.os.dtrace.AggregationRecord[tuple = [1, 2], value = 1], org.opensolaris…
[all …]
/freebsd-head/contrib/llvm-project/clang/utils/TableGen/
HDClangASTPropertiesEmitter.cpp98 ASTPropsEmitter(RecordKeeper &records, raw_ostream &out) in ASTPropsEmitter() argument
99 : Out(out), Records(records) { in ASTPropsEmitter()
103 records.getAllDerivedDefinitions(PropertyClassName)) { in ASTPropsEmitter()
110 records.getAllDerivedDefinitions(CreationRuleClassName)) { in ASTPropsEmitter()
124 records.getAllDerivedDefinitions(OverrideRuleClassName)) { in ASTPropsEmitter()
138 records.getAllDerivedDefinitions(ReadHelperRuleClassName)) { in ASTPropsEmitter()
152 records.getAllDerivedDefinitions(PropertyTypeClassName)) { in ASTPropsEmitter()
162 records.getAllDerivedDefinitions(TypeKindClassName)) { in ASTPropsEmitter()
175 records.getAllDerivedDefinitions(TypeCaseClassName)) { in ASTPropsEmitter()
594 static void emitASTReader(RecordKeeper &records, raw_ostream &out, in emitASTReader() argument
[all …]
HDASTTableGen.cpp108 static void visitHierarchy(RecordKeeper &records, in visitHierarchy() argument
112 if (!records.getClass(nodeClassName)) { in visitHierarchy()
118 auto nodes = records.getAllDerivedDefinitions(nodeClassName); in visitHierarchy()
139 void clang::tblgen::visitASTNodeHierarchyImpl(RecordKeeper &records, in visitASTNodeHierarchyImpl() argument
142 visitHierarchy(records, nodeClassName, visit); in visitASTNodeHierarchyImpl()
HDClangTypeNodesEmitter.cpp83 TypeNodeEmitter(RecordKeeper &records, raw_ostream &out) in TypeNodeEmitter() argument
84 : Records(records), Out(out), in TypeNodeEmitter()
206 void clang::EmitClangTypeNodes(RecordKeeper &records, raw_ostream &out) { in EmitClangTypeNodes() argument
207 TypeNodeEmitter(records, out).emit(); in EmitClangTypeNodes()
/freebsd-head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
HDTestMultiAggPrinta.java74 List <Record> records = data.getRecords(); in probeDataString() local
78 for (int i = 0; i < records.size(); ++i) { in probeDataString()
82 record = records.get(i); in probeDataString()
115 List <Record> records = data.getRecords(); in main()
116 for (Record r : records) { in main()
/freebsd-head/crypto/openssl/util/perl/TLSProxy/
HDMessage.pm433 $records,
440 records => $records,
466 my $numrecs = $#{$self->records};
479 my ($rec) = @{$self->records};
544 foreach my $rec (@{$self->records}) {
593 sub records subroutine
597 $self->{records} = shift;
599 return $self->{records};
HDCertificateVerify.pm20 $records,
28 $records,
44 my $record = ${$self->records}[0];
HDNextProto.pm20 $records,
28 $records,
HDServerKeyExchange.pm20 $records,
28 $records,
69 my $record = ${$self->records}[0];
HDNewSessionTicket.pm20 $records,
28 $records,
HDEncryptedExtensions.pm20 $records,
28 $records,
HDCertificateRequest.pm20 $records,
28 $records,
/freebsd-head/sys/contrib/openzfs/lib/libzutil/
HDzutil_pool.c108 nvlist_t ***records, uint_t *numrecords) in zpool_history_unpack() argument
134 tmp = realloc(*records, in zpool_history_unpack()
141 *records = tmp; in zpool_history_unpack()
143 (*records)[*numrecords - 1] = nv; in zpool_history_unpack()
/freebsd-head/contrib/tcpdump/
HDprint-sflow.c103 nd_uint32_t records; member
118 nd_uint32_t records; member
204 nd_uint32_t records; member
211 nd_uint32_t records; member
481 const u_char *pointer, u_int len, u_int records) in sflow_print_counter_records() argument
491 nrecords = records; in sflow_print_counter_records()
569 nrecords = GET_BE_U_4(sflow_counter_sample->records); in sflow_print_counter_sample()
595 nrecords = GET_BE_U_4(sflow_expanded_counter_sample->records); in sflow_print_expanded_counter_sample()
670 const u_char *pointer, u_int len, u_int records) in sflow_print_flow_records() argument
680 nrecords = records; in sflow_print_flow_records()
[all …]
/freebsd-head/tests/sys/netpfil/pf/
HDpft_read_ipfix.py44 for r in datafl.records:
51 for r in datafl.records:
56 for r in datafl.records:
/freebsd-head/contrib/unbound/contrib/
HDaaaa-filter-iterator.patch11 +This forces the dropping of all AAAA records, unless in the case of
12 +explicit AAAA queries, when no A records have been confirmed.
28 + * ASN: Lookup A records from rrset cache.
40 + /* get cached A records for queried name */
82 + /* ASN: For AAAA records only... */
85 + * records, no questions asked. If this IS a AAAA query
86 + * then remove AAAA records if we have an A record.
127 + * purpose of caching A records for the queried name.
160 + "preloading records in cache for",
177 + /* ASN: If we have a AAAA query, then also query for A records */
[all …]
/freebsd-head/lib/libc/db/
HDchangelog5 recno: Rework fixed-length records so that closing and reopening
6 the file now works. Pad short records on input. Never do
45 Create fixed-length intermediate records past "end" of DB
47 Realloc bug when reading in fixed records.
54 btree: If enough duplicate records were inserted and then deleted
/freebsd-head/crypto/openssl/doc/man3/
HDSSL_CTX_dane_enable.pod74 TLSA records that apply to the remote TLS peer.
81 A return value of 0 indicates that "unusable" TLSA records (with invalid or
87 is encountered in processing some records.
89 If no TLSA records are added successfully, DANE authentication is not enabled,
111 If no TLSA records directly matched any elements of the certificate chain, but
147 DANE-EE(3) TLSA records.
155 DANE-EE(3) TLSA records, and can be disabled in applications where it is safe
158 records already make it possible for a remote domain to redirect client
187 DNSSEC-validated TLSA records.
258 * Opportunistic DANE clients use unauthenticated TLS when all TLSA records
[all …]
/freebsd-head/contrib/file/magic/Magdir/
HDclarion17 # number of records
18 >5 lelong x \b, %d records
/freebsd-head/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
HDCodeViewTypes.def59 // Member type records. These are generally not length prefixed, and appear
77 // ID leaf records. Subsequent leaf types may be referenced from .debug$S.
92 // 16 bit type records.
167 // Member type records. These are generally not length prefixed, and appear
196 // ID leaf records. Subsequent leaf types may be referenced from .debug$S.
198 // Numeric leaf types. These are generally contained in other records, and not
/freebsd-head/contrib/ofed/infiniband-diags/src/
HDvendstat.c199 is3_config_space_t *cs, unsigned records) in do_config_space_records() argument
203 if (records > 18) in do_config_space_records()
204 records = 18; in do_config_space_records()
205 for (i = 0; i < records; i++) { in do_config_space_records()
213 IB_MLX_IS3_CONFIG_SPACE_ACCESS, 2 << 22 | records << 16, in do_config_space_records()
218 for (i = 0; i < records; i++) { in do_config_space_records()
/freebsd-head/usr.sbin/kldxref/
HDfileformat2 linker.hints file consists from the one or more records,
9 All subsequent records have following format:

123456789