| /src/external/gpl3/gdb/dist/gdb/system-gdbinit/ |
| wrs-linux.py | 18 import os namespace 20 if "ENV_PREFIX" in os.environ: 21 gdb.execute("set sysroot %s" % os.environ["ENV_PREFIX"])
|
| elinos.py | 19 import os namespace 45 if var in os.environ: 46 result[key] = os.environ[var]
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-autoloaded-pretty-printers-in-newobjfile-event.py | 21 import os namespace 32 if libname in os.path.basename(objfile.filename):
|
| gdb_leak_detector.py | 20 import os namespace 38 self.filters = [tracemalloc.Filter(True, "*" + os.path.basename(filename))]
|
| /src/usr.sbin/pf/etc/ |
| Makefile | 6 FILESMODE_pf.os= 444 12 CONFIGFILES+= pf.os
|
| /src/external/mpl/bind/dist/bin/tests/system/isctest/vars/ |
| basic.py | 12 import os namespace 51 "TMPDIR": os.getenv("TMPDIR", "/tmp"),
|
| openssl.py | 14 import os namespace 19 "OPENSSL_CONF": os.getenv("OPENSSL_CONF", None), 20 "SOFTHSM2_CONF": os.getenv("SOFTHSM2_CONF", None), 27 if path is None or not os.path.exists(path): 30 os.environ.pop("ENGINE_ARG", None) 31 os.environ.pop("SOFTHSM2_MODULE", None) 33 assert os.path.isfile(path), f"{path} exists, but it's not a file" 45 os.environ["ENGINE_ARG"] = f"-E {val}" 49 os.environ["SOFTHSM2_MODULE"] = val
|
| dirs.py | 12 import os namespace 28 os.environ["SYSTESTDIR"] = name
|
| features.py | 12 import os namespace 61 os.environ[envvar] = val
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/ |
| print-ts.py | 35 import os namespace 43 mypid = os.getpid()
|
| /src/external/mpl/bind/dist/bin/tests/system/checkconf_keys/ |
| tests_checkconf_keys.py | 12 import os namespace 32 CHECKCONF = os.environ["CHECKCONF"]
|
| /src/external/mpl/bind/dist/bin/tests/system/include_multiplecfg/ |
| tests_include_multiplecfg.py | 12 import os namespace 39 isctest.run.cmd([os.environ["CHECKCONF"], "named.conf"], cwd="ns2")
|
| /src/external/mpl/bind/dist/bin/tests/system/nzd2nzf/ |
| tests_nzd2nzf.py | 13 import os namespace 48 cmd = isctest.run.cmd([os.environ["NZD2NZF"], "_default.nzd"], cwd=cfg_dir) 50 nzf_filename = os.path.join(cfg_dir, "_default.nzf") 55 nzd_filename = os.path.join(cfg_dir, "_default.nzd") 56 os.remove(nzd_filename) 59 ns1.start(["--noclean", "--restart", "--port", os.environ["PORT"]])
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| evp_asn1.c | 17 ASN1_STRING *os; local 19 if ((os = ASN1_OCTET_STRING_new()) == NULL) 21 if (!ASN1_OCTET_STRING_set(os, data, len)) { 22 ASN1_OCTET_STRING_free(os); 25 ASN1_TYPE_set(a, V_ASN1_OCTET_STRING, os);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/hmac/ |
| hm_ameth.c | 28 ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey); local 29 if (os) { 30 if (os->data) 31 OPENSSL_cleanse(os->data, os->length); 32 ASN1_OCTET_STRING_free(os); 57 ASN1_OCTET_STRING *os; local 62 os = ASN1_OCTET_STRING_new(); 63 if (os == NULL) 67 if (!ASN1_OCTET_STRING_set(os, priv, len)) 79 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/poly1305/ |
| poly1305_ameth.c | 30 ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey); local 31 if (os != NULL) { 32 if (os->data != NULL) 33 OPENSSL_cleanse(os->data, os->length); 34 ASN1_OCTET_STRING_free(os); 52 ASN1_OCTET_STRING *os; local 57 os = ASN1_OCTET_STRING_new(); 58 if (os == NULL) 61 if (!ASN1_OCTET_STRING_set(os, priv, len)) 73 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/siphash/ |
| siphash_ameth.c | 30 ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey); local 32 if (os != NULL) { 33 if (os->data != NULL) 34 OPENSSL_cleanse(os->data, os->length); 35 ASN1_OCTET_STRING_free(os); 53 ASN1_OCTET_STRING *os; local 58 os = ASN1_OCTET_STRING_new(); 59 if (os == NULL) 62 if (!ASN1_OCTET_STRING_set(os, priv, len)) 74 ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr; local [all...] |
| /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/proto-to-cxx/ |
| proto_to_cxx.cpp | 22 std::ostream &operator<<(std::ostream &os, const BinaryOp &x); 23 std::ostream &operator<<(std::ostream &os, const StatementSeq &x); 26 std::ostream &operator<<(std::ostream &os, const Const &x) { 27 return os << "(" << x.val() << ")"; 29 std::ostream &operator<<(std::ostream &os, const VarRef &x) { 30 return os << "a[" << (static_cast<uint32_t>(x.varnum()) % 100) << "]"; 32 std::ostream &operator<<(std::ostream &os, const Lvalue &x) { 33 return os << x.varref(); 35 std::ostream &operator<<(std::ostream &os, const Rvalue &x) { 36 if (x.has_varref()) return os << x.varref() 89 std::ostringstream os; local [all...] |
| /src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| hinfo_13.h | 22 char *os; member in struct:dns_rdata_hinfo
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| hinfo_13.h | 23 char *os; member in struct:dns_rdata_hinfo
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-read-memory-leak.py | 16 import os namespace 28 filters = [tracemalloc.Filter(True, "*" + os.path.basename(__file__))]
|
| /src/external/mpl/bind/dist/bin/tests/system/addzone/ |
| tests_rndc_deadlock.py | 13 import os namespace 46 args = [os.environ["RNDC"]] + ns3.rndc_args.split()
|
| /src/external/mpl/bind/dist/bin/tests/system/dnstap/ |
| tests_dnstap.py | 14 import os namespace 48 os.rename(os.path.join("ns3", "dnstap.out.0"), "dnstap.out.resolver_addresses")
|
| /src/external/mpl/bind/dist/bin/tests/system/ecdsa/ |
| tests_ecdsa.py | 12 import os namespace 40 not os.getenv("ECDSAP256SHA256_SUPPORTED"), 48 not os.getenv("ECDSAP384SHA384_SUPPORTED"),
|
| /src/external/mpl/bind/dist/bin/tests/system/filters/ |
| tests_filter_checkconf.py | 13 import os namespace 28 isctest.run.cmd([os.environ["CHECKCONF"], filename]) 31 isctest.run.cmd([os.environ["CHECKCONF"], filename])
|