Searched refs:alias (Results 151 - 175 of 365) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/lib/libterminfo/
H A Dterm_private.h143 char *alias; member in struct:__anon5337
/netbsd-6-1-5-RELEASE/sbin/ifconfig/
H A Daf_inet.c78 bool alias; local
91 alias = true;
93 /* Get the non-alias address for this interface. */
106 /* If creq and ifr are the same address, this is not an alias. */
108 alias = false;
120 printf("\tinet %s%s", alias ? "alias " : "", hbuf);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/include/opcode/
H A Dm68k.h78 /* The structure used to hold information for an opcode alias. */
82 /* The alias name. */
83 const char *alias; member in struct:m68k_opcode_alias
84 /* The instruction for which this is an alias. */
/netbsd-6-1-5-RELEASE/usr.bin/ypwhich/
H A Dypwhich.c123 for (i = 0; ypaliases[i].alias; i++)
125 ypaliases[i].alias, ypaliases[i].name);
312 for (i = 0; ypaliases[i].alias; i++) {
313 if (strcmp(map, ypaliases[i].alias) == 0) {
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/device/
H A Ddev-cache.c63 struct str_list *alias, int use_malloc)
73 if (!(alias = dm_malloc(sizeof(*alias)))) {
78 if (!(alias->str = dm_strdup(filename))) {
81 dm_free(alias);
90 if (!(alias = _alloc(sizeof(*alias)))) {
95 if (!(alias->str = _strdup(filename))) {
100 } else if (!(alias->str = dm_strdup(filename))) {
107 dm_list_add(&dev->aliases, &alias
62 dev_create_file(const char *filename, struct device *dev, struct str_list *alias, int use_malloc) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/
H A Dscanopt.c245 struct usg_elem *alias;
305 ue->next = ue->alias = NULL;
318 /* push onto the alias list. */
319 ue_curr = &((*ue_curr)->alias);
349 for (ue2 = ue->alias; ue2; ue2 = ue2->next)
377 for (ap = ue->alias; ap; ap = ap->next) {
387 for (ap = ue->alias; ap; ap = ap->next) {
432 for (ap = ue->alias; ap; ap = ap->next) {
456 for (ap = ue->alias; ap; ap = ap->next) {
466 for (ap = ue->alias; a
244 struct usg_elem *alias; member in struct:usg_elem
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dmaint.c577 struct cmd_list_element *alias = NULL; local
589 if (!lookup_cmd_composition (text, &alias, &prefix_cmd, &cmd))
616 /* If they used an alias, we only want to deprecate the alias.
621 if (alias)
623 if (alias->flags & MALLOCED_REPLACEMENT)
624 xfree (alias->replacement);
627 alias->flags |= (DEPRECATED_WARN_USER | CMD_DEPRECATED);
629 alias->flags &= ~(DEPRECATED_WARN_USER | CMD_DEPRECATED);
630 alias
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/rpc.pcnfsd/
H A Dpcnfsd_print.c1244 } alias[NPRINTERDEFS]; variable in typeref:struct:__anon10054
1255 alias[num_aliases].a_printer = strdup(printer);
1256 alias[num_aliases].a_alias_for =
1259 alias[num_aliases].a_command = strdup(command);
1262 alias[num_aliases].a_command = (char *) grab(l);
1263 strlcpy(alias[num_aliases].a_command, command, l);
1264 strlcat(alias[num_aliases].a_command, " $FILE", l);
1286 curr->pn = strdup(alias[i].a_printer);
1287 if (alias[i].a_alias_for == NULL)
1290 curr->device = strdup(alias[
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/mips/include/
H A Dasm.h95 * WEAK_ALIAS: create a weak alias.
97 #define WEAK_ALIAS(alias,sym) \
98 .weak alias; \
99 alias = sym
101 * STRONG_ALIAS: create a strong alias.
103 #define STRONG_ALIAS(alias,sym) \
104 .globl alias; \
105 alias = sym
/netbsd-6-1-5-RELEASE/sys/arch/alpha/include/
H A Dasm.h197 * If you need to alias a leaf function, or to provide multiple entry points
312 * Global alias for a leaf function, or alternate entry point
324 * Local alias for a leaf function, or alternate entry point
614 * WEAK_ALIAS: create a weak alias.
616 #define WEAK_ALIAS(alias,sym) \
617 .weak alias; \
618 alias = sym
621 * STRONG_ALIAS: create a strong alias.
623 #define STRONG_ALIAS(alias,sym) \
624 .globl alias; \
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/arlib/
H A Darlib.c634 char *cp, **alias, *s; local
645 alias = rptr->re_he.h_aliases;
646 while (*alias)
647 alias++;
718 * or alias field if there is a known hostname
730 *alias = (char *)malloc(len);
731 if (!*alias)
733 (void)strcpy(*alias++, ar_hostbuf);
734 *alias = NULL;
739 if (alias >
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/evp/
H A Dnames.c150 if (nm->alias)
184 if (nm->alias)
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-scripts/
H A Dscript.exp130 set test_script_list [lsort [glob $srcdir/$subdir/region-alias-*.t]]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dpasses.c126 other attributes such as visibility. Emit the alias now. */
128 tree alias; local
129 alias = lookup_attribute ("alias", DECL_ATTRIBUTES (decl));
130 if (alias)
132 alias = TREE_VALUE (TREE_VALUE (alias));
133 alias = get_identifier (TREE_STRING_POINTER (alias));
134 assemble_alias (decl, alias);
[all...]
H A Dcgraph.h163 bool alias; local
212 bool alias; local
/netbsd-6-1-5-RELEASE/usr.bin/fgen/
H A Dfgen.l876 * Insert alias into macros.
898 (void)printf( "aadd: new alias `%s' to `%s'\n",
908 (void)printf( "aadd: new alias `%s' to `%s'\n",
942 struct macro *alias = macros;
957 aliases = alias;
958 alias->l = alias->r = NULL;
959 alias->type = MACRO;
960 while ((++alias)->name) {
961 if(!aadd(aliases, alias)) {
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/ia64/
H A Dpound.l55 [[:space:]]*[[:digit:]]+[[:space:]]+\.alias esym#, "efunction"
56 [[:space:]]*[[:digit:]]+[[:space:]]+\.alias esym, "efunc"
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/moxie/
H A Dsfp-machine.h53 /* Define ALIASNAME as a strong alias for NAME. */
56 extern __typeof (name) aliasname __attribute__ ((alias (#name)));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/config/rs6000/
H A Dsfp-machine.h65 /* Define ALIASNAME as a strong alias for NAME. */
68 extern __typeof (name) aliasname __attribute__ ((alias (#name)));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/cp/
H A Doptimize.c255 bool alias = false; local
319 alias = true;
334 else if (alias)
340 to use an alias for the complete variant. */
411 if (alias)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dunwind-dw2.c1584 alias (_Unwind_Backtrace);
1585 alias (_Unwind_DeleteException);
1586 alias (_Unwind_FindEnclosingFunction);
1587 alias (_Unwind_ForcedUnwind);
1588 alias (_Unwind_GetDataRelBase);
1589 alias (_Unwind_GetTextRelBase);
1590 alias (_Unwind_GetCFA);
1591 alias (_Unwind_GetGR);
1592 alias (_Unwind_GetIP);
1593 alias (_Unwind_GetLanguageSpecificDat
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgcc/config/moxie/
H A Dsfp-machine.h53 /* Define ALIASNAME as a strong alias for NAME. */
56 extern __typeof (name) aliasname __attribute__ ((alias (#name)));
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/src/
H A Dcompatibility-ldbl.cc85 __attribute__((alias ("_ZNKSt3tr14hashIeEclEe")));
H A Distream-inst.cc99 extern "C" void ldbl (void) __attribute__ ((alias (#dbl), weak))
H A Dostream-inst.cc102 extern "C" void ldbl (void) __attribute__ ((alias (#dbl), weak))

Completed in 335 milliseconds

1234567891011>>