Home
last modified time | relevance | path

Searched refs:prepend (Results 1 – 25 of 124) sorted by relevance

12345

/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))
H A Dinsns.py133 def print_obj(self, prepend=""): argument
142 prepend,
155 def print_obj_hex(self, prepend=""): argument
156 print(prepend)
/freebsd/crypto/openssh/
H A Dsshbuf-getput-crypto.c134 int len = BN_num_bytes(v), prepend = 0, r; in sshbuf_put_bignum2() local
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
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_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_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.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/contrib/llvm-project/llvm/lib/Demangle/
H A DDLangDemangle.cpp507 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/libexec/nuageinit/
H A Dnuage.lua10 local function warnmsg(str, prepend)
15 if prepend ~= false then
21 local function errmsg(str, prepend)
22 warnmsg(str, prepend)
/freebsd/sys/contrib/openzfs/etc/systemd/system-generators/
H A Dzfs-mount-generator.c79 systemd_escape(const char *input, const char *prepend, const char *append) in systemd_escape() argument
83 size_t prelen = strlen(prepend); in systemd_escape()
88 getpid(), prepend, input, append); in systemd_escape()
92 memcpy(ret, prepend, prelen); in systemd_escape()
148 systemd_escape_path(char *input, const char *prepend, const char *append) in systemd_escape_path() argument
152 if (asprintf(&ret, "%s-%s", prepend, append) == -1) { in systemd_escape_path()
155 getpid(), prepend, input, append); in systemd_escape_path()
177 char *ret = systemd_escape(input, prepend, append); in systemd_escape_path()
/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()
490 RE(prepend(&str, "%s", "a")); in check_prepend()
493 RE(prepend(&str, "%s", "b")); in check_prepend()
510 RE(prepend(&str, "%s", "a")); in check_prepend()
513 RE(prepend(&str, "%s", "b")); in check_prepend()
H A Ddynstr.c69 bool prepend) in prepend_or_append() argument
89 if (prepend) { in prepend_or_append()
/freebsd/contrib/mandoc/
H A Ddba.c49 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
/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/crypto/openssl/
H A Dconfigdata.pm.in127 my $prepend = <<'_____';
143 PREPEND => $prepend,
165 PREPEND => $prepend,
/freebsd/crypto/openssl/util/
H A Ddofile.pl72 my $prepend = <<"_____";
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dname-prefix.txt5 sink/source names may use the name prefix property to prepend the
/freebsd/contrib/sendmail/contrib/
H A Ddomainmap.m479 # prepend "domain_"
85 # prepend "domain_"
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/
H A DMANIFEST25 t/prepend.t
/freebsd/contrib/sendmail/cf/mailer/
H A Duucp.m448 R$+ $: $U ! $1 prepend our name
82 R$+ $: $U ! $1 prepend our name
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm65 my $prepend = _param('prepend', %a);
82 PREPEND => $prepend,
/freebsd/sbin/devd/
H A Ddevd.cc721 config::expand_string(const char *src, const char *prepend, const char *append) in expand_string() argument
732 if (prepend != NULL) in expand_string()
733 dst = prepend; in expand_string()
743 expand_one(src, dst, prepend == NULL); in expand_string()
H A Ddevd.hh165 const char * prepend = NULL, const char * append = NULL);

12345