Searched refs:record (Results 51 - 75 of 473) sorted by relevance

1234567891011>>

/netbsd-current/usr.sbin/sdpd/
H A Dsdpd.h71 struct record { struct
73 bool valid; /* record is current */
79 LIST_ENTRY(record) next; /* next ServiceRecord */
83 typedef struct record record_t;
92 bool priv; /* descriptor may modify service record db */
112 LIST_HEAD(, record) rlist; /* ServiceRecord list */
146 /* record.c */
H A DMakefile7 SRCS= db.c log.c main.c record.c server.c service.c
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/recipes/
H A D70-test_sslversions.t73 my $record = pop @{$proxy->record_list};
75 && $record->version() == TLSProxy::Record::VERS_TLS_1_2,
89 $record = pop @{$proxy->record_list};
91 && $record->version() == TLSProxy::Record::VERS_TLS_1_2
100 $record = pop @{$proxy->record_list};
102 && $record->version() == TLSProxy::Record::VERS_TLS_1_1,
109 $record = pop @{$proxy->record_list};
111 && $record->version() == TLSProxy::Record::VERS_TLS_1_2
/netbsd-current/crypto/external/bsd/openssl/dist/test/recipes/
H A D70-test_sslversions.t76 my $record = pop @{$proxy->record_list};
78 && $record->version() == TLSProxy::Record::VERS_TLS_1_2,
92 $record = pop @{$proxy->record_list};
94 && $record->version() == TLSProxy::Record::VERS_TLS_1_2
105 $record = pop @{$proxy->record_list};
107 && $record->version() == TLSProxy::Record::VERS_TLS_1_1,
114 $record = pop @{$proxy->record_list};
116 && $record->version() == TLSProxy::Record::VERS_TLS_1_2
/netbsd-current/external/bsd/openldap/dist/tests/progs/
H A Dslapd-addel.c49 LDIFRecord *record, int friendly );
73 LDIFRecord record = {}; local
120 if ( ldap_parse_ldif_record( &bv, lineno, &record, "slapd-addel",
127 if ( ( record.lr_op != LDAP_REQ_ADD ) || ( !record.lrop_mods ) ) {
138 do_addel( config, &record, friendly );
221 LDIFRecord *record,
235 (long) pid, config->loops, record->lr_dn.bv_val );
241 rc = ldap_add_ext_s( ld, record->lr_dn.bv_val, record
219 do_addel( struct tester_conn_args *config, LDIFRecord *record, int friendly ) argument
[all...]
/netbsd-current/usr.bin/audio/ctl/
H A Dctl.c121 { "record", &info.record, FORMAT, ALIAS },
122 { "record.rate", &info.record.sample_rate,UINT, 0 },
123 { "record.sample_rate", &info.record.sample_rate,UINT, ALIAS },
124 { "record.channels", &info.record.channels, UINT, 0 },
125 { "record.precision", &info.record
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Drecdump.c7 /* convert record stream to printable form
11 /* recdump reads a record stream from standard input and
37 #include <record.h>
H A Drec_streamlf.c7 /* record interface to stream-lf files
27 /* This module implements record I/O on top of stream-lf files.
29 /* rec_streamlf_get() reads one record from the specified stream.
33 /* of data read. The result is REC_TYPE_NORM when the record was
35 /* was found (the record was larger than \fImaxlen\fR characters or
39 /* rec_streamlf_put() writes one record to the named stream.
40 /* When the record type is REC_TYPE_NORM, a newline character is
41 /* appended to the output. The result is the record type, or
49 /* record(3) typed records
72 #include <record
[all...]
/netbsd-current/external/mit/xorg/server/xorg-server.old/
H A DMakefile10 SUBDIR+= Xi xkb xkbstubs dbe record xfixes
/netbsd-current/external/gpl3/gcc/dist/gcc/config/i386/
H A Dgcc-auto-profile88 if ! perf record -e $E -b "$@" ; then
95 exec perf record -e $E -b "$@"
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Dcsv.d14 * $(LI A record is separated by a new line (CRLF,LF,CR))
15 * $(LI A final record may end with a new line)
16 * $(LI A header may be provided as the first record in input)
17 * $(LI A record has fields separated by a comma (customizable))
21 * $(LI Each record should contain the same number of fields)
37 * foreach (record; csvReader!(Tuple!(string, string, int))(text))
40 * record[0], record[1], record[2]);
46 * foreach (record;
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dcsv.d14 * $(LI A record is separated by a new line (CRLF,LF,CR))
15 * $(LI A final record may end with a new line)
16 * $(LI A header may be provided as the first record in input)
17 * $(LI A record has fields separated by a comma (customizable))
21 * $(LI Each record should contain the same number of fields)
37 * foreach (record; csvReader!(Tuple!(string, string, int))(text))
40 * record[0], record[1], record[2]);
46 * foreach (record;
[all...]
/netbsd-current/lib/libc/arch/powerpc64/sys/
H A Dsbrk.S20 stptr %r7,0(%r8) # record new break
/netbsd-current/crypto/external/bsd/openssl.old/dist/util/perl/TLSProxy/
H A DCertificateVerify.pm44 my $record = ${$self->records}[0];
47 || $record->version() == TLSProxy::Record::VERS_TLS_1_2) {
H A DRecord.pm72 #Get the record header (unpack can't fail if $packet is too short)
87 my $record = TLSProxy::Record->new(
105 $record->decryptETM();
107 $record->decrypt();
109 $record->encrypted(1);
113 .$record_type{$record->content_type()}."\n";
118 push @record_list, $record;
120 #Now figure out what messages are contained within this record
121 my @messages = TLSProxy::Message->get_messages($server, $record);
235 #TODO(TLS1.3): Eventually it is sufficient just to check the record
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/util/perl/TLSProxy/
H A DCertificateVerify.pm44 my $record = ${$self->records}[0];
47 || $record->version() == TLSProxy::Record::VERS_TLS_1_2) {
H A DRecord.pm72 #Get the record header (unpack can't fail if $packet is too short)
87 my $record = TLSProxy::Record->new(
105 $record->decryptETM();
107 $record->decrypt();
109 $record->encrypted(1);
113 .$record_type{$record->content_type()}."\n";
118 push @record_list, $record;
120 #Now figure out what messages are contained within this record
121 my @messages = TLSProxy::Message->get_messages($server, $record);
235 #TODO(TLS1.3): Eventually it is sufficient just to check the record
[all...]
/netbsd-current/external/mpl/bind/dist/contrib/dlz/modules/include/
H A Ddlz_dbi.h49 * special tokens are %zone%, %record%, %client%
75 char *record; member in struct:dbinstance
89 build_querylist(const char *query_str, char **zone, char **record,
/netbsd-current/external/mit/xorg/lib/libxcb/files/
H A DMakefile.xmlsrcs17 record.c \
/netbsd-current/external/mpl/bind/dist/contrib/dlz/modules/common/
H A Ddlz_dbi.c67 * %zone%, or %record%, or %client%
83 build_querylist(const char *query_str, char **zone, char **record, argument
168 /* check if we encountered "$record$" token */
169 } else if (strcasecmp(tseg->cmd, "record") == 0) {
171 * we don't really need, or want the "record"
175 /* set tseg->cmd to in-direct record string */
176 tseg->cmd = (char **)record;
188 /* set tseg->cmd to in-direct record string */
201 * add checks later to verify zone and record are found if
216 /* if this query requires %record
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DSymbolRecordHelpers.cpp18 RecordT record(static_cast<SymbolRecordKind>(sym.kind()));
19 cantFail(SymbolDeserializer::deserializeAs<RecordT>(sym, record));
20 return record;
48 assert(false && "Unknown record type");
79 assert(false && "Unknown record type");
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/lib/perftest/
H A Dmeasure.py77 record them in result.
105 self.result.record (id, cpu_time)
119 self.result.record (id, wall_time)
146 self.result.record (id, memory_used)
/netbsd-current/external/mit/xorg/lib/libXtst/
H A DMakefile21 record.h
/netbsd-current/lib/libc/arch/sparc/sys/
H A Dbrk.S80 retl ! success, return 0 & record new break
96 retl ! success, return 0 & record new break
/netbsd-current/external/historical/nawk/dist/
H A Dlib.c44 char *record; variable
57 bool donerec; /* true = record is valid (no flds have changed) */
68 if ( (record = malloc(n)) == NULL
73 *record = '\0';
75 fldtab[0]->sval = record;
120 * split using the value of FS at the time that the record's value ($0) was
124 * whenever a new record is read in (implicitly or via getline), or when
144 int getrec(char **pbuf, int *pbufsize, bool isrecord) /* get next input record */
145 { /* note: cares whether buf == record */
188 if (c != 0 || buf[0] != '\0') { /* normal record */
[all...]

Completed in 324 milliseconds

1234567891011>>