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

1234

/osnet-11/usr/src/lib/libpkg/common/
H A Ddevtype.c42 devtype(char *alias, struct pkgdev *devp) argument
46 devp->name = alias;
52 /* see if alias represents an existing file */
53 if (alias[0] == '/') {
54 if (!isdir(alias)) {
60 /* see if alias represents a mountable device (e.g., a floppy) */
61 if ((devp->mount = devattr(alias, "mountpt")) != NULL &&
63 devp->bdevice = devattr(alias, "bdevice");
77 devp->cdevice = devattr(alias, "cdevice");
80 if (name = devattr(alias, "capacit
[all...]
H A Dkeystore.c115 * alias - Name of certificate to print, NULL means print all
124 print_certs(PKG_ERR *err, keystore_handle_t keystore_h, char *alias, argument
148 if ((alias != NULL) && (!streq(alias, fname))) {
183 if ((alias != NULL) && (!streq(alias, fname))) {
207 if (alias != NULL) {
210 alias, keystore->path);
229 * alias - Name of certificate to print
238 keystore_encoding_format_t format, char *alias, boolean_
237 print_cert(PKG_ERR *err, X509 *x, keystore_encoding_format_t format, char *alias, boolean_t is_trusted, FILE *outfile) argument
624 find_key_cert_pair(PKG_ERR *err, keystore_handle_t ks_h, char *alias, EVP_PKEY **key, X509 **cert) argument
775 merge_cert_and_key(PKG_ERR *err, X509 *cert, EVP_PKEY *key, char *alias, keystore_handle_t keystore_h) argument
882 delete_cert_and_keys(PKG_ERR *err, keystore_handle_t ks_h, char *alias) argument
[all...]
/osnet-11/usr/src/lib/libvolmgt/common/
H A Dvolmgt.c581 struct alias { struct
582 char *alias; member in struct:alias
589 static struct alias device_aliases[] = {
615 struct alias *s;
619 for (s = device_aliases; s->alias != NULL; s++) {
620 if (strcmp(start, s->alias) == 0) {
/osnet-11/usr/src/grub/grub2/grub-core/lib/ieee1275/
H A Dcmos.c29 auto int hook (struct grub_ieee1275_devalias *alias);
30 int hook (struct grub_ieee1275_devalias *alias) argument
37 if (grub_ieee1275_finddevice (alias->path, &dev))
H A Ddatetime.c36 auto int hook (struct grub_ieee1275_devalias *alias);
37 int hook (struct grub_ieee1275_devalias *alias) argument
39 if (grub_strcmp (alias->type, "rtc") == 0)
41 grub_dprintf ("datetime", "Found RTC %s\n", alias->path);
42 rtc = grub_strdup (alias->path);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/
H A Denctype_util.c75 const char *alias; local
86 alias = ktp->aliases[j];
87 if (alias == NULL)
89 if (strcasecmp(alias, string) == 0) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/
H A DAlias.pm30 my $alias = $Alias[$i];
33 if (ref($alias) eq 'Regexp' && $find =~ $alias)
39 elsif (ref($alias) eq 'CODE')
41 DEBUG and warn "$alias", "->", "($find)";
42 $new = $alias->($find);
44 elsif (lc($find) eq lc($alias))
51 DEBUG and warn "$alias, $new";
77 my ($alias,$name) = splice(@_,0,2);
78 unshift(@Alias, $alias
[all...]
/osnet-11/usr/src/lib/libnsl/nis/gen/
H A Dnis_sec_mechs.c265 if (mp->alias)
266 free(mp->alias);
346 * An alias field of "des" (case not sig) will override any settings
374 const int al_offset = 4; /* mech alias */
404 /* mechanism alias */
405 m->alias = NIS_SEC_CF_NA_CMP(*(flds + al_offset)) ? NULL
424 /* mech alias */
460 * mechname/alias/keylen/algotype combo. Else return FALSE.
480 if (!mp->alias && !tp->alias)
707 __nis_mechname2alias(const char *mechname, char *alias, size_t bufsize) argument
839 __nis_keyalg2mechalias( keylen_t keylen, algtype_t algtype, char *alias, size_t alias_len) argument
901 char alias[MECH_MAXALIASNAME+1] = {0}; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/kern/ieee1275/
H A Dopenfw.c38 int (*hook) (struct grub_ieee1275_devalias *alias))
71 struct grub_ieee1275_devalias alias; local
92 alias.type = childtype;
93 alias.path = childpath;
94 alias.name = childname;
95 ret = hook (&alias);
109 grub_ieee1275_devices_iterate (int (*hook) (struct grub_ieee1275_devalias *alias)) argument
111 auto int it_through (struct grub_ieee1275_devalias *alias);
112 int it_through (struct grub_ieee1275_devalias *alias) argument
114 if (hook (alias))
37 grub_children_iterate(const char *devpath, int (*hook) (struct grub_ieee1275_devalias *alias)) argument
125 grub_devalias_iterate(int (*hook) (struct grub_ieee1275_devalias *alias)) argument
130 struct grub_ieee1275_devalias alias; local
[all...]
/osnet-11/usr/src/lib/libnsl/include/rpcsvc/
H A Dnis_dhext.h77 char *alias; member in struct:__anon2017
90 * Except if the alias is equal to NIS_SEC_CF_DES_ALIAS,
98 #define AUTH_DES_COMPAT_CHK(mp) ((mp)->alias && \
100 (mp)->alias,\
114 VALID_ALIAS((mp)->alias))
117 #define MECH_PK_TECH(mp) (((mp)->alias)[0] == 'd' && ((mp)->alias)[1] == 'h')
120 #define MECH_MAXALIASNAME 32 /* Mechanism max size of mech alias name */
/osnet-11/usr/src/grub/grub2/grub-core/boot/decompressor/
H A Dminilib.c72 __attribute__ ((alias ("grub_memcmp")));
75 __attribute__ ((alias ("grub_memmove")));
78 __attribute__ ((alias ("grub_memmove")));
/osnet-11/usr/src/grub/grub2/grub-core/disk/ieee1275/
H A Dofdisk.c117 auto int dev_iterate (struct grub_ieee1275_devalias *alias);
119 int dev_iterate (struct grub_ieee1275_devalias *alias) argument
123 grub_dprintf ("disk", "device name = %s type = %s\n", alias->name,
124 alias->type);
126 if (grub_strcmp (alias->type, "block") != 0)
129 grub_dprintf ("disk", "disk name = %s\n", alias->name);
130 grub_dprintf ("disk", "disk name = %s, path = %s\n", alias->name,
131 alias->path);
133 op = ofdisk_hash_find (alias->name);
136 char *name = grub_strdup (alias
[all...]
H A Dnand.c38 auto int dev_iterate (struct grub_ieee1275_devalias *alias);
39 int dev_iterate (struct grub_ieee1275_devalias *alias) argument
41 if (! grub_strcmp (alias->name, "nand"))
43 hook (alias->name);
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_getalias.c41 * 1 = alias not found;
102 __getldapaliasbyname(char *alias, int *retval) argument
116 if (!alias || !*alias) {
131 if (snprintf(filter, sizeof (filter), ALIAS_FILTER, alias, alias) < 0) {
140 alias, alias) < 0) {
/osnet-11/usr/src/grub/grub2/grub-core/net/drivers/ieee1275/
H A Dofnet.c190 auto int find_alias_hook (struct grub_ieee1275_devalias *alias);
192 int find_alias_hook (struct grub_ieee1275_devalias *alias) argument
194 if (grub_strcmp (alias->path, fullname) == 0)
196 ret = grub_strdup (alias->name);
210 auto int search_net_devices (struct grub_ieee1275_devalias *alias);
212 int search_net_devices (struct grub_ieee1275_devalias *alias) argument
214 if (!grub_strcmp (alias->type, "network"))
236 ofdata->path = grub_strdup (alias->path);
266 shortname = find_alias (alias->path);
267 card->name = grub_xasprintf ("ofnet_%s", shortname ? : alias
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dcharnames.pm47 sub alias (@) subroutine
50 my $alias = ref $_[0] ? $_[0] : { @_ };
51 @alias3{keys %$alias} = values %$alias;
52 } # alias
64 croak "Charnames alias files can only have identifier characters";
66 if (my @alias = do $file) {
67 @alias == 1 && !defined $alias[0] and
68 croak "$file cannot be used as alias fil
[all...]
/osnet-11/usr/src/lib/libparted/common/include/parted/
H A Dfilesys.h68 * Structure describing a file system alias. This is separate from
75 const char* alias; member in struct:_PedFileSystemAlias
97 const char* alias, int deprecated);
99 const char* alias);
/osnet-11/usr/src/lib/libdiskmgt/common/
H A Dalias.c58 /* Find the alias for this descriptor */
64 /* we found the alias for this descriptor */
94 /* get the status for this alias */
122 descriptor_t *alias = NULL; local
131 alias = aliases[i];
139 if (alias == NULL) {
143 return (alias);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DMY.pm37 It also provides a convenient alias via the MY class.
/osnet-11/usr/src/grub/grub2/grub-core/video/
H A Dieee1275.c60 auto int hook (struct grub_ieee1275_devalias *alias);
61 int hook (struct grub_ieee1275_devalias *alias) argument
63 if (grub_strcmp (alias->type, "display") == 0)
65 grub_dprintf ("video", "Found display %s\n", alias->path);
66 display = grub_strdup (alias->path);
/osnet-11/usr/src/lib/nsswitch/ldap/common/
H A Dgetprotoent.c51 char *alias; member in struct:protocol_alias
80 * So it needs to replicate the canonical name as an alias of upper case.
92 * form as much as possible. If the alias can't be found in the aliases table,
93 * it assumes the alias is all upper case.
104 return (ip_aliases[i].alias);
140 char *buffer = NULL, **number, *alias; local
182 alias = get_alias(cname);
183 len = snprintf(buffer, buflen, " %s", alias);
/osnet-11/usr/src/grub/grub2/include/grub/ieee1275/
H A Dieee1275.h71 /* Maps a device alias to a pathname. */
187 (int (*hook) (struct grub_ieee1275_devalias *alias));
189 int (*hook) (struct grub_ieee1275_devalias *alias));
200 alias));
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_mod.c897 * Look for CRO alias.
907 char *alias = NULL; local
958 alias = di_cro_rec_fgeti_alias_id(r, 0, NULL, NULL);
959 topo_dprintf(mod->tm_hdl, TOPO_DBG_MODSVC, "%s: alias (%s)\n", __func__,
960 alias ? alias : "NULL");
962 /* return the alias-id */
963 if (alias != NULL)
964 *alias_id = topo_mod_strdup(mod, alias);
984 /* get chassis alias */
1066 char *alias = NULL; local
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/
H A Dfilesys.c77 ped_file_system_alias_register (PedFileSystemType* fs_type, const char* alias, argument
83 PED_ASSERT (alias != NULL, return);
91 fs_alias->alias = alias;
98 const char* alias)
105 PED_ASSERT (alias != NULL, return);
108 if (walk->fs_type == fs_type && !strcmp (walk->alias, alias))
142 if (!strcasecmp (alias_walk->alias, name))
147 PED_DEBUG (0, "File system alias
97 ped_file_system_alias_unregister(PedFileSystemType* fs_type, const char* alias) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/utils/lib/ExtUtils/
H A DMM.pm34 It also provides a convenient alias via the MM class (I didn't want
43 # Convenient alias.

Completed in 68 milliseconds

1234