Home
last modified time | relevance | path

Searched refs:dso (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/usr.sbin/dhcrelay6/
H A Ddhcrelay6.c529 struct dhcp6_option *dso; in relay6_pushrelaymsg() local
534 railen = sizeof(*dso) + pc->pc_raidatalen; in relay6_pushrelaymsg()
539 remotelen = sizeof(*dso) + ENTERPRISENO_LEN + in relay6_pushrelaymsg()
548 dhcplen = sizeof(*dsr) + railen + remotelen + sizeof(*dso) + *plen; in relay6_pushrelaymsg()
557 optoff = sizeof(*dsr) + railen + remotelen + sizeof(*dso); in relay6_pushrelaymsg()
588 dso = dsr->dsr_options; in relay6_pushrelaymsg()
589 dso->dso_code = htons(DHCP6_OPT_INTERFACEID); in relay6_pushrelaymsg()
590 dso->dso_length = htons(pc->pc_raidatalen); in relay6_pushrelaymsg()
591 memcpy(dso->dso_data, pc->pc_raidata, pc->pc_raidatalen); in relay6_pushrelaymsg()
596 dso = (struct dhcp6_option *) in relay6_pushrelaymsg()
[all …]
/openbsd-src/lib/libc/stdlib/
H A Datexit.c68 __cxa_atexit(void (*func)(void *), void *arg, void *dso) in __cxa_atexit() argument
103 fnp->fn_dso = dso; in __cxa_atexit()
145 __cxa_finalize(void *dso) in __cxa_finalize() argument
152 if (dso == NULL) in __cxa_finalize()
164 if (dso != NULL && dso != p->fns[n].fn_dso) in __cxa_finalize()
191 if (dso == NULL && call_depth == 0) { in __cxa_finalize()
205 if (dso != NULL && TAILQ_FIRST(&_atfork_list) != NULL) { in __cxa_finalize()
210 if (af->fn_dso == dso) { in __cxa_finalize()
H A Dthread_atexit.c27 __cxa_thread_atexit_impl(void (*func)(void *), void *arg, void *dso) in __cxa_thread_atexit_impl() argument
36 dlctl(NULL, DL_REFERENCE, dso); in __cxa_thread_atexit_impl()
/openbsd-src/gnu/gcc/gcc/config/
H A Ddarwin-crt3.c64 typedef int (*cxa_atexit_p)(void (*func) (void*), void* arg, const void* dso);
65 typedef void (*cxa_finalize_p)(const void *dso);
456 atexit_common (const struct one_atexit_routine *r, const void *dso) in atexit_common() argument
476 return cxa_atexit (r->callback.cac, r->arg, dso); in atexit_common()
502 return cxa_atexit (cxa_atexit_wrapper, alloced, dso); in atexit_common()
510 const void* dso) __attribute__((visibility("hidden")));
513 __cxa_atexit (cxa_atexit_callback func, void* arg, const void* dso) in __cxa_atexit() argument
519 return atexit_common (&r, dso); in __cxa_atexit()
/openbsd-src/lib/libc/thread/
H A Datfork.c46 void (*child)(void), void *dso) in _thread_atfork() argument
56 af->fn_dso = dso; in _thread_atfork()
/openbsd-src/gnu/llvm/clang/docs/
H A DLTOVisibility.rst80 cases involving two linkage units, ``main`` and ``dso.so``.
85 …| main (clang++ -fvisibility=hidden): | | dso.so (clang++ -fvisibility=hidd…
117 Class ``C`` is defined in both ``main`` and ``dso.so`` and therefore must
122 in ``dso.so``. This is an example of the COM scenario; the definition of
124 compatible with the definition of ``D`` in ``dso.so``, which is observable
H A DControlFlowIntegrity.rst45 <cfi-cross-dso>` exists that does not require classes to have hidden LTO
237 ``-fsanitize-cfi-cross-dso``.
377 .. _cfi-cross-dso:
382 Use **-f[no-]sanitize-cfi-cross-dso** to enable the cross-DSO control
H A DControlFlowIntegrityDesign.rst526 cross-DSO mode, enabled with **-f[no-]sanitize-cfi-cross-dso** relaxes
H A DUsersManual.rst1983 .. option:: -fsanitize-cfi-cross-dso
4228 -fno-sanitize-cfi-cross-dso
4279 -fsanitize-cfi-cross-dso
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_symbolize.cpp157 int __cxa_atexit(void (*f)(void *a), void *arg, void *dso) { return 0; } in __cxa_atexit() argument
/openbsd-src/lib/libcrypto/conf/
H A DREADME24 path=/some/path/to/some/dso.so
/openbsd-src/gnu/usr.bin/binutils/binutils/
H A Dsysroff.info24 (("dso") (1 byte) ("dso"))
377 ("dso" 0x3a
/openbsd-src/gnu/usr.bin/binutils-2.17/binutils/
H A Dsysroff.info24 (("dso") (1 byte) ("dso"))
377 ("dso" 0x3a
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp438 void *arg, void *dso);
451 TSAN_INTERCEPTOR(int, __cxa_atexit, void (*f)(void *a), void *arg, void *dso) { in TSAN_INTERCEPTOR() argument
454 SCOPED_TSAN_INTERCEPTOR(__cxa_atexit, f, arg, dso); in TSAN_INTERCEPTOR()
455 return setup_at_exit_wrapper(thr, GET_CALLER_PC(), (void (*)())f, arg, dso); in TSAN_INTERCEPTOR()
459 void *arg, void *dso) { in setup_at_exit_wrapper() argument
469 if (!dso) { in setup_at_exit_wrapper()
486 res = REAL(__cxa_atexit)(cxa_at_exit_callback_installed_at, ctx, dso); in setup_at_exit_wrapper()
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1184 static int setup_at_exit_wrapper(void(*f)(), void *arg, void *dso);
1201 static int setup_at_exit_wrapper(void(*f)(), void *arg, void *dso) { in setup_at_exit_wrapper() argument
1208 if (!dso) { in setup_at_exit_wrapper()
1219 res = REAL(__cxa_atexit)(MSanCxaAtExitWrapper, r, dso); in setup_at_exit_wrapper()
/openbsd-src/gnu/llvm/llvm/lib/Passes/
H A DPassRegistry.def55 MODULE_PASS("cross-dso-cfi", CrossDSOCFIPass())
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCodeGenOptions.def255 CODEGENOPT(SanitizeCfiCrossDso, 1, 0) ///< Enable cross-dso support in CFI.
/openbsd-src/gnu/gcc/
H A DFAQ502 24. http://gcc.gnu.org/faq.html#dso
/openbsd-src/gnu/usr.bin/gcc/
H A DFAQ573 27. http://gcc.gnu.org/faq.html#dso
/openbsd-src/gnu/usr.bin/binutils/
H A Dmd5.sum4376 569bab3472cc5146ac51188a87864dde ld/testsuite/ld-cris/dso-1.s
4377 f73d09ac7bd8fdc83362c30cec088e28 ld/testsuite/ld-cris/dso-2.s
4378 0963170a19c851b655a44c694bdc09d2 ld/testsuite/ld-cris/dso-3.s
4638 e10cb4a11a7381050cb3277e48f1ec1e ld/testsuite/ld-elfweak/dso.dsym
5445 b0ab0fbf8d440fa329d565a5ccbba1e1 ld/testsuite/ld-sh/sh64/stobin-0-dso.d
5453 a38ffd217493e6d0a3d2606000462dea ld/testsuite/ld-sh/refdbg-0-dso.d
5467 452b14908770e945a2bce149204fc59a ld/testsuite/ld-sh/tlsbin-0-dso.d
/openbsd-src/gnu/usr.bin/binutils-2.17/
H A Dmd5.sum5221 c36b9535b7f40891c14a4136ab6de5f4 ld/testsuite/ld-cris/dso-1.s
5222 f73d09ac7bd8fdc83362c30cec088e28 ld/testsuite/ld-cris/dso-2.s
5223 0963170a19c851b655a44c694bdc09d2 ld/testsuite/ld-cris/dso-3.s
5611 e10cb4a11a7381050cb3277e48f1ec1e ld/testsuite/ld-elfweak/dso.dsym
6682 b0ab0fbf8d440fa329d565a5ccbba1e1 ld/testsuite/ld-sh/sh64/stobin-0-dso.d
6690 a38ffd217493e6d0a3d2606000462dea ld/testsuite/ld-sh/refdbg-0-dso.d
6704 452b14908770e945a2bce149204fc59a ld/testsuite/ld-sh/tlsbin-0-dso.d
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td1863 defm sanitize_cfi_cross_dso : BoolOption<"f", "sanitize-cfi-cross-dso",
/openbsd-src/gnu/gcc/gcc/doc/
H A Dinvoke.texi4115 different text / bss / data / heap / stack / dso start locations.
H A Dgcc.info3876 binaries and/or different text / bss / data / heap / stack / dso