| /freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/ |
| H A D | prepend.t | 3 # Tests for PREPEND features 26 PREPEND => q{$foo = "template"}); 33 my $t3 = $tmpl2->fill_in(PREPEND => q{$foo = "fillin"}, PACKAGE => 'T3'); 47 PREPEND => q{$foo = "template"}); 54 $t3 = $tmpl2->fill_in(PREPEND => q{$foo = "fillin"}, PACKAGE => 'T6'); 67 PREPEND => q{$foo = "template"}); 74 $t3 = $tmpl2->fill_in(PREPEND => q{$foo = "fillin"}, PACKAGE => 'T6');
|
| H A D | strict.t | 26 PREPEND => q{$foo = "template"}); 37 # prepend overrides the hash values 39 PREPEND => q{$foo = "fillin"}, 46 is $t3, "The value of \$foo is: fillin", "hash values with prepend, prepend wins, even under strict…
|
| /freebsd/tests/atf_python/sys/netpfil/ipfw/ |
| H A D | ioctl.py | 81 def print_hdr(self, prepend=""): argument 84 prepend, self.len, self.obj_name, self.obj_type, self._print_obj_value() 88 def print_obj(self, prepend=""): argument 89 self.print_hdr(prepend) 90 prepend = " " + prepend 92 obj.print_obj(prepend) 94 def print_obj_hex(self, prepend=""): argument 95 print(prepend) 446 def print_hdr(self, prepend=""): argument 447 print("{}len={}, type={}".format(prepend, len(bytes(self)), self.obj_name))
|
| /freebsd/crypto/openssh/ |
| H A D | sshbuf-getput-crypto.c | 134 int len = BN_num_bytes(v), prepend = 0, r; in sshbuf_put_bignum2() local 141 /* If MSB is set, prepend a \0 */ in sshbuf_put_bignum2() 143 prepend = 1; in sshbuf_put_bignum2() 144 if ((r = sshbuf_put_string(buf, d + 1 - prepend, len + prepend)) < 0) { in sshbuf_put_bignum2()
|
| H A D | sshbuf-getput-basic.c | 573 int r, prepend; in sshbuf_put_bignum2_bytes() local 583 * If most significant bit is set then prepend a zero byte to in sshbuf_put_bignum2_bytes() 586 prepend = len > 0 && (s[0] & 0x80) != 0; in sshbuf_put_bignum2_bytes() 587 if ((r = sshbuf_reserve(buf, len + 4 + prepend, &d)) < 0) in sshbuf_put_bignum2_bytes() 589 POKE_U32(d, len + prepend); in sshbuf_put_bignum2_bytes() 590 if (prepend) in sshbuf_put_bignum2_bytes() 593 memcpy(d + 4 + prepend, s, len); in sshbuf_put_bignum2_bytes()
|
| /freebsd/contrib/sqlite3/autosetup/teaish/ |
| H A D | feature.tcl | 30 teaish-ldflags-prepend [define LDFLAGS_LIBZ [get-define lib_deflate]] 41 # so, appends -lrt via [teaish-ldflags-prepend] and returns 1, else 55 teaish-ldflags-prepend -r [define LDFLAGS_LIBRT $ldrt] 98 # teaish-ldflags-prepend. It unconditionally defines HAVE_DLOPEN to 0 120 teaish-ldflags-prepend [define LDFLAGS_DLOPEN $lfl] 138 teaish-ldflags-prepend $lfl
|
| /freebsd/tests/atf_python/sys/netlink/ |
| H A D | attrs.py | 33 def print_attr(self, prepend=""): argument 40 prepend, self.nla_len, type_str, self.nla_type, self._print_attr_value() 95 def print_attr(self, prepend=""): argument 102 prepend, self.nla_len, type_str, self.nla_type 106 nla.print_attr(prepend + " ") 107 print("{}}}".format(prepend))
|
| H A D | netlink_generic.py | 45 def print_nl_header(self, prepend=""): argument 50 prepend, 60 def print_base_header(self, hdr, prepend=""): argument 63 prepend, self.msg_name, hdr.version, hdr.reserved
|
| H A D | netlink_route.py | 708 def print_base_header(self, hdr, prepend=""): argument 712 prepend, 748 def print_base_header(self, hdr, prepend=""): argument 752 prepend, 780 def print_base_header(self, hdr, prepend=""): argument 784 prepend, 812 def print_base_header(self, hdr, prepend=""): argument 816 prepend,
|
| H A D | netlink.py | 163 def print_base_header(self, hdr, prepend=""): argument 164 print("{}error={}".format(prepend, hdr.error)) 202 def print_base_header(self, errhdr, prepend=""): argument 203 print("{}error={}, ".format(prepend, errhdr.error), end="") 207 prepend,
|
| H A D | message.py | 108 def print_nl_header(self, prepend=""): argument 113 prepend, 279 def print_base_header(self, hdr, prepend=""): argument
|
| /freebsd/sys/net/route/ |
| H A D | nhop.h | 86 * nh_prepend_len: link-level prepend length. Currently unused. 138 uint8_t nh_prepend_len; /* length of prepend data */ 141 char nh_prepend[48]; /* L2 prepend */ 245 uint8_t prepend_len; /* length of the prepend */ 256 char nh_prepend[64]; /* L2 prepend */
|
| /freebsd/crypto/openssl/external/perl/Text-Template-1.56/lib/Text/ |
| H A D | Template.pm | 65 my $prepend = _param('prepend', %a); 82 PREPEND => $prepend, 89 # Under 5.005_03, if any of $stype, $prepend, $untaint, or $broken 279 my $t = $self->{PREPEND}; 288 $self->{PREPEND} = $_[1] if $#_ >= 1; 311 my $fi_prepend = _param('prepend', %fi_a); 625 $template = Text::Template->new(PREPEND => q{use strict;}, ...); 662 # Prepend specified perl code to each fragment before evaluating: 663 $text = $template->fill_in(PREPEND => q{use strict 'vars';}, ...); 988 =item C<PREPEND> [all …]
|
| /freebsd/crypto/krb5/src/lib/krb5/krb/ |
| H A D | kerrs.c | 114 char *prepend; in krb5_vwrap_error_message() local 116 if (ctx == NULL || vasprintf(&prepend, fmt, ap) < 0) in krb5_vwrap_error_message() 119 k5_set_error(&ctx->err, code, "%s: %s", prepend, prev_msg); in krb5_vwrap_error_message() 121 free(prepend); in krb5_vwrap_error_message()
|
| /freebsd/crypto/openssl/util/ |
| H A D | dofile.pl | 72 my $prepend = <<"_____"; 92 PREPEND => $prepend,
|
| /freebsd/contrib/atf/atf-c/detail/ |
| H A D | dynstr_test.c | 472 check_prepend(atf_error_t (*prepend)(atf_dynstr_t *, const char *, ...)) in check_prepend() 485 atf_tc_fail("Failed to prepend character at iteration %zd", i); in check_prepend() 490 RE(prepend(&str, "%s", "a")); in check_prepend() 493 RE(prepend(&str, "%s", "b")); in check_prepend() 505 atf_tc_fail("Failed to prepend character at iteration %zd", i); in check_prepend() 510 RE(prepend(&str, "%s", "a")); in check_prepend() 513 RE(prepend(&str, "%s", "b")); in check_prepend()
|
| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | DLangDemangle.cpp | 131 /// prepend/append it to the output string, with a special treatment for some 507 Demangled->prepend("initializer for "); in parseLName() 514 Demangled->prepend("vtable for "); in parseLName() 524 Demangled->prepend("ClassInfo for "); in parseLName() 534 Demangled->prepend("Interface for "); in parseLName() 544 Demangled->prepend("ModuleInfo for "); in parseLName()
|
| /freebsd/contrib/openresolv/ |
| H A D | resolvconf.conf.5.in | 105 Prepend search domains to the dynamically generated list. 113 Prepend name servers to the dynamically generated list. 244 Prepend name servers to the dynamically generated list. 248 Prepend search domains to the dynamically generated list.
|
| /freebsd/crypto/openssl/ |
| H A D | configdata.pm.in | 127 my $prepend = <<'_____'; 143 PREPEND => $prepend, 165 PREPEND => $prepend,
|
| /freebsd/sbin/dhclient/ |
| H A D | dhclient.conf.5 | 70 the server, or values to prepend or append to information provided by the 242 .Ic prepend No { Op Ar option declaration 248 .Ic prepend 251 .Ic prepend 524 prepend domain-name-servers 127.0.0.1;
|
| /freebsd/sys/contrib/openzfs/etc/systemd/system-generators/ |
| H A D | zfs-mount-generator.c | 80 systemd_escape(const char *input, const char *prepend, const char *append) in systemd_escape() argument 84 size_t prelen = strlen(prepend); in systemd_escape() 89 getpid(), prepend, input, append); in systemd_escape() 93 memcpy(ret, prepend, prelen); in systemd_escape() 149 systemd_escape_path(char *input, const char *prepend, const char *append) in systemd_escape_path() argument 153 if (asprintf(&ret, "%s-%s", prepend, append) == -1) { in systemd_escape_path() 156 getpid(), prepend, input, append); in systemd_escape_path() 178 char *ret = systemd_escape(input, prepend, append); in systemd_escape_path()
|
| /freebsd/contrib/sqlite3/tea/ |
| H A D | teaish.tcl | 198 teaish-ldflags-prepend $lfl 309 teaish-ldflags-prepend $ldf 370 teaish-ldflags-prepend $ldf 489 teaish-ldflags-prepend $ldflags 534 teaish-ldflags-prepend $lfl
|
| /freebsd/crypto/openssl/crypto/cmp/ |
| H A D | cmp_protect.c | 161 int prepend = X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP in ossl_cmp_msg_add_extraCerts() local 166 if (!ossl_x509_add_certs_new(&msg->extraCerts, ctx->chain, prepend)) in ossl_cmp_msg_add_extraCerts() 170 if (!ossl_x509_add_cert_new(&msg->extraCerts, ctx->cert, prepend)) in ossl_cmp_msg_add_extraCerts()
|
| /freebsd/lib/libc/include/isc/ |
| H A D | list.h | 49 #define PREPEND(list, elt, link) \ macro 100 PREPEND(list, elt, link); \
|
| /freebsd/contrib/mandoc/ |
| H A D | dba.c | 49 static void *prepend(const char *, char); 176 dba_array_add(entry, prepend(file, form)); in dba_page_new() 234 dba_array_add(entries, prepend(name, maskbyte)); in dba_page_alias() 241 prepend(const char *instr, char inbyte) in prepend() function
|