Home
last modified time | relevance | path

Searched refs:term (Results 1 – 25 of 711) sorted by relevance

12345678910>>...29

/OK3568_Linux_fs/yocto/poky/documentation/ref-manual/
H A Dvarlocality.rst28 - :term:`DISTRO`
30 - :term:`DISTRO_NAME`
32 - :term:`DISTRO_VERSION`
34 - :term:`MAINTAINER`
36 - :term:`PACKAGE_CLASSES`
38 - :term:`TARGET_OS`
40 - :term:`TARGET_FPU`
42 - :term:`TCMODE`
44 - :term:`TCLIBC`
53 - :term:`TARGET_ARCH`
[all …]
H A Dvariables.rst10 :term:`A <ABIEXTENSION>` :term:`B` :term:`C <CACHE>`
11 :term:`D` :term:`E <EFI_PROVIDER>` :term:`F <FEATURE_PACKAGES>`
12 :term:`G <GCCPIE>` :term:`H <HOMEPAGE>` :term:`I <ICECC_DISABLED>`
13 :term:`K <KARCH>` :term:`L <LABELS>` :term:`M <MACHINE>`
14 :term:`N <NATIVELSBSTRING>` :term:`O <OBJCOPY>` :term:`P`
15 :term:`R <RANLIB>` :term:`S` :term:`T`
16 :term:`U <UBOOT_CONFIG>` :term:`V <VOLATILE_LOG_DIR>`
17 :term:`W <WARN_QA>` :term:`X <XSERVER>`
22 :term:`ABIEXTENSION`
32 :term:`ALLOW_EMPTY`
[all …]
H A Dclasses.rst14 Any :term:`Metadata` usually found in a recipe can also be
17 the ``meta*/`` directory found in the :term:`Source Directory`.
19 :term:`BUILDDIR` (e.g. ``build/``) in the same way as
21 in :term:`BBPATH` using the same method by which ``.conf``
44 :term:`RDEPENDS` and
45 :term:`TUNE_PKGARCH` variables, should never be
53 different :term:`MACHINE` is built even when the recipe never changes.
73 the :term:`ARCHIVER_MODE` variable for information
98 the same as the ``autotools`` class but builds with :term:`B`
99 == :term:`S`. This method is useful when out-of-tree build
[all …]
H A Dqa-checks.rst62 :term:`TMPDIR`, which are incorrect for the target and
90 corresponding entry in :term:`RDEPENDS`. If
91 particular files are required at runtime then :term:`RDEPENDS` should be
104 :term:`RDEPENDS` value being added at the packaging
107 to add an explicit :term:`RDEPENDS` for the dependency.
117 :term:`FILES` (and possibly
118 :term:`PACKAGES`) such that the specified ``.so``
127 Change :term:`FILES` (and possibly
128 :term:`PACKAGES`) such that the specified ``.a`` file
142 :term:`INSANE_SKIP` for the package.
[all …]
H A Dterms.rst13 :term:`Append Files`
52 :term:`BitBake`
57 :term:`Board Support Package (BSP)`
62 :term:`Build Directory`
63 This term refers to the area used by the OpenEmbedded build system for
67 :term:`TOPDIR` variable points to the Build Directory.
71 examples assume your :term:`Source Directory` is named ``poky``:
99 By default, the Build Directory contains :term:`TMPDIR`, which is a
100 temporary directory the build system uses for its work. :term:`TMPDIR` cannot
103 set this up by setting :term:`TMPDIR` in your ``local.conf`` file to use a local
[all …]
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dparse-events.c328 static int parse_events__is_name_term(struct parse_events_term *term) in parse_events__is_name_term() argument
330 return term->type_term == PARSE_EVENTS__TERM_TYPE_NAME; in parse_events__is_name_term()
335 struct parse_events_term *term; in get_config_name() local
340 list_for_each_entry(term, head_terms, list) in get_config_name()
341 if (parse_events__is_name_term(term)) in get_config_name()
342 return term->val.str; in get_config_name()
445 struct parse_events_term *term,
448 struct parse_events_term *term,
789 struct parse_events_term *term; in parse_events_config_bpf() local
795 list_for_each_entry(term, head_config, list) { in parse_events_config_bpf()
[all …]
H A Dparse-events.y93 %type <term> event_term
94 %destructor { parse_events_term__delete ($$); } <term>
129 struct parse_events_term *term; member
725 struct parse_events_term *term = $3; variable
728 parse_events_term__delete(term);
731 list_add_tail(&term->list, head);
738 struct parse_events_term *term = $1; variable
742 list_add_tail(&term->list, head);
749 struct parse_events_term *term; variable
751 ABORT_ON(parse_events_term__num(&term, PARSE_EVENTS__TERM_TYPE_CONFIG,
[all …]
H A Dpmu.c316 struct parse_events_term *term; in __perf_pmu__new_alias() local
349 list_for_each_entry(term, &alias->terms, list) { in __perf_pmu__new_alias()
353 if (term->type_val == PARSE_EVENTS__TERM_TYPE_NUM) in __perf_pmu__new_alias()
355 "%s=%#x", term->config, term->val.num); in __perf_pmu__new_alias()
356 else if (term->type_val == PARSE_EVENTS__TERM_TYPE_STR) in __perf_pmu__new_alias()
358 "%s=%s", term->config, term->val.str); in __perf_pmu__new_alias()
501 struct parse_events_term *term, *cloned; in pmu_alias_terms() local
505 list_for_each_entry(term, &alias->terms, list) { in pmu_alias_terms()
506 ret = parse_events_term__clone(&cloned, term); in pmu_alias_terms()
1031 static int pmu_resolve_param_term(struct parse_events_term *term, in pmu_resolve_param_term() argument
[all …]
H A Dparse-events.l173 static int term(yyscan_t scanner, int type) in term() function
279 config { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_CONFIG); }
280 config1 { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_CONFIG1); }
281 config2 { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_CONFIG2); }
282 name { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_NAME); }
283 period { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_SAMPLE_PERIOD); }
284 freq { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_SAMPLE_FREQ); }
285 branch_type { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_BRANCH_SAMPLE_TYPE); }
286 time { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_TIME); }
287 call-graph { return term(yyscanner, PARSE_EVENTS__TERM_TYPE_CALLGRAPH); }
[all …]
/OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-ref-variables.rst29 :term:`ASSUME_PROVIDED`
30 Lists recipe names (:term:`PN` values) BitBake does not
34 In OpenEmbedded-Core, :term:`ASSUME_PROVIDED` mostly specifies native
39 :term:`AZ_SAS`
52 :term:`B`
56 :term:`BB_ALLOWED_NETWORKS`
62 :term:`BB_NO_NETWORK` is either not set or
87 Using :term:`BB_ALLOWED_NETWORKS` in conjunction with
88 :term:`PREMIRRORS` is very useful. Adding the
89 host you want to use to :term:`PREMIRRORS` results in the source code
[all …]
/OK3568_Linux_fs/buildroot/package/frecon/
H A D0004-Add-hooks-for-term-switching.patch4 Subject: [PATCH 4/9] Add hooks for term switching
6 term foreground: /etc/frecon/term-switch on
7 term background: /etc/frecon/term-switch off
11 term.c | 7 +++++++
14 diff --git a/term.c b/term.c
16 --- a/term.c
17 +++ b/term.c
23 + if (system("/etc/frecon/term-switch off") < 0)
33 + if (system("/etc/frecon/term-switch on") < 0)
H A D0007-Skip-drawing-when-cwidth-is-zero.patch8 term.c | 3 +++
11 diff --git a/term.c b/term.c
13 --- a/term.c
14 +++ b/term.c
16 if (age && terminal->term->age && age <= terminal->term->age)
/OK3568_Linux_fs/u-boot/tools/buildman/
H A Dboard.py219 for term in word.split('&'):
220 if term:
221 sym_build.append(term)
225 term = None
231 term.AddExpr(sym)
234 if term:
235 terms.append(term)
236 term = Term()
237 term.AddExpr(sym)
238 if term:
[all …]
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/
H A Dglossary.rst17 A :term:`Device Driver` that implements the main logic to talk with
39 An API designed to control a subset of the :term:`Media Hardware`
47 A specialized :term:`Microprocessor`, with its architecture
53 An :term:`IC` circuit designed to be configured by a customer or
59 A subset of the :term:`Media Hardware`. For example an :term:`I²C` or
60 :term:`SPI` device, or an :term:`IP Block` inside an
61 :term:`SoC` or :term:`FPGA`.
64 A group of :term:`hardware components <Hardware Component>` that
66 instance, the :term:`SoC` :term:`ISP` :term:`IP Block`
70 Also known as :term:`Peripheral`.
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/migration-guides/
H A Dmigration-1.4.rst21 :term:`RDEPENDS`,
22 :term:`RRECOMMENDS`,
23 :term:`RSUGGESTS`,
24 :term:`RPROVIDES`,
25 :term:`RCONFLICTS`,
26 :term:`RREPLACES`, :term:`FILES`,
27 :term:`ALLOW_EMPTY`, and the pre, post, install,
31 instead of :term:`RDEPENDS`. BitBake uses more strict checks when it
53 :term:`SRC_URI`, the build system now uses
54 :term:`FILESOVERRIDES` instead of
[all …]
H A Dmigration-4.0.rst26 - ``BB_ENV_WHITELIST`` became :term:`BB_ENV_PASSTHROUGH`
27 - ``BB_ENV_EXTRAWHITE`` became :term:`BB_ENV_PASSTHROUGH_ADDITIONS`
28 - ``BB_HASHBASE_WHITELIST`` became :term:`BB_BASEHASH_IGNORE_VARS`
29 - ``BB_HASHCONFIG_WHITELIST`` became :term:`BB_HASHCONFIG_IGNORE_VARS`
32 - ``CVE_CHECK_PN_WHITELIST`` became :term:`CVE_CHECK_SKIP_RECIPE`
33 - ``CVE_CHECK_WHITELIST`` became :term:`CVE_CHECK_IGNORE`
34 - ``ICECC_USER_CLASS_BL`` became :term:`ICECC_CLASS_DISABLE`
35 - ``ICECC_SYSTEM_CLASS_BL`` became :term:`ICECC_CLASS_DISABLE`
36 - ``ICECC_USER_PACKAGE_WL`` became :term:`ICECC_RECIPE_ENABLE`
37 - ``ICECC_USER_PACKAGE_BL`` became :term:`ICECC_RECIPE_DISABLE`
[all …]
H A Dmigration-1.5.rst68 - ``${``\ :term:`P`\ ``}`` and
69 ``${``\ :term:`PF`\ ``}`` are no longer added to
70 :term:`PROVIDES` by default in ``bitbake.conf``.
71 These version-specific :term:`PROVIDES` items were seldom used.
83 - If you have customized :term:`ERROR_QA` or
84 :term:`WARN_QA` values in your configuration, check
87 item not mentioned in :term:`ERROR_QA` or :term:`WARN_QA` would be treated as
89 the default value of :term:`WARN_QA`. All of the possible QA checks are
100 Thus, if you have customized your :term:`ERROR_QA` or :term:`WARN_QA` values
114 and tuning architecture through the :term:`SDK_NAME`
[all …]
H A Dmigration-2.6.rst18 setting the :term:`GCCVERSION` variable to "7.%" in
125 missing from :term:`DEPENDS`).
157 - Name variables (e.g. :term:`IMAGE_NAME`) use a new
158 :term:`IMAGE_VERSION_SUFFIX` variable instead of
159 :term:`DATETIME`. Using :term:`IMAGE_VERSION_SUFFIX`
162 The :term:`IMAGE_VERSION_SUFFIX` variable is set in the ``bitbake.conf``
179 :term:`MODULE_TARBALL_NAME` variable.
181 - The :term:`KERNEL_DTB_NAME` and
182 :term:`KERNEL_DTB_LINK_NAME` variables
186 - The :term:`KERNEL_FIT_NAME` and
[all …]
H A Dmigration-1.6.rst46 The following changes have been made to :term:`BitBake`.
54 :term:`SRC_URI`, BitBake will now validate the
55 :term:`SRCREV` value against the branch. You can specify
64 you can add ";nobranch=1" to the end of the URL within :term:`SRC_URI`.
135 :term:`TMPDIR` can no longer be on an NFS mount. NFS does
137 unexpected issues if used to store :term:`TMPDIR`.
139 The check for this occurs on startup. If :term:`TMPDIR` is detected on an
148 detected during a build. For :term:`PR` increments on changes,
158 The "sum.jffs2" option for :term:`IMAGE_TYPES` has
167 The :term:`COPY_LIC_MANIFEST` variable must now
[all …]
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0012-term-Fix-overflow-on-user-inputs.patch4 Subject: [PATCH] term: Fix overflow on user inputs
30 grub-core/term/terminfo.c | 9 ++++++---
33 diff --git a/grub-core/term/terminfo.c b/grub-core/term/terminfo.c
35 --- a/grub-core/term/terminfo.c
36 +++ b/grub-core/term/terminfo.c
37 @@ -398,7 +398,7 @@ grub_terminfo_getwh (struct grub_term_output *term)
41 -grub_terminfo_readkey (struct grub_term_input *term, int *keys, int *len,
42 +grub_terminfo_readkey (struct grub_term_input *term, int *keys, int *len, int max_len,
43 int (*readkey) (struct grub_term_input *term))
46 @@ -414,6 +414,9 @@ grub_terminfo_readkey (struct grub_term_input *term, int *keys, int *len,
H A D0033-verifiers-Move-verifiers-API-to-kernel-image.patch34 KERNEL_HEADER_FILES += $(top_srcdir)/include/grub/term.h
75term/terminfo.c term/tparm.c commands/extcmd.c lib/arg.c kern/command.c kern/corecmd.c kern/device…
76term/terminfo.c term/tparm.c commands/extcmd.c lib/arg.c kern/command.c kern/corecmd.c kern/device…
84term/i386/pc/console.c kern/i386/dl.c kern/i386/tsc.c kern/i386/tsc_pit.c kern/compiler-rt.c kern/…
85term/i386/pc/console.c kern/i386/dl.c kern/i386/tsc.c kern/i386/tsc_pit.c kern/compiler-rt.c kern/…
93term/efi/console.c kern/acpi.c kern/efi/acpi.c kern/efi/sb.c kern/compiler-rt.c kern/mm.c kern/tim…
94term/efi/console.c kern/acpi.c kern/efi/acpi.c kern/efi/sb.c kern/compiler-rt.c kern/mm.c kern/tim…
102term/i386/pc/vga_text.c kern/i386/dl.c kern/i386/tsc.c kern/i386/tsc_pit.c kern/compiler-rt.c kern…
103term/i386/pc/vga_text.c kern/i386/dl.c kern/i386/tsc.c kern/i386/tsc_pit.c kern/compiler-rt.c kern…
111term/gfxterm.c font/font.c font/font_cmd.c io/bufio.c video/fb/fbblit.c video/fb/fbfill.c video/fb…
[all …]
/OK3568_Linux_fs/yocto/poky/documentation/sdk-manual/
H A Dappendix-customizing.rst21 specific to the :term:`Build Host`.
24 :term:`ESDK_LOCALCONF_REMOVE`
32 :term:`ESDK_LOCALCONF_REMOVE`
36 :term:`ESDK_LOCALCONF_ALLOW`
38 :term:`ESDK_LOCALCONF_ALLOW` overrides either of the previous two
42 :term:`INHERIT` that are listed in
43 :term:`ESDK_CLASS_INHERIT_DISABLE`
44 are disabled. Using :term:`ESDK_CLASS_INHERIT_DISABLE` to disable these
59 In most cases, the extensible SDK defaults should work with your :term:`Build
64 :term:`INHERIT` variable and you
[all …]
/OK3568_Linux_fs/kernel/drivers/infiniband/sw/siw/
H A Diwarp.h229 static inline u8 __rdmap_term_layer(struct iwarp_terminate *term) in __rdmap_term_layer() argument
231 return term->layer; in __rdmap_term_layer()
234 static inline void __rdmap_term_set_layer(struct iwarp_terminate *term, in __rdmap_term_set_layer() argument
237 term->layer = layer & 0xf; in __rdmap_term_set_layer()
240 static inline u8 __rdmap_term_etype(struct iwarp_terminate *term) in __rdmap_term_etype() argument
242 return term->etype; in __rdmap_term_etype()
245 static inline void __rdmap_term_set_etype(struct iwarp_terminate *term, in __rdmap_term_set_etype() argument
248 term->etype = etype & 0xf; in __rdmap_term_set_etype()
251 static inline u8 __rdmap_term_ecode(struct iwarp_terminate *term) in __rdmap_term_ecode() argument
253 return term->ecode; in __rdmap_term_ecode()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/proto/
H A Dgenerate.hpp41 struct by_value_generator_<proto::expr<Tag, term<Arg>, 0> >
46 , term<typename detail::term_traits<Arg>::value_type>
52 static type const call(proto::expr<Tag, term<Arg>, 0> const &e) in call()
60 struct by_value_generator_<proto::basic_expr<Tag, term<Arg>, 0> >
65 , term<typename detail::term_traits<Arg>::value_type>
71 static type const call(proto::basic_expr<Tag, term<Arg>, 0> const &e) in call()
236 …Extends<expr<tag::terminal, proto::term<Member Class::*> > > operator ()(expr<tag::terminal, proto… in operator ()()
238 Extends<expr<tag::terminal, proto::term<Member Class::*> > > that; in operator ()()
245 …tends<basic_expr<tag::terminal, proto::term<Member Class::*> > > operator ()(basic_expr<tag::termi… in operator ()()
247 Extends<basic_expr<tag::terminal, proto::term<Member Class::*> > > that; in operator ()()
/OK3568_Linux_fs/kernel/drivers/media/usb/uvc/
H A Duvc_driver.c1148 struct uvc_entity *unit, *term; in uvc_parse_standard_control() local
1232 term = uvc_alloc_entity(type | UVC_TERM_INPUT, buffer[3], in uvc_parse_standard_control()
1234 if (term == NULL) in uvc_parse_standard_control()
1237 if (UVC_ENTITY_TYPE(term) == UVC_ITT_CAMERA) { in uvc_parse_standard_control()
1238 term->camera.bControlSize = n; in uvc_parse_standard_control()
1239 term->camera.bmControls = (u8 *)term + sizeof(*term); in uvc_parse_standard_control()
1240 term->camera.wObjectiveFocalLengthMin = in uvc_parse_standard_control()
1242 term->camera.wObjectiveFocalLengthMax = in uvc_parse_standard_control()
1244 term->camera.wOcularFocalLength = in uvc_parse_standard_control()
1246 memcpy(term->camera.bmControls, &buffer[15], n); in uvc_parse_standard_control()
[all …]

12345678910>>...29