Home
last modified time | relevance | path

Searched full:alias (Results 1 – 25 of 1606) sorted by relevance

12345678910>>...65

/openbmc/u-boot/doc/
H A Dgit-mailrc8 alias uboot u-boot@lists.denx.de
9 alias u-boot uboot
11 # Maintainer aliases. Use the same alias here as patchwork to keep
13 alias aaribaud Albert Aribaud <albert.u.boot@aribaud.net>
14 alias abiessmann Andreas Bießmann <andreas@biessmann.org>
15 alias abrodkin Alexey Brodkin <alexey.brodkin@synopsys.com>
16 alias afleming Andy Fleming <afleming@gmail.com>
17 alias ag Anatolij Gustschin <agust@denx.de>
18 alias agraf Alexander Graf <agraf@csgraf.de>
19 alias alisonwang Alison Wang <alison.wang@nxp.com>
[all …]
/openbmc/linux/scripts/mod/
H A Dfile2alias.c1 /* Simple code to turn various tables in an ELF file into alias definitions.
63 int (*do_entry)(const char *filename, void *symval, char *alias);
66 /* Size of alias provided to do_entry functions */
174 char alias[500]; in do_usb_entry() local
187 strcpy(alias, "usb:"); in do_usb_entry()
188 ADD(alias, "v", match_flags&USB_DEVICE_ID_MATCH_VENDOR, in do_usb_entry()
190 ADD(alias, "p", match_flags&USB_DEVICE_ID_MATCH_PRODUCT, in do_usb_entry()
193 strcat(alias, "d"); in do_usb_entry()
195 sprintf(alias + strlen(alias), "%0*X", in do_usb_entry()
198 sprintf(alias + strlen(alias), "%X", range_lo); in do_usb_entry()
[all …]
/openbmc/linux/tools/perf/tests/shell/lib/
H A Dperf_metric_validation_rules.json25 "Alias": "a" string
29 "Alias": "b" string
33 "Alias": "c" string
48 "Alias": "a" string
52 "Alias": "b" string
56 "Alias": "c" string
71 "Alias": "a" string
75 "Alias": "b" string
90 "Alias": "a" string
105 "Alias": "" string
[all …]
/openbmc/qemu/tests/functional/
H A Dtest_x86_cpu_model_versions.py34 if 'alias-of' in c:
36 self.assertIn(c['alias-of'], cpus,
37 … '%s.alias-of (%s) is not a valid CPU model name' % (c['name'], c['alias-of']))
39 self.assertNotIn('alias-of', cpus[c['alias-of']],
40 … '%s.alias-of (%s) points to another alias' % (c['name'], c['alias-of']))
90 self.assertNotIn('alias-of', cpus['Cascadelake-Server'],
91 'Cascadelake-Server must not be an alias')
92 self.assertNotIn('alias-of', cpus['Cascadelake-Server-v1'],
93 'Cascadelake-Server-v1 must not be an alias')
97 self.assertNotIn('alias-of', cpus['qemu64'],
[all …]
/openbmc/u-boot/tools/patman/
H A Dgitutil.py288 def BuildEmailList(in_list, tag=None, alias=None, raise_on_error=True): argument
301 alias: Alias dictionary
302 raise_on_error: True to raise an error when an alias fails to match,
308 >>> alias = {}
309 >>> alias['fred'] = ['f.bloggs@napier.co.nz']
310 >>> alias['john'] = ['j.bloggs@napier.co.nz']
311 >>> alias['mary'] = ['Mary Poppins <m.poppins@cloud.net>']
312 >>> alias['boys'] = ['fred', ' john']
313 >>> alias['all'] = ['fred ', 'john', ' mary ']
314 >>> BuildEmailList(['john', 'mary'], None, alias)
[all …]
H A Dsettings.py43 ... [alias]
57 # Check to make sure that bogus project gets general alias.
60 >>> config.get("alias", "enemies")
63 # Check to make sure that alias gets overridden by project.
66 >>> config.get("alias", "enemies")
169 """Read a git alias file. This is in the form used by git:
171 alias uboot u-boot@lists.denx.de
172 alias wd Wolfgang Denk <wd@denx.de>
180 print("Warning: Cannot find alias file '%s'" % fname)
183 re_line = re.compile('alias\s+(\S+)\s+(.*)')
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A D300126 'alias': node_alias,
129 'alias': bitmap_alias
164 result += f" '{node['node-name']}' -> '{node['alias']}'\n"
168 result += f" '{bitmap['name']}' -> '{bitmap['alias']}'\n"
208 src_map = self.mapping(self.src_node_name, 'node-alias',
209 self.src_bmap_name, 'bmap-alias')
211 dst_map = self.mapping(self.dst_node_name, 'node-alias',
212 self.dst_bmap_name, 'bmap-alias')
238 # Giving long bitmap names is OK, as long as there is a short alias for
243 # Skip all tests that do not use the intermediate alias
[all …]
/openbmc/linux/drivers/clk/samsung/
H A Dclk-s3c64xx.c311 ALIAS(FOUT_APLL, NULL, "fout_apll"),
312 ALIAS(FOUT_MPLL, NULL, "fout_mpll"),
313 ALIAS(FOUT_EPLL, NULL, "fout_epll"),
314 ALIAS(MOUT_EPLL, NULL, "mout_epll"),
315 ALIAS(DOUT_MPLL, NULL, "dout_mpll"),
316 ALIAS(HCLKX2, NULL, "hclk2"),
317 ALIAS(HCLK, NULL, "hclk"),
318 ALIAS(PCLK, NULL, "pclk"),
319 ALIAS(PCLK, NULL, "clk_uart_baud2"),
320 ALIAS(ARMCLK, NULL, "armclk"),
[all …]
/openbmc/openbmc-test-automation/lib/
H A Dconnection_client.robot23 # host, alias, port, timeout, newline, prompt, term_type,
74 [Documentation] Checks for an open connection to a host or alias.
75 [Arguments] ${alias}=None ${host}=${EMPTY} &{connection_args}
77 # alias The alias of the connection to validate.
81 # contain, but does not need to contain, the host or alias.
83 # Check to make sure we have an alias or host to search for.
84 Run Keyword If '${host}' == '${EMPTY}' Should Not Be Equal ${alias} None
85 ... msg=Need to provide a host or an alias. values=False
87 # Search the dictionary to see if it includes the host and alias.
91 ... Dictionary Should Contain Key ${connection_args} alias
[all …]
/openbmc/linux/tools/perf/util/include/linux/
H A Dlinkage.h59 #define SYM_ALIAS(alias, name, sym_type, linkage) \ argument
60 linkage(alias) ASM_NL \
61 .set alias, name ASM_NL \
62 .type alias sym_type ASM_NL \
63 .set .L__sym_size_##alias, .L__sym_size_##name ASM_NL \
64 .size alias, .L__sym_size_##alias
95 * SYM_FUNC_ALIAS -- define a global alias for an existing function
98 #define SYM_FUNC_ALIAS(alias, name) \ argument
99 SYM_ALIAS(alias, name, SYM_T_FUNC, SYM_L_GLOBAL)
103 * SYM_FUNC_ALIAS_LOCAL -- define a local alias for an existing function
[all …]
/openbmc/linux/tools/perf/util/
H A Dpmu.c97 /** @from_sysfs: Was the alias from sysfs or a json event? */
299 static int perf_pmu__parse_scale(struct perf_pmu *pmu, struct perf_pmu_alias *alias) in perf_pmu__parse_scale() argument
311 scnprintf(path + len, sizeof(path) - len, "%s/events/%s.scale", pmu->name, alias->name); in perf_pmu__parse_scale()
329 ret = perf_pmu__convert_scale(scale, NULL, &alias->scale); in perf_pmu__parse_scale()
335 static int perf_pmu__parse_unit(struct perf_pmu *pmu, struct perf_pmu_alias *alias) in perf_pmu__parse_unit() argument
346 scnprintf(path + len, sizeof(path) - len, "%s/events/%s.unit", pmu->name, alias->name); in perf_pmu__parse_unit()
352 sret = read(fd, alias->unit, UNIT_MAX_LEN); in perf_pmu__parse_unit()
358 if (alias->unit[sret - 1] == '\n') in perf_pmu__parse_unit()
359 alias->unit[sret - 1] = '\0'; in perf_pmu__parse_unit()
361 alias->unit[sret] = '\0'; in perf_pmu__parse_unit()
[all …]
/openbmc/linux/Documentation/networking/
H A Dalias.rst12 An alias is formed by adding a colon and a string when running ifconfig.
16 Alias creation
19 Alias creation is done by 'magic' interface naming: eg. to create a
20 200.1.1.1 alias for eth0 ...
24 ~~ -> request alias #0 creation (if not yet exists) for eth0
30 Alias deletion
33 The alias is removed by shutting the alias down::
36 ~~~~~~~~~~ -> will delete alias
39 Alias (re-)configuring
/openbmc/openbmc/poky/meta/recipes-extended/bash/bash/
H A D0001-changes-to-SIGINT-handler-while-waiting-for-a-child-.patch147 -alias m='more'
148 -alias m='more'
151 +alias morealias='more'
152 +alias morealias='more'
154 alias
155 -alias m='more'
156 -alias m='more'
157 -alias m='more'
159 +alias morealias='more'
160 +alias morealias='more'
[all …]
/openbmc/linux/Documentation/i2c/
H A Di2c-address-translators.rst17 called the "alias" and is (potentially) different from the physical
23 - there is normally no need to select the child port; the alias used on the
31 an available alias. Maintaining an appropriate pool of available aliases
33 ATR maintains a table of currently assigned alias and uses it to modify
48 Alias table:
53 in the transaction and based on the alias table.
55 Alias table:
60 Client Alias
69 - ATR driver finds slave X is on bus B and has alias 0x20, rewrites
87 2. When the attach callback is called pick an appropriate alias,
[all …]
/openbmc/openbmc/poky/meta/recipes-core/base-files/base-files/share/
H A Ddot.bashrc9 # alias ls='ls $LS_OPTIONS'
10 # alias ll='ls $LS_OPTIONS -l'
11 # alias l='ls $LS_OPTIONS -lA'
13 # Some more alias to avoid making mistakes:
14 # alias rm='rm -i'
15 # alias cp='cp -i'
16 # alias mv='mv -i'
/openbmc/qemu/scripts/qemugdb/
H A Dmtree.py55 alias = ptr['alias']
57 if not isnull(alias):
58 klass = ' (alias)'
72 if not isnull(alias):
73 gdb.write('%s alias: %s@%016x (@ %s)\n' %
75 alias['name'].string(),
77 alias,
80 self.queue.append(alias)
/openbmc/qemu/hw/pci-host/
H A Dpam.c40 memory_region_init_alias(&mem->alias[3], owner, "pam-ram", ram_memory, in init_pam()
43 memory_region_init_alias(&mem->alias[1], owner, "pam-rom", ram_memory, in init_pam()
45 memory_region_set_readonly(&mem->alias[1], true); in init_pam()
48 memory_region_init_alias(&mem->alias[0], owner, "pam-pci", pci_address_space, in init_pam()
50 memory_region_init_alias(&mem->alias[2], owner, "pam-pci", ram_memory, in init_pam()
55 memory_region_set_enabled(&mem->alias[i], false); in init_pam()
57 &mem->alias[i], 1); in init_pam()
67 memory_region_set_enabled(&pam->alias[pam->current], false); in pam_update()
69 memory_region_set_enabled(&pam->alias[pam->current], true); in pam_update()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/ttf-dejavu/
H A D30-dejavu-aliases.conf4 <alias>
7 </alias>
8 <alias>
11 </alias>
12 <alias>
15 </alias>
/openbmc/openbmc/poky/meta/recipes-graphics/ttf-fonts/liberation-fonts/
H A D30-liberation-aliases.conf5 <alias>
8 </alias>
9 <alias>
12 </alias>
13 <alias>
16 </alias>
/openbmc/linux/drivers/i2c/
H A Di2c-atr.c24 * struct i2c_atr_alias_pair - Holds the alias assigned to a client.
27 * @alias: I2C alias address assigned by the driver.
34 u16 alias; member
170 msgs[i].addr = c2a->alias; in i2c_atr_map_msgs()
234 return i2c_smbus_xfer(parent, c2a->alias, flags, read_write, command, in i2c_atr_smbus_xfer()
285 dev_err(atr->dev, "failed to find a free alias\n"); in i2c_atr_reserve_alias()
296 static void i2c_atr_release_alias(struct i2c_atr *atr, u16 alias) in i2c_atr_release_alias() argument
303 if (atr->aliases[idx] == alias) { in i2c_atr_release_alias()
313 dev_warn(atr->dev, "Unable to find mapped alias\n"); in i2c_atr_release_alias()
322 u16 alias; in i2c_atr_attach_client() local
[all …]
/openbmc/linux/include/linux/
H A Dlinkage.h33 #define SYSCALL_ALIAS(alias, name) asm( \ argument
34 ".globl " __stringify(alias) "\n\t" \
35 ".set " __stringify(alias) "," \
174 #define SYM_ALIAS(alias, name, linkage) \
175 linkage(alias) ASM_NL \
176 .set alias, name ASM_NL
194 * ALIAS -- does not generate debug info -- the aliased function will
257 * SYM_FUNC_ALIAS -- define a global alias for an existing function
260 #define SYM_FUNC_ALIAS(alias, name) \
261 SYM_ALIAS(alias, name, SYM_L_GLOBAL)
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dincompatible_lic.py22 # INCOMPATIBLE_LICENSE contains an alias (in SPDXLICENSEMAP) of this SPDX
28 # INCOMPATIBLE_LICENSE contains a wildcarded alias license matching this
33 # Verify that a package with an alias (from SPDXLICENSEMAP) to an SPDX
34 # license cannot be built when INCOMPATIBLE_LICENSE contains this alias
36 …self.lic_test('incompatible-license-alias', 'GPL-3.0-only', 'GPLv3', "is an obsolete license, plea…
38 # Verify that a package with an alias (from SPDXLICENSEMAP) to an SPDX
42 …self.lic_test('incompatible-license-alias', 'GPL-3.0-only', '*GPL-3.0', "*GPL-3.0 is an invalid li…
44 # Verify that a package with an alias (from SPDXLICENSEMAP) to an SPDX
46 # alias license matching the SPDX license
48 …self.lic_test('incompatible-license-alias', 'GPL-3.0-only', '*GPLv3', "*GPLv3 is an invalid licens…
[all …]
/openbmc/linux/tools/perf/arch/x86/util/
H A Dpmu.c22 char *alias; member
50 zfree(&pmu_alias->alias); in pmu_alias__delete()
54 static struct pmu_alias *pmu_alias__new(char *name, char *alias) in pmu_alias__new() argument
63 pmu_alias->alias = strdup(alias); in pmu_alias__new()
64 if (!pmu_alias->alias) in pmu_alias__new()
97 fd = perf_pmu__pathname_fd(dirfd, dent->d_name, "alias", O_RDONLY); in setup_pmu_alias_list()
134 if (!strcmp(name, pmu_alias->alias)) in __pmu_find_real_name()
158 return pmu_alias->alias; in __pmu_find_alias_name()
/openbmc/qemu/rust/qemu-api/src/
H A Dvmstate.rs13 #[doc(alias = "VMSTATE_UNUSED_BUFFER")]
36 #[doc(alias = "VMSTATE_UNUSED_V")]
44 #[doc(alias = "VMSTATE_UNUSED")]
52 #[doc(alias = "VMSTATE_SINGLE_TEST")]
77 #[doc(alias = "VMSTATE_SINGLE")]
85 #[doc(alias = "VMSTATE_UINT32_V")]
99 #[doc(alias = "VMSTATE_UINT32")]
107 #[doc(alias = "VMSTATE_INT32_V")]
121 #[doc(alias = "VMSTATE_INT32")]
129 #[doc(alias = "VMSTATE_ARRAY")]
[all …]
/openbmc/linux/arch/x86/entry/vdso/
H A Dvclock_gettime.c26 __attribute__((weak, alias("__vdso_gettimeofday")));
33 __kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time")));
47 __attribute__((weak, alias("__vdso_clock_gettime")));
55 __attribute__((weak, alias("__vdso_clock_getres")));
68 __attribute__((weak, alias("__vdso_clock_gettime")));
76 __attribute__((weak, alias("__vdso_clock_gettime64")));
84 __attribute__((weak, alias("__vdso_clock_getres")));

12345678910>>...65