| /onnv/onnv-gate/usr/src/cmd/lp/lib/lp/ |
| charset.c | 49 register char *alias; local 63 alias = strchr(*list, '='); 64 if (alias && STREQU(alias+1, item))
|
| /onnv/onnv-gate/usr/src/lib/libpkg/common/ |
| devtype.c | 42 devtype(char *alias, struct pkgdev *devp) 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, "capacity")) [all...] |
| /onnv/onnv-gate/usr/src/cmd/ypcmd/ |
| yp_getalias.c | 67 * Setup alias file, check /var/yp filesystem type 110 * Match key to alias 120 char *alias; local 140 alias = strtok(NULL, " \t\n"); 141 if (longname == NULL || alias == NULL) { 145 if ((int)strlen(alias) > (maxlen)) { 146 strncpy(key_alias, alias, (maxlen)); 149 strcpy(key_alias, alias); 154 /* alias not found */ 160 * Match alias to ke 170 char *alias; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libvolmgt/common/ |
| volmgt.c | 581 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) {
|
| /onnv/onnv-gate/usr/src/cmd/sendmail/aux/ |
| aliasadm.c | 36 static struct nis_mailias alias = {NULL, NULL, NULL, NULL}; variable in typeref:struct:nis_mailias 74 nis_mailias_add(alias, alias_map, domain); 77 nis_mailias_change(alias, alias_map, domain); 80 nis_mailias_delete(alias, alias_map, domain); 136 alias.name = strdup(optarg); 137 alias.expn = strdup(argv[ind]); 139 alias.comments = strdup(argv[ind + 1]); 142 alias.options = strdup(argv[ind + 2]); 153 alias.name = optarg; 154 alias.expn = strdup(argv[ind]) [all...] |
| /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkgadm/ |
| removecert.c | 62 char *alias = NULL; local 76 alias = optarg; 95 if (alias == NULL) { 174 alias); 175 if (delete_cert_and_keys(err, keystore, alias) != 0) { 177 log_msg(LOG_MSG_ERR, MSG_NO_REMOVECERT, alias); 187 log_msg(LOG_MSG_ERR, MSG_NO_REMOVECERT, alias); 191 log_msg(LOG_MSG_INFO, MSG_REMOVED, alias);
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWuacm/ |
| postinstall | 47 for alias in ${aliases} 49 egrep "^${driver}[ ]+${alias}" ${BASEDIR}/etc/driver_aliases > /dev/null 2>&1 52 echo "${driver} ${alias}" >> ${BASEDIR}/etc/driver_aliases
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWuedg/ |
| postinstall | 47 for alias in ${aliases} 49 egrep "^${driver}[ ]+${alias}" ${BASEDIR}/etc/driver_aliases > /dev/null 2>&1 52 echo "${driver} ${alias}" >> ${BASEDIR}/etc/driver_aliases
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWuksp/ |
| postinstall | 48 for alias in ${aliases} 50 egrep "^${driver}[ ]+${alias}" ${BASEDIR}/etc/driver_aliases > /dev/null 2>&1 53 echo "${driver} ${alias}" >> ${BASEDIR}/etc/driver_aliases
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWuprl/ |
| postinstall | 47 for alias in ${aliases} 49 egrep "^${driver}[ ]+${alias}" ${BASEDIR}/etc/driver_aliases > /dev/null 2>&1 52 echo "${driver} ${alias}" >> ${BASEDIR}/etc/driver_aliases
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWaudiohd/ |
| postinstall | 41 for alias in ${aliases} 43 egrep "^${driver}[ ]+${alias}" ${BASEDIR}/etc/driver_aliases>/dev/null 2>&1 46 echo "${driver} ${alias}" >> ${BASEDIR}/etc/driver_aliases
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWuftdi/ |
| postinstall | 45 for alias in ${aliases} 47 egrep "^${driver}[ ]+${alias}" ${BASEDIR}/etc/driver_aliases > /dev/null 2>&1 50 echo "${driver} ${alias}" >> ${BASEDIR}/etc/driver_aliases
|
| /onnv/onnv-gate/usr/src/cmd/rpcsvc/nis/utils/ |
| nisauthconf.c | 46 char *alias; member in struct:mech_t 73 (void) printf("%s", mechlist[i]->alias); 91 #define HEADING2 "Alias" 116 mechlist[0]->alias = "des"; 125 if (mechlist[i]->alias) m2 = strlen(mechlist[i]->alias); 141 GENSPC(sc[1], mechlist[i]->alias ? 142 mechlist[i]->alias : "-"), 199 while (mechs[j].alias) { 200 if (!(strcmp(argv[i], mechs[j].alias))) { [all...] |
| /onnv/onnv-gate/usr/src/common/openssl/crypto/asn1/ |
| x_x509a.c | 77 ASN1_OPT(X509_CERT_AUX, alias, ASN1_UTF8STRING), 96 if (!x || !x->aux || !x->aux->alias) 98 ASN1_UTF8STRING_free(x->aux->alias); 99 x->aux->alias = NULL; 103 if(!aux->alias && !(aux->alias = ASN1_UTF8STRING_new())) return 0; 104 return ASN1_STRING_set(aux->alias, name, len); 125 if(!x->aux || !x->aux->alias) return NULL; 126 if(len) *len = x->aux->alias->length; 127 return x->aux->alias->data [all...] |
| /onnv/onnv-gate/usr/src/lib/libnsl/nis/gen/ |
| nis_sec_mechs.c | 265 if (mp->alias) 266 free(mp->alias); 346 * An alias field of "des" (case not sig) will override any settings 367 * <Alias> <GSS_quality_of_protection> <GSS_sec_svc> 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 901 char alias[MECH_MAXALIASNAME+1] = {0}; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libnsl/include/rpcsvc/ |
| nis_dhext.h | 77 char *alias; member in struct:__anon3812 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 */
|
| /onnv/onnv-gate/usr/src/cmd/lvm/metassist/layout/ |
| layout_discovery.h | 80 * functions that set/get a descriptor's multipath alias name(s). 83 extern int set_alias(dm_descriptor_t desc, char *alias);
|
| /onnv/onnv-gate/usr/src/cmd/sgs/rtld/sparcv9/ |
| boot.s | 99 ! +8: alias start (frame exists) XX64 what's this for?
|
| /onnv/onnv-gate/usr/src/lib/libdiskmgt/common/ |
| alias.c | 62 /* Find the alias for this descriptor */ 66 if (libdiskmgt_str_eq(dp->name, ap->alias)) { 67 /* we found the alias for this descriptor */ 97 /* get the status for this alias */ 125 descriptor_t *alias = NULL; local 134 alias = aliases[i]; 142 if (alias == NULL) { 146 return (alias); 183 if (ap->alias != NULL) { 184 cache_load_desc(DM_ALIAS, dp, ap->alias, NULL, &error) [all...] |
| /onnv/onnv-gate/usr/src/lib/libsldap/common/ |
| ns_getalias.c | 44 * 1 = alias not found; 97 __getldapaliasbyname(char *alias, int *retval) 111 if (!alias || !*alias) { 126 if (snprintf(filter, sizeof (filter), ALIAS_FILTER, alias, alias) < 0) { 134 alias, alias) < 0) {
|
| /onnv/onnv-gate/usr/src/lib/libadm/common/ |
| getdev.c | 217 char *entry; /* Pointer to alias in record */ 259 * - Free the alias list 279 * it returns the device name (not the alias). 282 * devtabentry The device alias that may or may not belong in the 292 char *devtabentry, /* Alias to check against list */ 294 char **aliases, /* List of alias of those devices */ 656 * a device couldn't be found, that alias will be "". There 675 char *alias; /* Alias of current device */ local 688 /* Get space for the alias list * 777 char *alias; \/* Alias of device found *\/ local [all...] |
| devreserv.c | 73 * with alias name (may be '\0' terminated) 487 * int appendlk(key, alias) 489 * char *alias 495 * alias The device alias being locked 509 char *alias) /* Alias to lock */ 516 (void) strcpy(lk.lk_alias, alias); 712 * not locked, it returns the device alias. 714 * A device is not locked if the device's alias does not appear i 736 char *alias; \/* Alias of "device" *\/ local 802 char *alias; \/* Device's alias (from devattr()) *\/ local 911 char *alias; \/* Alias of dev to reserve *\/ local [all...] |
| devtab.c | 47 * _validalias() Is a value a valid alias? 605 * int _validalias(alias) 606 * char *alias 608 * Determine if <alias> is a valid alias. Returns TRUE if it is 609 * a valid alias, FALSE otherwise. 612 * alias Value to check out 615 * TRUE if <alias> is a valid alias, FALSE otherwise. 619 _validalias(char *alias) /* Alias to validate * [all...] |
| /onnv/onnv-gate/usr/src/cmd/rcm_daemon/common/ |
| rcm_subr.c | 63 resolve_name(char *alias) 68 if (strlen(alias) == 0) 71 if (strncmp(alias, dev, strlen(dev)) == 0) { 76 if (realpath(alias, tmp) != NULL) { 84 return (s_strdup(alias)); 414 add_busy_rsrc_to_list(char *alias, pid_t pid, int state, int seq_num, 435 if ((errno = nvlist_add_string(info->info, RCM_RSRCNAME, alias)) || 514 rsrc_client_alloc(char *alias, char *modname, pid_t pid, uint_t flag) 519 assert((alias != NULL) && (modname != NULL)); 522 alias, modname, pid) [all...] |
| /onnv/onnv-gate/usr/src/cmd/svr4pkg/pkgrm/ |
| presvr4.c | 65 #define ASK_DEVICE "Enter the alias or pathname for the device to be " \ 85 char alias[PATH_MAX]; local 97 /* should accept device alias?? */ 101 if (n = ckstr(alias, NULL, PATH_MAX, NULL, NULL, NULL, 105 if (devtype(alias, &pkgdev)) 108 logerr(gettext(ERR_BADDEV), alias); local
|