Home
last modified time | relevance | path

Searched full:prepend (Results 1 – 25 of 474) sorted by relevance

12345678910>>...19

/freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dprepend.t3 # 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 Dstrict.t26 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 Dioctl.py80 def print_hdr(self, prepend=""): argument
83 prepend, self.len, self.obj_name, self.obj_type, self._print_obj_value()
87 def print_obj(self, prepend=""): argument
88 self.print_hdr(prepend)
89 prepend = " " + prepend
91 obj.print_obj(prepend)
93 def print_obj_hex(self, prepend=""): argument
94 print(prepend)
445 def print_hdr(self, prepend=""): argument
446 print("{}len={}, type={}".format(prepend, len(bytes(self)), self.obj_name))
/freebsd/crypto/openssh/
H A Dsshbuf-getput-crypto.c134 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 Dsshbuf-getput-basic.c575 int r, prepend; in sshbuf_put_bignum2_bytes() local
585 * If most significant bit is set then prepend a zero byte to in sshbuf_put_bignum2_bytes()
588 prepend = len > 0 && (s[0] & 0x80) != 0; in sshbuf_put_bignum2_bytes()
589 if ((r = sshbuf_reserve(buf, len + 4 + prepend, &d)) < 0) in sshbuf_put_bignum2_bytes()
591 POKE_U32(d, len + prepend); in sshbuf_put_bignum2_bytes()
592 if (prepend) in sshbuf_put_bignum2_bytes()
595 memcpy(d + 4 + prepend, s, len); in sshbuf_put_bignum2_bytes()
/freebsd/tests/atf_python/sys/netlink/
H A Dattrs.py33 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 Dnetlink_generic.py45 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 Dnetlink_route.py708 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 Dnetlink.py163 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 Dmessage.py108 def print_nl_header(self, prepend=""): argument
113 prepend,
279 def print_base_header(self, hdr, prepend=""): argument
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm65 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/sys/net/route/
H A Dnhop.h86 * 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 */
243 uint8_t prepend_len; /* length of the prepend */
254 char nh_prepend[64]; /* L2 prepend */
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dkerrs.c114 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 Ddofile.pl72 my $prepend = <<"_____";
92 PREPEND => $prepend,
/freebsd/crypto/krb5/src/tests/gssapi/
H A Dt_spnego.c50 prepend(const void *prefix, size_t plen, uint8_t **tok, size_t *len) in prepend() function
124 /* Prepend the wrong krb5 OID inside OBJECT IDENTIFIER and [0] tags. */ in create_mskrb5_spnego_token()
125 prepend("\xA0\x0D\x30\x0B\x06\x09\x2A\x86\x48\x82\xF7\x12\x01\x02\x02", 15, in create_mskrb5_spnego_token()
130 /* Prepend the SPNEGO OID in an OBJECT IDENTIFIER tag. */ in create_mskrb5_spnego_token()
131 prepend("\x06\x06\x2B\x06\x01\x05\x05\x02", 8, &tok, &len); in create_mskrb5_spnego_token()
/freebsd/contrib/atf/atf-c/detail/
H A Ddynstr_test.c472 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/openresolv/
H A Dresolvconf.conf.5.in87 Prepend search domains to the dynamically generated list.
95 Prepend name servers to the dynamically generated list.
204 Prepend name servers to the dynamically generated list.
208 Prepend search domains to the dynamically generated list.
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DDLangDemangle.cpp131 /// 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/diff/lib/
H A Dprepargs.c1 /* Parse arguments from a string and prepend them to an argv.
73 /* Prepend the whitespace-separated options in OPTIONS to the argument
/freebsd/sbin/dhclient/
H A Ddhclient.conf.570 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
522 prepend domain-name-servers 127.0.0.1;
/freebsd/crypto/openssl/
H A Dconfigdata.pm.in127 my $prepend = <<'_____';
143 PREPEND => $prepend,
165 PREPEND => $prepend,
/freebsd/sys/contrib/openzfs/etc/systemd/system-generators/
H A Dzfs-mount-generator.c80 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/libexec/nuageinit/
H A Dnuage.lua43 local function warnmsg(str, prepend)
48 if prepend ~= false then
54 local function errmsg(str, prepend)
55 warnmsg(str, prepend)
/freebsd/crypto/openssl/crypto/cmp/
H A Dcmp_protect.c141 int prepend = X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP in ossl_cmp_msg_add_extraCerts() local
161 if (!ossl_x509_add_certs_new(&msg->extraCerts, ctx->chain, prepend)) in ossl_cmp_msg_add_extraCerts()
165 if (!ossl_x509_add_cert_new(&msg->extraCerts, ctx->cert, prepend)) in ossl_cmp_msg_add_extraCerts()
/freebsd/lib/libc/include/isc/
H A Dlist.h49 #define PREPEND(list, elt, link) \ macro
100 PREPEND(list, elt, link); \

12345678910>>...19