Home
last modified time | relevance | path

Searched refs:bundle (Results 1 – 25 of 170) sorted by relevance

1234567

/openbsd-src/gnu/llvm/lldb/source/Host/macosx/cfcpp/
H A DCFCBundle.cpp44 CFBundleRef bundle = get(); in GetPath() local
45 if (bundle) { in GetPath()
46 CFCReleaser<CFURLRef> bundle_url(CFBundleCopyBundleURL(bundle)); in GetPath()
58 CFBundleRef bundle = get(); in GetIdentifier() local
59 if (bundle != NULL) in GetIdentifier()
60 return ::CFBundleGetIdentifier(bundle); in GetIdentifier()
65 CFBundleRef bundle = get(); in GetValueForInfoDictionaryKey() local
66 if (bundle != NULL) in GetValueForInfoDictionaryKey()
67 return ::CFBundleGetValueForInfoDictionaryKey(bundle, key); in GetValueForInfoDictionaryKey()
72 CFBundleRef bundle = get(); in CopyExecutableURL() local
[all …]
/openbsd-src/gnu/usr.bin/perl/t/lib/feature/
H A Dapi4 # NAME test feature enabled by bundle
10 print "bundle: ", feature::feature_bundle(0) // "undef", "\n";
17 print "bundle: ", feature::feature_bundle(0) // "undef", "\n";
22 bundle: default
25 bundle: 5.11
33 print "bundle: ", feature::feature_bundle(0) // "undef", "\n";
40 print "bundle: ", feature::feature_bundle(0) // "undef", "\n";
45 bundle: undef
48 bundle: undef
H A Dbundle4 # Standard feature bundle
10 # Standard feature bundle, no 5.11
16 # Standard feature bundle, 5.11
22 # Standard feature bundle, 5.11
57 ^Feature bundle "5.9" is not supported by Perl \d+\.\d+\.\d+ at - line \d+
63 ^Feature bundle "5.9.4" is not supported by Perl \d+\.\d+\.\d+ at - line \d+
69 ^Feature bundle "5.8.8" is not supported by Perl \d+\.\d+\.\d+ at - line \d+
H A Dnonesuch17 ^Feature bundle "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
22 ^Feature bundle "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DCFBundle.cpp57 CFBundleRef bundle = get(); in GetIdentifier() local
58 if (bundle != NULL) in GetIdentifier()
59 return ::CFBundleGetIdentifier(bundle); in GetIdentifier()
64 CFBundleRef bundle = get(); in CopyExecutableURL() local
65 if (bundle != NULL) in CopyExecutableURL()
66 return CFBundleCopyExecutableURL(bundle); in CopyExecutableURL()
/openbsd-src/regress/sbin/ipsecctl/
H A Dsa26.ok4 [bundle ipip to 2.2.2.2 spi 0x1a000000 with ipcomp to 2.2.2.2 spi 0x00002a00]
6 [bundle ipip to 1.1.1.1 spi 0x1b000000 with ipcomp to 1.1.1.1 spi 0x00002b00]
10 [bundle ipcomp to 2.2.2.2 spi 0x00002a00 with esp to 2.2.2.2 spi 0x3a000000]
14 [bundle ipcomp to 1.1.1.1 spi 0x00002b00 with esp to 1.1.1.1 spi 0x3b000000]
17 [bundle esp to 2.2.2.2 spi 0x3a000000 with ah to 2.2.2.2 spi 0x4a000000]
20 [bundle esp to 1.1.1.1 spi 0x3b000000 with ah to 1.1.1.1 spi 0x4b000000]
H A Dsa25.in1 # group the sa bundle if from and to are identical
5 bundle foo
8 bundle foo
11 bundle foo
14 bundle foo
H A Dsa27.in2 ipip tunnel from 1.1.1.1 to 2.2.2.2 spi 0x1a000000:0x1b000000 bundle foo
3 ipcomp transport from 1.1.1.1 to 2.2.2.2 spi 0x2a00:0x2b00 bundle bar
7 bundle foo
10 bundle bar
H A Dsa26.in2 ipip tunnel from 1.1.1.1 to 2.2.2.2 spi 0x1a000000:0x1b000000 bundle foo
3 ipcomp transport from 1.1.1.1 to 2.2.2.2 spi 0x2a00:0x2b00 bundle foo
7 bundle foo
10 bundle foo
H A Dsa27.ok8 [bundle ipip to 2.2.2.2 spi 0x1a000000 with esp to 2.2.2.2 spi 0x3a000000]
12 [bundle ipip to 1.1.1.1 spi 0x1b000000 with esp to 1.1.1.1 spi 0x3b000000]
15 [bundle ipcomp to 2.2.2.2 spi 0x00002a00 with ah to 2.2.2.2 spi 0x4a000000]
18 [bundle ipcomp to 1.1.1.1 spi 0x00002b00 with ah to 1.1.1.1 spi 0x4b000000]
/openbsd-src/regress/lib/libcrypto/x509/
H A Dverify.c110 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
125 if (!certs_from_file(bundle_file, &bundle)) in verify_cert()
126 errx(1, "failed to load bundle from '%s'", bundle_file); in verify_cert()
127 if (sk_X509_num(bundle) < 1) in verify_cert()
128 errx(1, "not enough certs in bundle"); in verify_cert()
129 leaf = sk_X509_shift(bundle); in verify_cert()
135 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
172 sk_X509_pop_free(bundle, X509_free); in verify_cert()
181 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert_new()
190 if (!certs_from_file(bundle_file, &bundle)) in verify_cert_new()
[all...]
H A Dcallbackfailures.c120 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
131 if (!certs_from_file(bundle_file, &bundle, 1)) in verify_cert()
132 errx(1, "failed to load bundle from '%s'", bundle_file); in verify_cert()
133 if (!certs_from_file(bundle_file, &bundle, 0)) in verify_cert()
134 errx(1, "failed to load bundle from '%s'", bundle_file2); in verify_cert()
135 if (sk_X509_num(bundle) < 1) in verify_cert()
136 errx(1, "not enough certs in bundle"); in verify_cert()
137 leaf = sk_X509_shift(bundle); in verify_cert()
143 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
178 sk_X509_pop_free(bundle, X509_fre in verify_cert()
[all...]
H A Dexpirecallback.c119 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
134 if (!certs_from_file(bundle_file, &bundle)) in verify_cert()
135 errx(1, "failed to load bundle from '%s'", bundle_file); in verify_cert()
136 if (sk_X509_num(bundle) < 1) in verify_cert()
137 errx(1, "not enough certs in bundle"); in verify_cert()
138 leaf = sk_X509_shift(bundle); in verify_cert()
144 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
182 sk_X509_pop_free(bundle, X509_free); in verify_cert()
244 if (asprintf(&bundle_file, "%s/%s/bundle.pem", certs_path, in verify_cert_test()
H A Dcallback.c115 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
126 if (!certs_from_file(bundle_file, &bundle)) in verify_cert()
127 errx(1, "failed to load bundle from '%s'", bundle_file); in verify_cert()
128 if (sk_X509_num(bundle) < 1) in verify_cert()
129 errx(1, "not enough certs in bundle"); in verify_cert()
130 leaf = sk_X509_shift(bundle); in verify_cert()
136 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
169 sk_X509_pop_free(bundle, X509_free); in verify_cert()
363 if (asprintf(&bundle_file, "%s/%s/bundle.pem", certs_path, in verify_cert_test()
/openbsd-src/usr.bin/file/magdir/
H A Drevision12 # Type: Git bundles (git-bundle)
14 0 string #\ v2\ git\ bundle\n Git bundle
18 0 string HG10 Mercurial bundle,
/openbsd-src/regress/sys/netinet/ipsec/
H A Dipsec.conf356 bundle identifier
362 bundle identifier
368 bundle identifier
373 bundle identifier
379 bundle identifier
385 bundle identifier
432 bundle identifier
438 bundle identifier
444 bundle identifier
449 bundle identifier
[all …]
/openbsd-src/gnu/llvm/llvm/utils/textmate/
H A DREADME1 This directory contains a "bundle" for doing syntax highlighting of TableGen
3 by the TextMate "C" bundle. Currently, keywords, comments, and strings are
6 To install this bundle, copy it to the per user area:
/openbsd-src/regress/lib/libcrypto/x509/bettertls/
H A Dverify.c104 STACK_OF(X509) *roots = NULL, *bundle = NULL, *cert = NULL; in verify_cert()
116 if (!certs_from_file(bundle_file, &bundle)) in verify_cert()
127 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
158 if (!X509_STORE_CTX_init(xscip, store, leaf, bundle)) { in verify_cert()
186 sk_X509_pop_free(bundle, X509_free); in verify_cert()
/openbsd-src/gnu/llvm/clang/docs/
H A DClangOffloadBundler.rst27 A bundled code object may also be used to bundle just the offloaded code
73 concatenated with comments that have a magic string and bundle entry ID in
100 Number Of Bundle Entries integer 8 Number of bundle entries.
105 1st Bundle Entry ID Length integer 8 Character length of bundle
110 :ref:`clang-bundle-entry-id`.
124 .. _clang-bundle-entry-id:
130 :ref:`clang-bundled-code-object-layout`) has a bundle entry ID that indicates
137 <bundle-entry-id> ::== <offload-kind> "-" <target-triple> [ "-" <target-id> ]
158 ``clang-offload-bundler`` is used to bundle code objects as
183 Each entry of a bundled code object must have a different bundle entry ID. There
[all …]
/openbsd-src/gnu/llvm/llvm/tools/dsymutil/
H A DCFBundle.cpp95 if (CFBundleRef bundle = get()) in GetIdentifier() local
96 return ::CFBundleGetIdentifier(bundle); in GetIdentifier()
102 if (CFBundleRef bundle = get()) in GetValueForInfoDictionaryKey() local
103 return ::CFBundleGetValueForInfoDictionaryKey(bundle, key); in GetValueForInfoDictionaryKey()
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dia64-dis.c77 bfd_byte bundle[16]; in print_insn_ia64() local
93 status = (*info->read_memory_func) (memaddr, bundle, sizeof (bundle), info); in print_insn_ia64()
100 t0 = bfd_getl64 (bundle); in print_insn_ia64()
101 t1 = bfd_getl64 (bundle + 8); in print_insn_ia64()
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dia64-dis.c77 bfd_byte bundle[16]; in print_insn_ia64() local
93 status = (*info->read_memory_func) (memaddr, bundle, sizeof (bundle), info); in print_insn_ia64()
100 t0 = bfd_getl64 (bundle); in print_insn_ia64()
101 t1 = bfd_getl64 (bundle + 8); in print_insn_ia64()
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang-tools-extra/clangd/xpc/framework/
H A DBUILD.gn5 # bundle and the clangd.xpc bundle within it in a single action.
11 # clangd.xpc bundle
81 # .framework bundle symlinks:
/openbsd-src/gnu/llvm/lldb/cmake/modules/
H A DLLDBFramework.cmake5 # Configure liblldb as a framework bundle
48 # Affects the layout of the framework bundle (default is macOS layout).
62 # Apart from this one, CMake creates all required symlinks in the framework bundle.
71 # At configuration time, collect headers for the framework bundle and copy them
99 # At build time, copy the staged headers into the framework bundle (and do
/openbsd-src/regress/lib/libcrypto/x509/policy/
H A Dpolicy.c124 STACK_OF(X509) *roots = NULL, *bundle = NULL; in verify_cert()
136 if (!certs_from_file(leaf_file, &bundle)) in verify_cert()
139 &bundle)) in verify_cert()
142 if (sk_X509_num(bundle) < 1) in verify_cert()
143 errx(1, "not enough certs in bundle"); in verify_cert()
144 leaf = sk_X509_shift(bundle); in verify_cert()
148 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
192 sk_X509_pop_free(bundle, X509_free); in verify_cert()

1234567