Searched +full:libelf +full:- +full:dev (Results 1 – 13 of 13) sorted by relevance
| /freebsd-src/sys/contrib/openzfs/.github/workflows/ |
| H A D | build-dependencies.txt | |
| H A D | zfs-tests.yml | 1 name: zfs-tests-sanity 9 runs-on: ubuntu-latest 11 - uses: actions/checkout@v2 14 - name: Install dependencies 16 sudo apt-get update 17 sudo apt-get install --yes -qq build-essential autoconf libtool gdb lcov \ 20 nfs-kernel-server samba rng-tools xz-utils \ 21 zlib1g-dev uuid-dev libblkid-dev libselinux-dev \ 22 xfslibs-dev libattr1-dev libacl1-dev libudev-dev libdevmapper-dev \ 23 libssl-dev libffi-dev libaio-dev libelf-dev libmount-dev \ [all …]
|
| /freebsd-src/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | drti.c | 39 #include <libelf.h> 43 * is through the DTrace helper pseudo-device node in /devices; there is 44 * no /dev link. Because of this, USDT providers and helper actions don't 45 * work inside of non-global zones. This issue was addressed by adding 46 * the /dev and having this initialization code use that /dev link. If the 47 * /dev link doesn't exist it falls back to looking for the /devices node 58 static const char *devnamep = "/dev/dtrace/helper"; 85 if (fmt[strlen(fmt) - 1] != '\n') in dbg_printf() 122 if (dlinfo(RTLD_SELF, RTLD_DI_LINKMAP, &lmp) == -1 || lmp == NULL) { in dtrace_dof_init() 128 if (dlinfo(RTLD_SELF, RTLD_DI_LMID, &lmid) == -1) { in dtrace_dof_init() [all …]
|
| H A D | dt_pid.c | 53 #include <libelf.h> 105 len = vsnprintf(dpr->dpr_errmsg, sizeof (dpr->dpr_errmsg), in dt_pid_error() 108 if (dpr->dpr_errmsg[len - 2] == '\n') in dt_pid_error() 109 dpr->dpr_errmsg[len - 2] = '\0'; in dt_pid_error() 111 dt_set_errmsg(dtp, dt_errtag(tag), pcb->pcb_region, in dt_pid_error() 112 pcb->pcb_filetag, pcb->pcb_fileptr ? yylineno : 0, fmt, ap); in dt_pid_error() 122 dtrace_hdl_t *dtp = pp->dpp_dtp; in dt_pid_per_sym() 123 dt_pcb_t *pcb = pp->dpp_pcb; in dt_pid_per_sym() 124 dt_proc_t *dpr = pp->dpp_dpr; in dt_pid_per_sym() 131 int isdash = strcmp("-", func) == 0; in dt_pid_per_sym() [all …]
|
| H A D | dt_open.c | 39 #include <libelf.h> 104 * previously worked; for example, adding a new built-in variable could break 107 * do not affect backward compatibility -- this is merely to make capabilities 552 * Tables of ILP32 intrinsic integer and floating-point type templates to use 588 * Tables of LP64 intrinsic integer and floating-point type templates to use 680 * Tables of ILP32 integer type templates used to populate the dtp->dt_ints[] 693 * Tables of LP64 integer type templates used to populate the dtp->dt_ints[] 725 * Hard-wired definition string to be compiled and cached every time a new 798 const char *_dtrace_provdir = "/dev/dtrac [all...] |
| /freebsd-src/contrib/elftoolchain/ar/ |
| H A D | ar.h | 1 /*- 26 * $Id: ar.h 3629 2018-09-30 19:26:28Z jkoshy $ 29 #include <libelf.h> 36 #define AR_A 0x0001 /* position-after */ 37 #define AR_B 0x0002 /* position-before */ 81 * In-memory representation of archive member(object). 91 dev_t dev; /* inode's device */ member 103 const char *posarg; /* position arg for modifiers -a, -b. */
|
| /freebsd-src/sys/contrib/openzfs/contrib/debian/ |
| H A D | control | 1 Source: openzfs-linux 4 Maintainer: ZFS on Linux specific mailing list <zfs-discuss@list.zfsonlinux.org> 5 Build-Depends: debhelper-compat (= 12), 6 dh-python, 7 dh-sequence-dkms | dkms (>> 2.1.1.2-5), 8 libaio-dev, [all...] |
| /freebsd-src/cddl/contrib/opensolaris/cmd/lockstat/ |
| H A D | sym.c | 23 * Copyright (c) 1997-1999 by Sun Microsystems, Inc. 42 #include <libelf.h> 91 sep->name = name; in add_symbol() 92 sep->addr = addr; in add_symbol() 93 sep->size = size; in add_symbol() 103 if (sep->addr == addr) in remove_symbol() 104 sep->addr = 0; in remove_symbol() 118 for (ksp = kc->kc_chain; ksp; ksp = ksp->ks_next) { in fake_up_certain_popular_kernel_symbols() 119 if (strcmp(ksp->ks_module, "cpu_info") == 0) { in fake_up_certain_popular_kernel_symbols() 126 if (ksp->ks_instance == 0) in fake_up_certain_popular_kernel_symbols() [all …]
|
| /freebsd-src/sys/contrib/openzfs/rpm/generic/ |
| H A D | zfs-kmod.spec.in | 8 if [ -e "/usr/src/linux-${kernel_version%%___*}" ]; then \ 9 echo "/usr/src/linux-${kernel_version%%___*}"; \ 10 elif [ -e "/lib/modules/${kernel_version%%___*}/source" ]; then \ 23 if [ -e "/usr/src/linux-${kernel_version%%___*}" ]; then \ 24 echo "/usr/src/linux-${kernel_version%%___*}"; \ 43 Name: %{module}-kmod 52 Source0: %{module}-%{version}.tar.gz 54 BuildRoot: %{_tmppath}/%{name}- [all...] |
| /freebsd-src/lib/libkvm/ |
| H A D | kvm.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 9 * BG 91-66 and contributed to Berkeley. 74 return (kd->errbuf); in kvm_geterr() 83 _kvm_err(kd, kd->program, "Unsupported libelf"); in _kvm_read_kernel_ehdr() 84 return (-1); in _kvm_read_kernel_ehdr() 86 elf = elf_begin(kd->nlfd, ELF_C_READ, NULL); in _kvm_read_kernel_ehdr() 88 _kvm_err(kd, kd->program, "%s", elf_errmsg(0)); in _kvm_read_kernel_ehdr() 89 return (-1); in _kvm_read_kernel_ehdr() 92 _kvm_err(kd, kd->program, "kernel is not an ELF file"); in _kvm_read_kernel_ehdr() [all …]
|
| /freebsd-src/contrib/ntp/ |
| H A D | CommitLog | 1 ChangeSet@1.4062, 2024-05-25 00:06:49-07:00, ntpreleng@ntp-build.tal1.ntfo.org 5 ChangeLog@1.2103 +1 -0 8 ntpd/invoke-ntp.conf.texi@1.231 +1 -1 11 ntpd/invoke-ntp.keys.texi@1.214 +1 -1 14 ntpd/invoke-ntpd.texi@1.528 +2 -2 17 ntpd/ntp.conf.5man@1.265 +2 -2 20 ntpd/ntp.conf.5mdoc@1.265 +2 -2 23 ntpd/ntp.conf.html@1.213 +1 -1 26 ntpd/ntp.conf.man.in@1.265 +2 -2 29 ntpd/ntp.conf.mdoc.in@1.265 +2 -2 [all …]
|
| H A D | ChangeLog | 1 --- 7 * [Bug 3913] Avoid duplicate IPv6 link-local manycast associations. 10 * [Bug 3910] Memory leak using openssl-3 <hart@ntp.org> 13 * [Bug 3903] lib/isc/win32/strerror.c NTstrerror() is not thread-safe. 15 * [Bug 3901] LIB_GETBUF isn't thread-safe. <hart@ntp.org> 18 * [Bug 3888] ntpd with multiple same-subnet IPs using manycastclient creates 25 * [Bug 3869] Remove long-gone "calldelay" & "crypto sign" from docs. 29 * [Bug 3864] ntpd IPv6 refid different for big-endian and little-endian. 38 * [Bug 3852] check-libntp.mf and friends are not triggering rebuilds as 42 * [Bug 3850] ntpq -c apeers breaks column formatting s2 w/refclock refid. [all …]
|
| /freebsd-src/tools/build/mk/ |
| H A D | OptionalObsoleteFiles.inc | 4 # the check-old* and delete-old* targets. 18 OLD_FILES+=usr/tests/usr.sbin/sa/v1-amd64-sav.in 19 OLD_FILES+=usr/tests/usr.sbin/sa/v1-amd64-sav.out 20 OLD_FILES+=usr/tests/usr.sbin/sa/v1-amd64-u.out 21 OLD_FILES+=usr/tests/usr.sbin/sa/v1-amd64-us [all...] |