Searched +full:kconfig +full:- +full:ext (Results 1 – 9 of 9) sorted by relevance
| /external/liblc3/zephyr/ |
| D | module.yml | 3 cmake-ext: True 4 kconfig-ext: True
|
| /external/openthread/zephyr/ |
| D | module.yml | 30 cmake-ext: True 31 kconfig-ext: True
|
| /external/libbpf/src/ |
| D | libbpf.c | 1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) 6 * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org> 67 #pragma GCC diagnostic ignored "-Wformat-nonliteral" 207 [BPF_PROG_TYPE_EXT] = "ext", 259 if (err != -EPERM || geteuid() != 0) in pr_perm_msg() 276 pr_warn("permission error while running as root; try raising 'ulimit -l'? current value: %s\n", in pr_perm_msg() 292 fd = -1; \ 303 /* as of v1.0 libbpf_set_strict_mode() is a no-op */ in libbpf_set_strict_mode() 349 /* stored as sec_def->cookie for all libbpf-supported SEC()s */ 368 /* BPF program support non-linear XDP buffer */ [all …]
|
| D | linker.c | 1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) 71 /* single .BTF.ext data section */ 81 /* associated section id for .ksyms, .kconfig, etc, but not .extern */ 127 /* section's .BTF.ext data */ 156 libbpf_print(LIBBPF_WARN, "libbpf: " fmt ": %s\n", ##__VA_ARGS__, elf_errmsg(-1)) 187 free(linker->filename); in bpf_linker__free() 189 if (linker->elf) in bpf_linker__free() 190 elf_end(linker->elf); in bpf_linker__free() 192 if (linker->fd >= 0) in bpf_linker__free() 193 close(linker->fd); in bpf_linker__free() [all …]
|
| /external/pigweed/docs/ |
| D | conf.py | 7 # https://www.apache.org/licenses/LICENSE-2.0 22 # The master toctree document. # inclusive-language: ignore 27 copyright = f'{date.today().year} The Pigweed Authors' # pylint: disable=redefined-builtin 44 "pw_docgen.sphinx.kconfig", 50 "sphinx.ext.autodoc", # Automatic documentation for Python code 51 "sphinx.ext.napoleon", # Parses Google-style docstrings 52 "sphinxarg.ext", # Automatic documentation of Python argparse 56 "sphinx_copybutton", # Copy-to-clipboard button on code blocks 61 # When a user clicks the copy-to-clipboard button the `$ ` prompt should not be 62 # copied: https://sphinx-copybutton.readthedocs.io/en/latest/use.html [all …]
|
| /external/bpftool/docs/ |
| D | bpftool-gen.rst | 1 .. SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 4 bpftool-gen 6 ------------------------------------------------------------------------------- 7 tool for BPF code-generation 8 ------------------------------------------------------------------------------- 19 *OPTIONS* := { |COMMON_OPTIONS| | { **-L** | **--use-loader** } } 40 user-space object files, but in addition to combining data 41 and instruction sections, .BTF and .BTF.ext (if present in 74 user in pre-allocated fields in skeleton struct. For BPF 77 in per-program link field. All such set up links will be [all …]
|
| /external/pigweed/pw_build/ |
| D | pigweed.cmake | 7 # https://www.apache.org/licenses/LICENSE-2.0 40 # NUM_POSITIONAL_ARGS - PARSE_ARGV <N> arguments for 45 # OPTION_ARGS - <option> arguments for cmake_parse_arguments 46 # ONE_VALUE_ARGS - <one_value_keywords> arguments for cmake_parse_arguments 47 # MULTI_VALUE_ARGS - <multi_value_keywords> arguments for 49 # REQUIRED_ARGS - required arguments which must be set, these may any 104 # # Checks that arg_FOO is non-empty, using the current function name. 107 # # Checks that FOO and BAR are non-empty, using function name "do_the_thing". 138 # <name> - The library target to add the TARGET link dependencies to. 142 # INTERFACE - interface target_link_libraries arguments which are all TARGETs. [all …]
|
| /external/bpftool/src/ |
| D | gen.c | 1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 50 if (str[n1 - i - 1] != suffix[n2 - i - 1]) in str_has_suffix() 60 strncpy(name, basename(file), MAX_OBJ_NAME_LEN - 1); in get_obj_name() 61 name[MAX_OBJ_NAME_LEN - 1] = '\0'; in get_obj_name() 63 name[strlen(name) - 2] = '\0'; in get_obj_name() 78 static const char *sfxs[] = { ".data", ".rodata", ".bss", ".kconfig" }; in get_map_ident() 103 static const char *pfxs[] = { ".data", ".rodata", ".bss", ".kconfig" }; in get_datasec_ident() 130 const char *sec_name = btf__name_by_offset(btf, sec->name_off); in codegen_datasec_def() 139 if (strcmp(sec_name, ".kconfig") != 0) in codegen_datasec_def() 144 const struct btf_type *var = btf__type_by_id(btf, sec_var->type); in codegen_datasec_def() [all …]
|
| /external/bcc/src/cc/frontends/clang/ |
| D | b_frontend_action.cc | 8 * http://www.apache.org/licenses/LICENSE-2.0 130 kresolver = bcc_symcache_new(-1, nullptr); in get_symbol_resolver() 195 if (arg->getType()->isPointerType()) in ProbeChecker() 209 if (std::get<0>(p) == E->getDirectCallee()) { in VisitCallExpr() 215 nb_derefs_ -= std::get<1>(p); in VisitCallExpr() 220 tuple<Decl *, int> pt = make_tuple(E->getDirectCallee(), nb_derefs_); in VisitCallExpr() 227 if (VarDecl *V = dyn_cast_or_null<VarDecl>(E->getCalleeDecl())) in VisitCallExpr() 228 needs_probe_ = V->getName() == "bpf_get_current_task"; in VisitCallExpr() 232 tuple<Decl *, int> pt = make_tuple(M->getMemberDecl(), nb_derefs_); in VisitMemberExpr() 237 if (M->isArrow()) { in VisitMemberExpr() [all …]
|