Searched defs:name (Results 176 - 200 of 3188) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libbsm/common/
H A Daudit_at.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
97 audit_at_delete(char *name, char *path, int sorf) argument
106 if (strlen(path) + strlen(name) + 2 > PATH_MAX)
107 r = -2; /* bad at-job name */
110 name);
111 name = full_path;
117 anc_name = audit_cron_make_anc_name(name);
133 dgettext(bsm_dom, "bad format of at-job name"));
136 aug_save_path(name);
/illumos-gate/usr/src/lib/libc/amd64/sys/
H A Ddoor.s17 * information: Portions Copyright [yyyy] [name of copyright owner]
57 #define DOOR_SYSCALL(name, code) \
58 ENTRY(name); \ function
63 SET_SIZE(name)
/illumos-gate/usr/src/lib/libc/i386/sys/
H A Ddoor.s17 * information: Portions Copyright [yyyy] [name of copyright owner]
59 #define DOOR_SYSCALL(name, code, copy_args) \
60 ENTRY(name); \ function
77 SET_SIZE(name)
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dconfstr.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
94 confstr(int name, char *buf, size_t length) argument
103 if (name == _CS_PATH) {
123 if (name == entry->config_value) {
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dregerror.c18 * 4. Neither the name of the University nor the names of its contributors
51 char *name; member in struct:rerr
H A Dsetrunelocale.c18 * 4. Neither the name of the University nor the names of its contributors
97 __lc_ctype_load(const char *name) argument
105 if ((ldata = __locdata_alloc(name, sizeof (*lct))) == NULL)
113 _PathLocale, name);
H A Dwctrans.c75 const char *name; member in struct:__anon3025
86 while (ccls[i].name != NULL && strcmp(ccls[i].name, charclass) != 0)
/illumos-gate/usr/src/lib/libc/port/stdio/
H A D_endopen.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
52 * open UNIX file name, associate with iop
56 _endopen(const char *name, const char *type, FILE *iop, int largefile) argument
114 fd = open64(name, oflag, 0666);
116 fd = open(name, oflag, 0666);
H A Dfopen.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
61 fopen(const char *name, const char *type) /* open name, return new stream */ argument
71 rc = _endopen(name, type, iop, LARGE_OPEN);
197 freopen(const char *name, const char *type, FILE *iop) argument
202 if (name == NULL && __xpg6 & _C99SUSv3_freopen_NULL_filename) {
204 * XPG6: If name is a null pointer, freopen will attempt to
225 rc = _endopen(name, type, iop, LARGE_OPEN);
/illumos-gate/usr/src/lib/libc/port/sys/
H A Dchown.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
36 fchownat(int fd, const char *name, uid_t uid, gid_t gid, int flags) argument
38 return (syscall(SYS_fchownat, fd, name, uid, gid, flags));
43 chown(const char *name, uid_t uid, gid_t gid) argument
46 return (syscall(SYS_chown, name, uid, gid));
48 return (fchownat(AT_FDCWD, name, uid, gid, 0));
54 lchown(const char *name, uid_t uid, gid_t gid) argument
57 return (syscall(SYS_lchown, name, uid, gid));
59 return (fchownat(AT_FDCWD, name, uid, gid, AT_SYMLINK_NOFOLLOW));
/illumos-gate/usr/src/lib/libc/sparc/sys/
H A Ddoor.s17 * information: Portions Copyright [yyyy] [name of copyright owner]
57 #define DOOR_SYSCALL(name, code) \
58 ENTRY(name); \ function
63 SET_SIZE(name)
/illumos-gate/usr/src/lib/libcmd/common/
H A Dmkdir.c40 "each dir operand that does not name an existing directory, effects "
74 char* name; local
143 for (name = arg, n = *arg; n;)
152 if (mkdir(name, n ? dmode : mode) < 0 && errno != EEXIST && access(name, F_OK) < 0)
155 error(ERROR_system(0), "%s:", name);
159 error(0, "%s: directory created", name);
162 if (stat(name, &st))
164 error(ERROR_system(0), "%s: cannot stat", name);
167 if ((st.st_mode & (S_ISVTX|S_ISUID|S_ISGID)) != (mode & (S_ISVTX|S_ISUID|S_ISGID)) && chmod(name, mod
[all...]
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/
H A Dfriendly.c46 ldap_friendly_name( char *filename, char *name, FriendlyMap *map ) argument
54 return( name );
56 if ( NULL == name)
58 return (name);
63 return( name );
75 return( name );
119 if ( strcasecmp( name, (*map)[i].f_unfriendly ) == 0 )
122 return( name );
/illumos-gate/usr/src/cmd/ypcmd/
H A Dgetlist.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
45 * Add a name to the list
64 it->name = copy;
81 char name[256]; local
103 "file %s bad malloc %s\n", filename, name);
117 if (locallist->name)
118 free(locallist->name);
148 printf("%s\n", list->name);
H A Dudpublickey.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
53 char name[MAXNETNAMELEN + 1]; local
79 if (! scanf("%s\n", name)) {
103 if (strcmp(name, key) != 0) {
106 if (strcmp(name, "nobody") == 0) {
126 if (err < 0 && match(line, name)) {
181 match(line, name)
183 char *name;
187 len = strlen(name);
188 return (strncmp(line, name, le
[all...]
H A Dyp_getalias.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
121 char name[256]; local
136 for (entry = list, strcpy(name, entry->name); entry;
137 entry = entry->nextname, strcpy(name, entry->name)) {
139 longname = strtok(name, " \t");
171 char name[256]; local
186 for (entry = list, strcpy(name, entry->name);
[all...]
/illumos-gate/usr/src/common/crypto/ecc/
H A Decp_384.c295 ec_group_set_gfp384(ECGroup *group, ECCurveName name) argument
297 if (name == ECCurve_NIST_P384) {
/illumos-gate/usr/src/head/
H A Dpkgdev.h18 * information: Portions Copyright [yyyy] [name of copyright owner]
41 char *name; member in struct:pkgdev
H A Dpkginfo.h18 * information: Portions Copyright [yyyy] [name of copyright owner]
43 char *name; member in struct:pkginfo
/illumos-gate/usr/src/cmd/oawk/
H A Dmakeprctab.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
36 char *name; member in struct:xx
106 if (p == proc || strcmp(p->name, (p-1)->name))
107 printf("extern CELL *%s();\n", p->name);
109 table[p->token-FIRSTTOKEN] = p->name;
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/kstat/
H A DKstat.java18 * information: Portions Copyright [yyyy] [name of copyright owner]
72 public native Object getValue(String name) argument
H A DKstatCtl.java18 * information: Portions Copyright [yyyy] [name of copyright owner]
80 public native Kstat lookup(String module, int instance, String name); argument
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DProperty.java18 * information: Portions Copyright [yyyy] [name of copyright owner]
41 * Get a property with the supplied name.
43 * @param name The name of the property to be retrieved.
46 public boolean getBoolProperty(String name) throws PoolsException; argument
49 * Get a property with the supplied name.
51 * @param name The name of the property to be retrieved.
54 public double getDoubleProperty(String name) throws PoolsException; argument
57 * Get a property with the supplied name
62 getLongProperty(String name) argument
70 getStringProperty(String name) argument
79 putProperty(String name, Value value) argument
87 rmProperty(String name) argument
[all...]
/illumos-gate/usr/src/cmd/print/bsd-sysv-commands/
H A Daccept.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
43 char *name; local
45 if ((name = strrchr(program, '/')) == NULL)
46 name = program;
48 name++;
52 name);
H A Denable.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
43 char *name; local
45 if ((name = strrchr(program, '/')) == NULL)
46 name = program;
48 name++;
52 name);

Completed in 560 milliseconds

1234567891011>>