Searched refs:alias (Results 1 - 25 of 230) sorted by relevance

12345678910

/freebsd-10-stable/bin/sh/
H A Dalias.h32 * @(#)alias.h 8.2 (Berkeley) 5/4/95
38 struct alias { struct
39 struct alias *next;
45 struct alias *lookupalias(const char *, int);
H A Dinput.h47 struct alias;
56 void pushstring(char *, int, struct alias *);
H A Dalias.c35 static char sccsid[] = "@(#)alias.c 8.3 (Berkeley) 5/4/95";
47 #include "alias.h"
53 static struct alias *atab[ATABSIZE];
58 static struct alias **hashalias(const char *);
64 struct alias *ap, **app;
78 ap = ckmalloc(sizeof (struct alias));
91 struct alias *ap, **app;
98 * if the alias is currently in use (i.e. its
125 struct alias *ap, *tmp;
144 struct alias *
[all...]
/freebsd-10-stable/contrib/gcc/
H A Dunwind-compat.h34 #define alias(name) \ macro
35 __typeof(name) __libunwind##name __attribute__ ((alias (#name)))
/freebsd-10-stable/lib/libc/iconv/
H A Dcitrus_aliasname_local.h34 __unaliasname(const char *dbname, const char *alias, argument
38 return (_lookup_simple(dbname, alias,
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
H A DWeak.h26 IdentifierInfo *alias; // alias (optional) member in class:clang::WeakInfo
31 : alias(0), loc(SourceLocation()), used(false) {}
33 : alias(Alias), loc(Loc), used(false) {}
34 inline IdentifierInfo * getAlias() const { return alias; }
39 return alias == RHS.getAlias() && loc == RHS.getLocation();
/freebsd-10-stable/lib/libc/include/
H A Dcompat.h47 #define __weak_reference(sym,alias) \
48 .weak alias;.equ alias,sym
/freebsd-10-stable/usr.bin/mkimg/
H A Dscheme.c49 enum alias alias; member in struct:__anon61
70 static enum alias
78 return (scheme_alias[idx].alias);
135 enum alias alias; local
139 /* Check the partition type alias */
140 alias = scheme_parse_alias(p->alias);
141 if (alias
[all...]
/freebsd-10-stable/sys/i386/include/
H A Dasm.h94 * WEAK_ALIAS: create a weak alias.
96 #define WEAK_ALIAS(alias,sym) \
97 .weak alias; \
98 alias = sym
101 * STRONG_ALIAS: create a strong alias.
103 #define STRONG_ALIAS(alias,sym) \
104 .globl alias; \
105 alias = sym
/freebsd-10-stable/crypto/openssl/crypto/asn1/
H A Dx_x509a.c78 ASN1_OPT(X509_CERT_AUX, alias, ASN1_UTF8STRING),
98 if (!x || !x->aux || !x->aux->alias)
100 ASN1_UTF8STRING_free(x->aux->alias);
101 x->aux->alias = NULL;
106 if (!aux->alias && !(aux->alias = ASN1_UTF8STRING_new()))
108 return ASN1_STRING_set(aux->alias, name, len);
130 if (!x->aux || !x->aux->alias)
133 *len = x->aux->alias->length;
134 return x->aux->alias
[all...]
/freebsd-10-stable/contrib/tcsh/
H A Dtc.func.c311 /* alias(&cmd); */
828 * Added precmd(), which checks for the alias
829 * precmd in aliases. If it's there, the alias
842 xprintf("%s", CGETS(22, 3, "Faulty alias 'precmd' removed.\n"));
860 xprintf("%s", CGETS(22, 3, "Faulty alias 'postcmd' removed.\n"));
884 xprintf("%s", CGETS(22, 4, "Faulty alias 'cwdcmd' removed.\n"));
906 xprintf("%s", CGETS(22, 5, "Faulty alias 'beepcmd' removed.\n"));
920 * Added period_cmd(), which executes the alias "periodic" every
933 xprintf("%s", CGETS(22, 6, "Faulty alias 'periodic' removed.\n"));
971 xprintf("%s", CGETS(22, 14, "Faulty alias 'jobcm
[all...]
/freebsd-10-stable/contrib/gcclibs/libssp/ssp/
H A Dssp.h.in55 # define __SSP_REDIRECT(name, proto, alias) \
56 name proto __asm__ (__SSP_ASMNAME (#alias))
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/net/
H A Dt_servent.sh97 alias="$@"
99 $name $port $proto "$alias"
/freebsd-10-stable/sys/sparc64/include/
H A Dasm.h106 * WEAK_REFERENCE(): create a weak reference alias from sym.
111 #define WEAK_REFERENCE(sym, alias) \
112 .weak CNAME(alias); \
113 .equ CNAME(alias),CNAME(sym)
/freebsd-10-stable/contrib/ntp/sntp/libopts/
H A Dalias.c3 * \file alias.c
11 * This routine will forward an option alias to the correct option code.
56 * what: relay an option to its alias
59 * arg: + unsigned int + alias + the aliased-to option index +
67 optionAlias(tOptions * opts, tOptDesc * old_od, unsigned int alias) argument
74 new_od = opts->pOptDesc + alias;
75 if ((unsigned)opts->optCt <= alias) {
116 * end of autoopts/alias.c */
/freebsd-10-stable/sys/boot/efi/libefi/
H A Dhandles.c35 EFI_HANDLE alias; member in struct:entry
58 entry[idx].alias = aliases[unit];
60 entry[idx].alias = NULL;
88 if (entry[idx].handle != h && entry[idx].alias != h)
112 entry[idx].alias = NULL;
/freebsd-10-stable/usr.sbin/nscd/agents/
H A Dservices.c53 char **alias; local
67 for (alias = serv->s_aliases; *alias; ++alias) {
68 desired_size += strlen(*alias) + 1;
110 for (alias = new_serv.s_aliases; *alias; ++alias) {
111 size = strlen(*alias);
112 memcpy(p, *alias, siz
[all...]
/freebsd-10-stable/contrib/gcc/cp/
H A Dmethod.c262 /* Create a static alias to function. */
267 tree alias = build_decl (FUNCTION_DECL, newid, TREE_TYPE (function));
268 DECL_LANG_SPECIFIC (alias) = DECL_LANG_SPECIFIC (function);
269 cxx_dup_lang_specific_decl (alias);
270 DECL_CONTEXT (alias) = NULL;
271 TREE_READONLY (alias) = TREE_READONLY (function);
272 TREE_THIS_VOLATILE (alias) = TREE_THIS_VOLATILE (function);
273 TREE_PUBLIC (alias) = 0;
274 DECL_INTERFACE_KNOWN (alias) = 1;
275 DECL_NOT_REALLY_EXTERN (alias)
266 tree alias = build_decl (FUNCTION_DECL, newid, TREE_TYPE (function)); local
301 tree alias; local
322 tree a, t, function, alias; local
[all...]
/freebsd-10-stable/sys/ia64/include/
H A Dasm.h89 * Global alias for a leaf function, or alternate entry point
97 * Local alias for a leaf function, or alternate entry point
179 * WEAK_ALIAS: create a weak alias (ELF only).
181 #define WEAK_ALIAS(alias,sym) \
182 .weak alias; \
183 alias = sym
/freebsd-10-stable/usr.bin/ypcat/
H A Dypcat.c51 char *alias, *name; member in struct:ypalias
104 ypaliases[i].alias,
128 if (strcmp(inmap, ypaliases[i].alias) == 0)
/freebsd-10-stable/usr.bin/ypmatch/
H A Dypmatch.c51 char *alias, *name; member in struct:ypalias
90 ypaliases[i].alias,
114 if (strcmp(inmap, ypaliases[i].alias) == 0)
/freebsd-10-stable/contrib/compiler-rt/lib/
H A Dint_lib.h27 void __aeabi_##aeabi_name() __attribute__((alias("__" #name)));
/freebsd-10-stable/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAliasAnalysis.cpp55 ObjCARCAliasAnalysis::alias(const Location &LocA, const Location &LocB) { function in class:ObjCARCAliasAnalysis
57 return AliasAnalysis::alias(LocA, LocB);
60 // precise alias query.
64 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.TBAATag),
70 // ObjC-specific no-ops, and try making an imprecise alias query.
74 Result = AliasAnalysis::alias(Location(UA), Location(UB));
93 // a precise alias query.
100 // ObjC-specific no-ops, and try making an imprecise alias query.
/freebsd-10-stable/lib/libc/net/
H A Dgetnetnamadr.c139 char **alias; local
166 for (alias = ne->n_aliases; *alias; ++alias) {
167 desired_size += strlen(*alias) + 1;
202 for (alias = new_ne.n_aliases; *alias; ++alias) {
203 size = strlen(*alias);
204 memcpy(p, *alias, siz
227 char **alias; local
[all...]
H A Dgetprotoent.c155 char **alias; local
181 for (alias = proto->p_aliases; *alias; ++alias) {
182 desired_size += strlen(*alias) + 1;
217 for (alias = new_proto.p_aliases; *alias; ++alias) {
218 size = strlen(*alias);
219 memcpy(p, *alias, siz
241 char **alias; local
[all...]

Completed in 305 milliseconds

12345678910