/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/postfix/files/ |
H A D | aliasesdb | 6 if [ "$(/usr/sbin/postconf -h alias_database)" = "hash:/etc/aliases" ] 8 # /etc/aliases.db may be used by other MTA, make sure nothing 10 [ /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"
|
/openbmc/linux/tools/perf/util/ |
H A D | pmus.c | 403 struct sevent *aliases; member 418 s = &state->aliases[state->index]; in perf_pmus__print_pmu_events__callback() 440 struct sevent *aliases; in perf_pmus__print_pmu_events() local 455 aliases = zalloc(sizeof(struct sevent) * len); in perf_pmus__print_pmu_events() 456 if (!aliases) { in perf_pmus__print_pmu_events() 462 .aliases = aliases, in perf_pmus__print_pmu_events() 470 qsort(aliases, len, sizeof(struct sevent), cmp_sevent); in perf_pmus__print_pmu_events() 473 if (j < len - 1 && pmu_alias_is_duplicate(&aliases[j], &aliases[j + 1])) in perf_pmus__print_pmu_events() 477 aliases[j].topic, in perf_pmus__print_pmu_events() 478 aliases[j].pmu_name, in perf_pmus__print_pmu_events() [all …]
|
H A D | pmu.h | 112 * @aliases: List of struct perf_pmu_alias. Each alias corresponds to an 116 struct list_head aliases; member 121 /** @sysfs_aliases: Number of sysfs aliases loaded. */ 123 /** @cpu_json_aliases: Number of json event aliases loaded specific to the CPUID. */ 125 /** @sys_json_aliases: Number of json event aliases loaded matching the PMU's identifier. */ 127 /** @sysfs_aliases_loaded: Are sysfs aliases loaded from disk? */
|
/openbmc/linux/tools/perf/tests/ |
H A D | pmu-events.c | 25 /* used for matching against event aliases */ 26 /* extra events for aliases */ 42 struct perf_pmu_test_event const *aliases[10]; member 358 pr_debug("testing aliases PMU %s: mismatched name, %s vs %s\n", in compare_alias_to_test_event() 364 pr_debug("testing aliases PMU %s: mismatched desc, %s vs %s\n", in compare_alias_to_test_event() 370 pr_debug("testing aliases PMU %s: mismatched long_desc, %s vs %s\n", in compare_alias_to_test_event() 377 pr_debug("testing aliases PMU %s: mismatched topic, %s vs %s\n", in compare_alias_to_test_event() 383 pr_debug("testing aliases PMU %s: mismatched str, %s vs %s\n", in compare_alias_to_test_event() 389 pr_debug("testing aliases PMU %s: mismatched long desc, %s vs %s\n", in compare_alias_to_test_event() 396 pr_debug("testing aliases PMU %s: mismatched pmu_name, %s vs %s\n", in compare_alias_to_test_event() [all …]
|
/openbmc/u-boot/arch/arm/mach-tegra/tegra186/ |
H A D | nvtboot_board.c | 120 static void set_calculated_aliases(char *aliases, u64 address) in set_calculated_aliases() argument 125 aliases = strdup(aliases); in set_calculated_aliases() 126 if (!aliases) { in set_calculated_aliases() 127 pr_err("strdup(aliases) failed"); in set_calculated_aliases() 131 tmp = aliases; in set_calculated_aliases() 142 free(aliases); in set_calculated_aliases() 154 char *aliases; in set_calculated_env_var() local 181 aliases = env_get(var_aliases); in set_calculated_env_var() 185 if (aliases) in set_calculated_env_var() 186 debug("%s: Aliases: %s\n", __func__, aliases); in set_calculated_env_var() [all …]
|
/openbmc/linux/arch/powerpc/sysdev/ |
H A D | mpic_msgr.c | 110 struct device_node *aliases; in mpic_msgr_number_of_blocks() local 113 aliases = of_find_node_by_name(NULL, "aliases"); in mpic_msgr_number_of_blocks() 115 if (aliases) { in mpic_msgr_number_of_blocks() 120 if (!of_property_present(aliases, buf)) in mpic_msgr_number_of_blocks() 125 of_node_put(aliases); in mpic_msgr_number_of_blocks() 138 struct device_node *aliases; in mpic_msgr_block_number() local 143 aliases = of_find_node_by_name(NULL, "aliases"); in mpic_msgr_block_number() 144 if (!aliases) in mpic_msgr_block_number() 152 prop = of_find_property(aliases, buf, NULL); in mpic_msgr_block_number() 160 of_node_put(aliases); in mpic_msgr_block_number()
|
/openbmc/u-boot/lib/ |
H A D | fdtdec_test.c | 62 /* maximum number of nodes / aliases to generate */ 70 * @param aliases Specifies alias assignments. Format is a list of items 77 static int make_fdt(void *fdt, int size, const char *aliases, in make_fdt() argument 88 CHECK(fdt_begin_node(fdt, "aliases")); in make_fdt() 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() 191 /* no aliases */ in do_test_fdtdec() 199 /* conflicting aliases - first one gets it */ in do_test_fdtdec()
|
/openbmc/linux/arch/mips/cavium-octeon/ |
H A D | octeon-platform.c | 706 int aliases; in octeon_fill_mac_addresses() local 710 aliases = fdt_path_offset(initial_boot_params, "/aliases"); in octeon_fill_mac_addresses() 711 if (aliases < 0) in octeon_fill_mac_addresses() 726 alias_prop = fdt_getprop(initial_boot_params, aliases, in octeon_fill_mac_addresses() 736 alias_prop = fdt_getprop(initial_boot_params, aliases, "pip", NULL); in octeon_fill_mac_addresses() 773 int aliases; in octeon_prune_device_tree() local 782 aliases = fdt_path_offset(initial_boot_params, "/aliases"); in octeon_prune_device_tree() 783 if (aliases < 0) { in octeon_prune_device_tree() 784 pr_err("Error: No /aliases node in device tree."); in octeon_prune_device_tree() 803 alias_prop = fdt_getprop(initial_boot_params, aliases, in octeon_prune_device_tree() [all …]
|
/openbmc/linux/drivers/i2c/ |
H A D | i2c-atr.c | 43 * assigned aliases 70 * @num_aliases: Number of aliases in the aliases array 71 * @aliases: The aliases array 73 * @alias_use_mask: Bitmask for used aliases in aliases array 90 const u16 *aliases; member 128 * Replace all message addresses with their aliases, saving the original 177 * Restore all message address aliases with the original addresses. This 293 return atr->aliases[idx]; in i2c_atr_reserve_alias() 303 if (atr->aliases[idx] == alias) { in i2c_atr_release_alias() 486 atr->aliases = aliases16; in i2c_atr_parse_alias_pool() [all …]
|
/openbmc/linux/Documentation/networking/ |
H A D | alias.rst | 7 IP-aliases are an obsolete way to manage multiple IP-addresses/masks 9 address/prefixes per interface, but aliases are still supported 42 Aliases are not real devices, but programs should be able to configure 49 If the base device is shut down the added aliases will be deleted too.
|
/openbmc/linux/sound/ |
H A D | Kconfig | 24 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
|
H A D | sound_core.c | 121 * requests modules using custom sound-slot/service-* module aliases. 123 * aliases instead of the standard char-major-* ones. This behavior 132 * preclaimed and the custom module aliases along with standard chrdev 135 * devices only the standard chrdev aliases are requested. 138 * sound-slot/service-* module aliases. 566 * sound-slot/service-* module aliases are scheduled in soundcore_open() 568 * module aliases. For the time being, generate both in soundcore_open() 569 * the legacy and standard module aliases to ease in soundcore_open()
|
/openbmc/linux/Documentation/devicetree/bindings/powerpc/fsl/ |
H A D | mpic-msgr.txt | 32 Aliases: 36 may require aliases to be present. Aliases are of the form 42 aliases {
|
/openbmc/linux/Documentation/devicetree/bindings/media/ |
H A D | st,stih4xx.txt | 24 Aliases: 25 Each BDISP should have a numbered alias in the aliases node, in the form of 30 aliases {
|
/openbmc/qemu/tests/functional/ |
H A D | test_x86_cpu_model_versions.py | 3 # Basic validation of x86 versioned CPU models and CPU model aliases 30 Validation of PC CPU model versions and CPU model aliases 35 # all aliases must point to a valid CPU model name: 38 # aliases must not point to aliases 42 # aliases must not be static 77 Check if pc-*-4.0 unversioned CPU model won't be reported as aliases 80 # pc-*-4.0 won't expose non-versioned CPU models as aliases 136 # On pc-*-4.1, -noTSX and -IBRS models should be aliases:
|
/openbmc/qemu/docs/devel/ |
H A D | memory.rst | 70 - alias: a subsection of another region. Aliases allow a region to be 74 expose a "PCI hole". You can also create aliases to avoid trying to 78 Aliases may point to any type of region, including other aliases, 193 This exceptional usage is valid because aliases and containers only help 195 memory_region_ref and memory_region_unref are never called on aliases 203 on regions that have no owner, unless they are aliases or containers. 224 aliases that leave holes then the lower priority region will appear in these 321 system address space via two aliases: "lomem" is a 1:1 mapping of the first 333 we only want parts of it to be visible (we accomplish this using aliases).
|
/openbmc/u-boot/doc/device-tree-bindings/serial/ |
H A D | qca,ar9330-uart.txt | 12 Each UART port must have an alias correctly numbered in "aliases" 17 aliases {
|
/openbmc/linux/Documentation/devicetree/bindings/display/ti/ |
H A D | ti,omap-dss.txt | 35 Aliases 38 The board dts file may define aliases for displays to assign "displayX" style 39 name for each display. If no aliases are defined, a semi-random number is used 94 aliases {
|
/openbmc/linux/Documentation/devicetree/bindings/display/ |
H A D | simple-framebuffer.yaml | 34 It is advised to add display# aliases to help the OS determine how 35 to number things. If display# aliases are used, then if the simplefb 36 node contains a display property then the /aliases/display# path 43 aliases. If display aliases are used then it should be set to the
|
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/ |
H A D | libpthread-stubs_0.5.bb | 1 SUMMARY = "Library that provides weak aliases for pthread functions" 2 DESCRIPTION = "This library provides weak aliases for pthread functions \
|
/openbmc/linux/Documentation/devicetree/bindings/serial/ |
H A D | arc-uart.txt | 20 Note: Each port should have an alias correctly numbered in "aliases" node. 23 aliases {
|
H A D | digicolor-usart.txt | 15 in "aliases" node. 18 aliases {
|
H A D | vt8500-uart.txt | 15 Aliases may be defined to ensure the correct ordering of the uarts. 18 aliases {
|
/openbmc/linux/Documentation/devicetree/bindings/gpio/ |
H A D | gpio-clps711x.txt | 14 Note: Each GPIO port should have an alias correctly numbered in "aliases" 19 aliases {
|
/openbmc/linux/Documentation/devicetree/bindings/timer/ |
H A D | cirrus,clps711x-timer.txt | 9 Note: Each timer should have an alias correctly numbered in "aliases" node. 12 aliases {
|