Searched refs:name (Results 276 - 300 of 4837) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/uts/common/kmdb/
H A Dkmdb.conf18 # information: Portions Copyright [yyyy] [name of copyright owner]
39 name="kmdb" parent="pseudo" instance=0 kmdb-driver-debug=0 kmdb-auto-entry=1;
/illumos-gate/usr/src/cmd/make/include/vroot/
H A Dreport.h17 * information: Portions Copyright [yyyy] [name of copyright owner]
33 extern void report_dependency(const char *name);
34 extern int file_lock(char *name, char *lockname, int *file_locked, int timeout);
/illumos-gate/usr/src/common/smbios/
H A Dmktables.sh19 # information: Portions Copyright [yyyy] [name of copyright owner]
118 echo "$name_funcs" | while read p name type; do
123 echo "\nconst char *\n$name($type x)\n{\n\tswitch (x) {"
131 # than those used for the identifier->name functions above:
137 echo "$desc_funcs" | while read p name type; do
142 echo "\nconst char *\n$name($type x)\n{\n\tswitch (x) {"
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dpwdauth.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
44 pwdauth(char *name, char *password) argument
57 if (spwp = getspnam(name))
59 else if (pwp = getpwnam(name))
67 name);
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dstat.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
37 fstatat64(int fd, const char *name, struct stat64 *sb, int flags) argument
39 return (syscall(SYS_fstatat64, fd, name, sb, flags));
44 stat64(const char *name, struct stat64 *sb) argument
47 return (syscall(SYS_stat64, name, sb));
49 return (fstatat64(AT_FDCWD, name, sb, 0));
55 lstat64(const char *name, struct stat64 *sb) argument
58 return (syscall(SYS_lstat64, name, sb));
60 return (fstatat64(AT_FDCWD, name, sb, AT_SYMLINK_NOFOLLOW));
79 fstatat(int fd, const char *name, struc argument
86 stat(const char *name, struct stat *sb) argument
97 lstat(const char *name, struct stat *sb) argument
[all...]
/illumos-gate/usr/src/cmd/ypcmd/
H A Dypalias.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
51 * Given a domain name, return its system v alias.
52 * If there is no alias name in the alias file,
59 mkdomain_alias(name, result)
60 char *name, *result;
65 retval = yp_getalias(name, result, NAME_MAX);
67 if ((int)strlen(name) > NAME_MAX) {
68 strncpy(result, name, NAME_MAX-4);
70 &name[strlen(name)
[all...]
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/mpxu/frudr/
H A Dfru_HDD0_data.info18 * information: Portions Copyright [yyyy] [name of copyright owner]
36 * name:<namepath> -- gives the anchor node
42 * NODE <name> <class>
46 * PROP <name> <type> <access_mode> [<size> <value>] -- per property
48 * REFPROP <name> <dstnode>
50 * REFNODE <name> <class> with <destnode> -- Associates a new node
53 * <name> is the nodename
55 * <destnode> is name:<namepath> or _class:<classpath>
57 * If "name:" or "_class:" is not specified in the <path>,
58 * the default is "name
[all...]
H A Dfru_HDD1_data.info18 * information: Portions Copyright [yyyy] [name of copyright owner]
36 * name:<namepath> -- gives the anchor node
42 * NODE <name> <class>
46 * PROP <name> <type> <access_mode> [<size> <value>] -- per property
48 * REFPROP <name> <dstnode>
50 * REFNODE <name> <class> with <destnode> -- Associates a new node
53 * <name> is the nodename
55 * <destnode> is name:<namepath> or _class:<classpath>
57 * If "name:" or "_class:" is not specified in the <path>,
58 * the default is "name
[all...]
H A DSB-tables.info18 * information: Portions Copyright [yyyy] [name of copyright owner]
43 name:/frutree/chassis/RMD0/cdrom
47 REFPROP _cdrom_ name:/platform/pci@1e,600000/ide@d/sd@0,0
54 name:/frutree/chassis/SYSCTRL
58 REFPROP _keyswitch_ name:RMCLOMV/keyswitch
65 name:/frutree/chassis/MB/system-board
69 REFPROP _voltage-sensor_ name:RMCLOMV/mb_v_+3v3
73 REFPROP _voltage-sensor_ name:RMCLOMV/mb_v_+5v
77 REFPROP _voltage-sensor_ name:RMCLOMV/mb_v_+12v
81 REFPROP _voltage-sensor_ name
[all...]
H A Dfru_SC_data.info18 * information: Portions Copyright [yyyy] [name of copyright owner]
33 * name:<namepath> -- gives the anchor node
39 * NODE <name> <class>
43 * PROP <name> <type> <access_mode> [<size> <value>] -- per property
45 * REFPROP <name> <dstnode>
47 * REFNODE <name> <class> with <destnode> -- Associates a new node
50 * <name> is the nodename
52 * <destnode> is name:<namepath> or _class:<classpath>
54 * If "name:" or "_class:" is not specified in the <path>,
55 * the default is "name
[all...]
/illumos-gate/usr/src/tools/ctf/common/
H A Dsymbol.h18 * information: Portions Copyright [yyyy] [name of copyright owner]
38 int ignore_symbol(GElf_Sym *sym, const char *name);
H A Dsymbol.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
35 ignore_symbol(GElf_Sym *sym, const char *name) argument
50 if (strcmp(name, "_START_") == 0 || strcmp(name, "_END_") == 0)
/illumos-gate/usr/src/ucblib/libucb/port/sys/
H A Dgethostid.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
55 char name[HOSTIDLEN], *end; local
59 error = sysinfo(SI_HW_SERIAL, name, HOSTIDLEN);
61 * error > 0 ==> number of bytes to hold name
68 hostid = strtoul(name, &end, 10);
69 if (hostid == 0 && end == name) {
H A Dgethostname.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
51 gethostname(char *name, int namelen) argument
55 error = sysinfo(SI_HOSTNAME, name, namelen);
57 * error > 0 ==> number of bytes to hold name
65 sethostname(char *name, int namelen) argument
76 error = sysinfo(SI_SET_HOSTNAME, name, namelen);
/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasOpenAdapter.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
37 HBA_HANDLE Sun_sasOpenAdapter(char *name) { argument
41 if (name == NULL) {
42 log(LOG_DEBUG, ROUTINE, "NULL adapter name.");
48 if (strcmp(hba_ptr->handle_name, name) == 0) {
54 log(LOG_DEBUG, ROUTINE, "Invalid adapter name \"%s\"", name);
/illumos-gate/usr/src/stand/lib/sa/
H A Dstdlib.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
38 getenv(const char *name) argument
/illumos-gate/usr/src/cmd/lp/filter/postscript/postprint/
H A Dpostprint.h18 * information: Portions Copyright [yyyy] [name of copyright owner]
42 * end with an entry that has NULL defined as its name field. The only fonts that
49 char *name; /* user's font name */ member in struct:__anon804
50 char *val; /* corresponding PostScript name */
/illumos-gate/usr/src/lib/libwrap/
H A Dhosts_ctl.c10 * access control checker. The host name and user name arguments should be
30 int hosts_ctl(daemon, name, addr, user)
32 char *name;
40 RQ_CLIENT_NAME, name,
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dtgetent.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
54 * 0 if the terminal name is not present in the termcap file; 1 if
61 tgetent(char *buffer, const char *name) argument
65 if (strcmp(cur_term->_term, name) == 0)
67 (void) __m_setupterm((char *)name, cur_term->_ifd, cur_term->_ofd,
/illumos-gate/usr/src/lib/libbc/libc/compat/common/
H A Dutime.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
49 utime(char *name, time_t otv[2]) argument
54 return (utimes(name, (struct timeval *)0));
61 return (utimes(name, tv));
/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A Dexecle.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
35 * execle(name, arg0, arg1, ..., argn, (char *)0, envp)
38 execle(char *name, ...) argument
44 va_start(args, name);
53 return (execve(name, first, environmentp));
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/ents/frudr/
H A Dfru_SC_data.info18 * information: Portions Copyright [yyyy] [name of copyright owner]
33 * name:<namepath> -- gives the anchor node
39 * NODE <name> <class>
43 * PROP <name> <type> <access_mode> [<size> <value>] -- per property
45 * REFPROP <name> <dstnode>
47 * REFNODE <name> <class> with <destnode> -- Associates a new node
50 * <name> is the nodename
52 * <destnode> is name:<namepath> or _class:<classpath>
54 * If "name:" or "_class:" is not specified in the <path>,
55 * the default is "name
[all...]
/illumos-gate/usr/src/cmd/fm/schemes/fmd/
H A Dscheme.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
35 char *name; local
37 if (nvlist_lookup_string(nvl, FM_FMRI_FMD_NAME, &name) != 0)
41 "%s:///module/%s", FM_FMRI_SCHEME_FMD, name));
/illumos-gate/usr/src/lib/sun_fc/common/
H A DSun_fcOpenAdapter.cc17 * information: Portions Copyright [yyyy] [name of copyright owner]
43 * @param name The name of the adapter to open
45 HBA_HANDLE Sun_fcOpenAdapter(char *name) { argument
47 if (name == NULL) {
53 return (HBAList::instance()->openHBA(name)->getHandle());
H A DSun_fcOpenTgtAdapter.cc17 * information: Portions Copyright [yyyy] [name of copyright owner]
43 * @param name The name of the adapter to open
45 HBA_HANDLE Sun_fcOpenTgtAdapter(char *name) { argument
47 if (name == NULL) {
53 return (HBAList::instance()->openTgtHBA(name)->getHandle());

Completed in 252 milliseconds

<<11121314151617181920>>