Home
last modified time | relevance | path

Searched refs:programs (Results 1 – 25 of 683) sorted by relevance

12345678910>>...28

/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/
H A D0013-eglibc-Forward-port-cross-locale-generation-support.patch102 diff --git a/locale/programs/charmap-dir.c b/locale/programs/charmap-dir.c
148 diff --git a/locale/programs/ld-collate.c b/locale/programs/ld-collate.c
197 diff --git a/locale/programs/ld-ctype.c b/locale/programs/ld-ctype.c
199 --- a/locale/programs/ld-ctype.c
279 diff --git a/locale/programs/ld-time.c b/locale/programs/ld-time.c
281 --- a/locale/programs/ld-time.c
282 +++ b/locale/programs/ld-time.c
348 diff --git a/locale/programs/linereader.c b/locale/programs/linereader.c
361 diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c
407 diff --git a/locale/programs/locfile.c b/locale/programs/locfile.c
[all …]
H A D0014-localedef-add-to-archive-uses-a-hard-coded-locale-pa.patch17 locale/programs/locarchive.c | 35 +++++++++++++++++++++++++----------
20 diff --git a/locale/programs/locarchive.c b/locale/programs/locarchive.c
22 --- a/locale/programs/locarchive.c
23 +++ b/locale/programs/locarchive.c
H A D0002-localedef-fix-ups-hardlink-to-make-it-compile.patch10 locale/programs/c.h | 2 +-
11 locale/programs/cross-localedef-hardlink.c | 79 +++++++++++-----------
14 diff --git a/locale/programs/c.h b/locale/programs/c.h
16 --- a/locale/programs/c.h
17 +++ b/locale/programs/c.h
27 diff --git a/locale/programs/cross-localedef-hardlink.c b/locale/programs/cross-localedef-hardlink.c
29 --- a/locale/programs/cross-localedef-hardlink.c
30 +++ b/locale/programs/cross-localedef-hardlink.c
H A D0007-nativesdk-glibc-Make-relocatable-install-for-locales.patch18 locale/programs/locale.c | 7 ++++---
69 diff --git a/locale/programs/locale.c b/locale/programs/locale.c
71 --- a/locale/programs/locale.c
72 +++ b/locale/programs/locale.c
/openbmc/linux/Documentation/bpf/libbpf/
H A Dlibbpf_overview.rst9 heavy lifting of loading, verifying, and attaching BPF programs to various
15 * Provides high-level and low-level APIs for user space programs to interact
16 with BPF programs. The low-level APIs wrap all the bpf system call
18 over the interactions between user space and BPF programs.
21 global variables and work with BPF programs.
25 BPF programs that can be compiled once and run across different kernel
35 A BPF application consists of one or more BPF programs (either cooperating or
61 phase, BPF programs perform useful work such as processing
74 simplify code for manipulating BPF programs from user space. Skeleton code
87 * ``<name>__attach()`` – attaches all auto-attachable BPF programs (it’s
[all …]
/openbmc/linux/samples/bpf/
H A Dtcp_bpf.readme2 programs. These programs attach to a cgroupv2. The following commands create
12 (attach) one of the tcp_*_kern.o programs:
19 The tcp_*_kern.o programs use special print functions to print logging
23 cgroupv2 to which the BPF programs are attached (i.e. under bash shell
/openbmc/openbmc/poky/meta/files/common-licenses/
H A Dpsutils23 … The original attribution of the programs is clearly displayed in the product and/or documentation…
25 2) The original source code of the programs is provided free of charge (except for reasonable distr…
27 3) These programs are provided "as-is". No warranty or guarantee of their fitness for any particula…
29 Basically, I don't mind how you use the programs so long as you acknowledge the author, and give pe…
/openbmc/linux/tools/bpf/bpftool/Documentation/
H A Dbpftool-net.rst47 For programs attached to a particular cgroup, e.g.,
52 bpf programs, users should consult other tools, e.g., iproute2.
56 and finally netfilter programs. Both xdp programs and tcx/tc programs are
57 ordered based on ifindex number. If multiple bpf programs attached
59 all bpf programs attached to tcx, then tc classes, then all bpf programs
60 attached to non clsact qdiscs, and finally all bpf programs attached
H A Dbpftool-prog.rst69 Show information about loaded programs. If *PROG* is
70 specified show information only about given programs,
71 otherwise list all programs currently loaded on the system.
73 programs which will all be shown.
79 programs (such as the total time spent running the program,
92 Dump eBPF instructions of the programs from the kernel. By
98 programs which will all be dumped. However, if **file** or
135 *OBJ* as *PATH*. **bpftool prog loadall** pins all programs
236 When showing BPF programs, show file names of pinned
237 programs.
[all …]
/openbmc/linux/Documentation/bpf/
H A Dbpf_design_QA.rst32 A: Because BPF programs are designed to run in the linux kernel
49 Q: Can BPF programs access instruction pointer or return address?
53 Q: Can BPF programs access stack pointer ?
69 BPF programs and programs call kernel helpers with zero overhead,
71 for JITed BPF programs that are indistinguishable from
112 versions will accept all bpf programs that were accepted by
174 programs for 32-bit architectures.
254 Tracing BPF programs can overwrite the user memory
258 Tracing BPF programs are root only.
275 by BPF programs. Do these kernel functions become an ABI?
[all …]
H A Ddrgn.rst23 `bpf_inspect.py`_ is a tool intended to inspect BPF programs and maps. It can
24 iterate over all programs and maps in the system and print basic information
27 The main use-case `bpf_inspect.py`_ covers is to show BPF programs of types
29 programs via ``freplace``/``fentry``/``fexit`` mechanisms, since there is no
35 List BPF programs (full names are obtained from BTF)::
49 Find BPF programs attached to BPF program ``test_pkt_access``::
62 are multiple other tracing and ext programs attached to functions in
80 drgn script to list BPF programs or maps and their properties
90 prog (p) list BPF programs
97 information about BPF programs, maps and other objects.
H A Dbpf_prog_run.rst4 Running BPF programs from userspace
7 This document describes the ``BPF_PROG_RUN`` facility for running BPF programs
20 can be used to unit test BPF programs against user-supplied context objects, and
21 as way to explicitly execute programs in the kernel for their side effects. The
25 The ``BPF_PROG_RUN`` command can be used to execute BPF programs of the
46 execute the program and return the results to userspace. Note that programs will
49 returned to userspace. A separate mode for live execution of XDP programs is
52 Running XDP programs in "live frame mode"
55 The ``BPF_PROG_RUN`` command has a separate mode for running live XDP programs,
56 which can be used to execute XDP programs in a way where packets will actually
[all …]
H A Dbpf_licensing.rst61 Using BPF programs in the Linux kernel
75 modules. BPF programs can be proprietary if they don't use "GPL only" BPF
83 and struct_ops BPF programs are implicitly calling "GPL only" functions.
84 The same restriction applies to BPF programs that call kernel functions
87 Packaging BPF programs with user space applications
90 Generally, proprietary-licensed applications and GPL licensed BPF programs
92 separate executable processes. This applies to both cBPF and eBPF programs.
H A Dprog_lsm.rst8 These BPF programs allow runtime instrumentation of the LSM hooks by privileged
23 eBPF programs that use Documentation/bpf/btf.rst do not need to include kernel
51 build environment matches the environment the BPF programs are
54 The ``vmlinux.h`` can then simply be included in the BPF programs without
57 The eBPF programs can be declared using the``BPF_PROG``
98 eBPF programs can be loaded with the :manpage:`bpf(2)` syscall's
120 The LSM allows attachment of eBPF programs as LSM hooks using :manpage:`bpf(2)`
H A Dprog_sk_lookup.rst40 Multiple programs can be attached to one network namespace. Programs will be
46 The attached BPF sk_lookup programs run whenever the transport layer needs to
52 The attached BPF programs must return with either ``SK_PASS`` or ``SK_DROP``
65 When multiple programs are attached, the end result is determined from return
66 codes of all the programs according to the following rules:
74 4. If all programs returned ``SK_PASS`` and none of them selected a socket,
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/mbedtls/
H A Dmbedtls_3.6.0.bb3 for providing SSL and TLS support in your programs. It offers \
38 PACKAGECONFIG ??= "shared-libs programs ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
40 PACKAGECONFIG[programs] = "-DENABLE_PROGRAMS=ON,-DENABLE_PROGRAMS=OFF"
55 PACKAGES =+ "${PN}-programs"
56 FILES:${PN}-programs = "${bindir}/"
58 ALTERNATIVE:${PN}-programs = "hello"
H A Dmbedtls_2.28.8.bb3 for providing SSL and TLS support in your programs. It offers \
33 PACKAGECONFIG ??= "shared-libs programs ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}"
35 PACKAGECONFIG[programs] = "-DENABLE_PROGRAMS=ON,-DENABLE_PROGRAMS=OFF"
50 PACKAGES =+ "${PN}-programs"
51 FILES:${PN}-programs = "${bindir}/"
53 ALTERNATIVE:${PN}-programs = "hello"
/openbmc/linux/kernel/bpf/preload/
H A DKconfig15 This builds kernel module with several embedded BPF programs that are
17 useful in debugging and introspection of BPF programs and maps.
24 This builds bpf_preload kernel module with embedded BPF programs for
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/pv/
H A Dpv_1.6.20.bb2 HOMEPAGE = "http://www.ivarch.com/programs/pv.shtml"
7 SRC_URI = "https://www.ivarch.com/programs/sources/${BP}.tar.bz2 \
13 UPSTREAM_CHECK_URI = "http://www.ivarch.com/programs/pv.shtml"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/passwdqc/
H A Dpasswdqc_2.0.3.bb5 programs (pwqcheck and pwqgen), and a library (libpasswdqc). \
6 pam_passwdqc is normally invoked on password changes by programs such as \
12 and random passphrase generator programs, respectively, which are usable \
16 third-party programs. \
/openbmc/openbmc/poky/meta-selftest/recipes-test/devtool/
H A Ddevtool-upgrade-test3_1.5.3.bb5 SRC_URI = "http://www.ivarch.com/programs/sources/pv-${PV}.tar.gz"
6 UPSTREAM_CHECK_URI = "http://www.ivarch.com/programs/pv.shtml"
H A Ddevtool-upgrade-test3_1.5.3.bb.upgraded6 SRC_URI = "http://www.ivarch.com/programs/sources/pv-${PV}.tar.gz"
7 UPSTREAM_CHECK_URI = "http://www.ivarch.com/programs/pv.shtml"
/openbmc/openbmc/poky/meta/recipes-connectivity/bluez5/
H A Dbluez5_5.72.bb7 # noinst programs in Makefile.tools that are conditional on READLINE
18 # noinst programs in Makefile.tools that are conditional on TESTING
37 # noinst programs in Makefile.tools that are conditional on TOOLS
/openbmc/openbmc/poky/meta/recipes-graphics/drm/
H A Dlibdrm_2.4.120.bb20 …FIG ??= "intel radeon amdgpu nouveau vmwgfx omap freedreno vc4 etnaviv tests install-test-programs"
34 PACKAGECONFIG[install-test-programs] = "-Dinstall-test-programs=true,-Dinstall-test-programs=false"
/openbmc/openbmc/poky/meta/recipes-devtools/btrfs-tools/
H A Dbtrfs-tools_6.8.bb25 programs \
31 PACKAGECONFIG[programs] = "--enable-programs,--disable-programs"

12345678910>>...28