Home
last modified time | relevance | path

Searched refs:aliases (Results 1 – 25 of 1724) sorted by relevance

12345678910>>...69

/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dpmu.c822 LIST_HEAD(aliases); in pmu_lookup()
839 if (pmu_aliases(name, &aliases)) in pmu_lookup()
851 pmu_add_cpu_aliases(&aliases, pmu); in pmu_lookup()
854 INIT_LIST_HEAD(&pmu->aliases); in pmu_lookup()
857 list_splice(&aliases, &pmu->aliases); in pmu_lookup()
1254 list_for_each_entry(alias, &pmu->aliases, list) { in pmu_find_alias()
1492 struct sevent *aliases; in print_pmu_events() local
1500 list_for_each_entry(alias, &pmu->aliases, list) in print_pmu_events()
1505 aliases = zalloc(sizeof(struct sevent) * len); in print_pmu_events()
1506 if (!aliases) in print_pmu_events()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/postfix/files/
H A Daliasesdb10 [ /etc/aliases -nt /etc/aliases.db ] ||
11 [ "$ALIASESDB_STAMP" -nt /etc/aliases.db ] ||
12 [ "$ALIASESDB_STAMP" -ot /etc/aliases.db ] || return 0
14 touch -r /etc/aliases.db "$ALIASESDB_STAMP"
/OK3568_Linux_fs/kernel/arch/powerpc/sysdev/
H A Dmpic_msgr.c108 struct device_node *aliases; in mpic_msgr_number_of_blocks() local
111 aliases = of_find_node_by_name(NULL, "aliases"); in mpic_msgr_number_of_blocks()
113 if (aliases) { in mpic_msgr_number_of_blocks()
118 if (!of_find_property(aliases, buf, NULL)) in mpic_msgr_number_of_blocks()
135 struct device_node *aliases; in mpic_msgr_block_number() local
140 aliases = of_find_node_by_name(NULL, "aliases"); in mpic_msgr_block_number()
141 if (!aliases) in mpic_msgr_block_number()
148 prop = of_find_property(aliases, buf, NULL); in mpic_msgr_block_number()
/OK3568_Linux_fs/kernel/arch/mips/cavium-octeon/
H A Docteon-platform.c705 int aliases; in octeon_fill_mac_addresses() local
709 aliases = fdt_path_offset(initial_boot_params, "/aliases"); in octeon_fill_mac_addresses()
710 if (aliases < 0) in octeon_fill_mac_addresses()
725 alias_prop = fdt_getprop(initial_boot_params, aliases, in octeon_fill_mac_addresses()
735 alias_prop = fdt_getprop(initial_boot_params, aliases, "pip", NULL); in octeon_fill_mac_addresses()
772 int aliases; in octeon_prune_device_tree() local
781 aliases = fdt_path_offset(initial_boot_params, "/aliases"); in octeon_prune_device_tree()
782 if (aliases < 0) { in octeon_prune_device_tree()
802 alias_prop = fdt_getprop(initial_boot_params, aliases, in octeon_prune_device_tree()
811 fdt_nop_property(initial_boot_params, aliases, in octeon_prune_device_tree()
[all …]
/OK3568_Linux_fs/u-boot/lib/
H A Dfdtdec_test.c77 static int make_fdt(void *fdt, int size, const char *aliases, in make_fdt() argument
89 for (s = aliases; *s;) { in make_fdt()
122 static int run_test(const char *aliases, const char *nodes, const char *expect) in run_test() argument
135 printf("aliases=%s, nodes=%s, expect=%s: ", aliases, nodes, expect); in run_test()
136 CHECKVAL(make_fdt(blob, FDT_SIZE, aliases, nodes), 0); in run_test()
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/media/
H A Dexynos5-gsc.txt27 Each G-Scaler node should have a numbered alias in the aliases node,
28 in the form of gscN, N = 0...3. G-Scaler driver uses these aliases
33 aliases {
H A Dst,stih4xx.txt25 Each BDISP should have a numbered alias in the aliases node, in the form of
30 aliases {
/OK3568_Linux_fs/kernel/arch/arm64/kernel/
H A Didreg-override.c85 } aliases[] __initconst = { variable
162 for (i = 0; parse_aliases && i < ARRAY_SIZE(aliases); i++) in __parse_cmdline()
163 if (parameq(buf, aliases[i].alias)) in __parse_cmdline()
164 __parse_cmdline(aliases[i].feature, false); in __parse_cmdline()
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dalias.rst7 IP-aliases are an obsolete way to manage multiple IP-addresses/masks
9 address/prefixes per interface, but aliases are still supported
49 If the base device is shut down the added aliases will be deleted too.
/OK3568_Linux_fs/external/xserver/render/
H A Dfilter.c177 PictFilterAliasPtr aliases; in PictureSetFilterAlias() local
180 aliases = reallocarray(ps->filterAliases, in PictureSetFilterAlias()
184 aliases = malloc(sizeof(PictFilterAliasRec)); in PictureSetFilterAlias()
185 if (!aliases) in PictureSetFilterAlias()
187 ps->filterAliases = aliases; in PictureSetFilterAlias()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dhighlight.pack.js2aliases&&r.aliases.forEach(function(e){L[e]=n})}function R(){return x(y)}function w(e){return e=(e…
/OK3568_Linux_fs/kernel/sound/
H A DKconfig24 module aliases when one of the device numbers is opened. With
27 standard char-major-* aliases.
29 The only visible difference is use of additional module aliases
31 /proc/devices. sound-slot/service-* module aliases are scheduled
/OK3568_Linux_fs/u-boot/doc/device-tree-bindings/serial/
H A Dqca,ar9330-uart.txt12 Each UART port must have an alias correctly numbered in "aliases"
17 aliases {
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/net/
H A Dmdio-gpio.txt11 Note: Each gpio-mdio bus should have an alias correctly numbered in "aliases"
16 aliases {
/OK3568_Linux_fs/kernel/tools/perf/tests/
H A Dpmu-events.c256 static struct perf_pmu_alias *find_alias(const char *test_event, struct list_head *aliases) in find_alias() argument
260 list_for_each_entry(alias, aliases, list) in find_alias()
273 LIST_HEAD(aliases); in __test__pmu_event_aliases()
296 pmu_add_cpu_aliases_map(&aliases, pmu, map); in __test__pmu_event_aliases()
299 struct perf_pmu_alias *alias = find_alias(te->name, &aliases); in __test__pmu_event_aliases()
351 list_for_each_entry_safe(a, tmp, &aliases, list) { in __test__pmu_event_aliases()
/OK3568_Linux_fs/buildroot/package/odb/
H A D0009-Handle-namespace-aliases-when-parsing-GCC-tree.patch4 Subject: [PATCH] Handle namespace aliases when parsing GCC tree
20 + // Ignore namespace aliases.
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/timer/
H A Dcirrus,clps711x-timer.txt9 Note: Each timer should have an alias correctly numbered in "aliases" node.
12 aliases {
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/serial/
H A Darc-uart.txt20 Note: Each port should have an alias correctly numbered in "aliases" node.
23 aliases {
H A Ddigicolor-usart.txt15 in "aliases" node.
18 aliases {
/OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/xorg-lib/
H A Dlibpthread-stubs_0.4.bb1 SUMMARY = "Library that provides weak aliases for pthread functions"
2 DESCRIPTION = "This library provides weak aliases for pthread functions \
/OK3568_Linux_fs/kernel/arch/arm/mm/
H A Dfault-armv.c140 int aliases = 0; in make_coherent() local
161 aliases += adjust_pte(mpnt, mpnt->vm_start + offset, pfn); in make_coherent()
164 if (aliases) in make_coherent()
/OK3568_Linux_fs/kernel/tools/hv/
H A Dvmbus_testing330 aliases = ['D'], prog = "vmbus_testing",
337 aliases = ['d'],
344 parser_view_all = subparsers.add_parser("view_all", aliases = ['V'],
352 aliases = ['v'],parents = [path_parser],
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/gpio/
H A Dgpio-clps711x.txt14 Note: Each GPIO port should have an alias correctly numbered in "aliases"
19 aliases {
/OK3568_Linux_fs/kernel/tools/vm/
H A Dslabinfo.c32 int aliases, align, cache_dma, cpu_slabs, destroy_by_rcu; member
59 int aliases; variable
354 for(a = aliasinfo;a < aliasinfo + aliases; a++) { in find_one_alias()
558 s->name, s->aliases, s->order, s->objects); in report()
627 if (s->aliases) in slabcache()
978 slabs, aliases, alias_targets, used_slabs); in totals()
1111 for (a1 = aliasinfo; a1 < aliasinfo + aliases; a1++) { in sort_aliases()
1112 for (a2 = a1 + 1; a2 < aliasinfo + aliases; a2++) { in sort_aliases()
1137 for (a = aliasinfo; a < aliasinfo + aliases; a++) { in link_slabs()
1158 for(a = aliasinfo; a < aliasinfo + aliases; a++) { in alias()
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_symbol.c471 symlist_t aliases; in symtable_dump() local
488 SLIST_INIT(&aliases); in symtable_dump()
516 symlist_add(&aliases, cursym, in symtable_dump()
589 while (SLIST_FIRST(&aliases) != NULL) { in symtable_dump()
592 curnode = SLIST_FIRST(&aliases); in symtable_dump()
593 SLIST_REMOVE_HEAD(&aliases, links); in symtable_dump()

12345678910>>...69