/freebsd/tests/atf_python/sys/netpfil/ipfw/ |
H A D | ioctl.py | 80 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 D | insns.py | 133 def print_obj(self, prepend=""): argument 142 prepend, 155 def print_obj_hex(self, prepend=""): argument 156 print(prepend)
|
/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 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 | 575 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 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_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_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.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/contrib/llvm-project/llvm/lib/Demangle/ |
H A D | DLangDemangle.cpp | 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/libexec/nuageinit/ |
H A D | nuage.lua | 10 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 D | zfs-mount-generator.c | 79 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 D | dynstr_test.c | 472 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 D | dynstr.c | 69 bool prepend) in prepend_or_append() argument 89 if (prepend) { in prepend_or_append()
|
/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
|
/freebsd/crypto/openssl/crypto/cmp/ |
H A D | cmp_protect.c | 141 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 D | configdata.pm.in | 127 my $prepend = <<'_____'; 143 PREPEND => $prepend, 165 PREPEND => $prepend,
|
/freebsd/crypto/openssl/util/ |
H A D | dofile.pl | 72 my $prepend = <<"_____";
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | name-prefix.txt | 5 sink/source names may use the name prefix property to prepend the
|
/freebsd/contrib/sendmail/contrib/ |
H A D | domainmap.m4 | 79 # prepend "domain_" 85 # prepend "domain_"
|
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/ |
H A D | MANIFEST | 25 t/prepend.t
|
/freebsd/contrib/sendmail/cf/mailer/ |
H A D | uucp.m4 | 48 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 D | Template.pm | 65 my $prepend = _param('prepend', %a); 82 PREPEND => $prepend,
|
/freebsd/sbin/devd/ |
H A D | devd.cc | 721 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 D | devd.hh | 165 const char * prepend = NULL, const char * append = NULL);
|