Searched defs:name (Results 351 - 375 of 3188) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/cmd/idmap/idmapd/
H A Dwksids.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
45 * available in "cn" and "name" attributes. Some of these principals have a
47 * these duplicate entries have the stringified SID in the "name" and "cn"
48 * attributes instead of the actual name.
70 * 4. If this table contains two entries for a particular Windows name,
218 * Find a wksid entry for the specified Windows name and domain, of the
225 find_wksid_by_name(const char *name, const char *domain, idmap_id_type type) argument
252 if (strcasecmp(wksids[i].winname, name) != 0)
268 * We have a Windows name, so ignore entries that are only
/illumos-gate/usr/src/cmd/isns/isnsd/
H A Dconfig.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
69 char *name; local
215 free(control_nodes->name);
235 name = (char *)malloc(strlen(scf_name) + 1);
236 if (name == NULL) {
242 (void) strcpy(name, scf_name);
243 ctrl_node_p->name = (uchar_t *)name;
287 * is_control_node checks the given name to see if it is a control node.
291 uchar_t *name
[all...]
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/
H A Dshdr.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
62 Word ndx, Shdr *oshdr, Shdr *nshdr, const char *name)
74 dbg_fmt_isec_name2(name, ndx, buf, &alloc_mem), obj);
61 Dbg_shdr_modified(Lm_list *lml, const char *obj, uchar_t osabi, Half mach, Word ndx, Shdr *oshdr, Shdr *nshdr, const char *name) argument
H A Dunused.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
76 Dbg_unused_file(Lm_list *lml, const char *name, int needstr, uint_t cycle) argument
82 dbg_print(lml, MSG_INTL(MSG_USD_NEEDSTR), name);
84 dbg_print(lml, MSG_INTL(MSG_USD_FILECYCLIC), name, cycle);
86 dbg_print(lml, MSG_INTL(MSG_USD_FILE), name);
/illumos-gate/usr/src/cmd/sgs/libldmake/common/
H A Dlock.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
90 file_lock(char *name, char *lockname, int timeout) argument
103 r = symlink(name, lockname);
108 file_lock_error(msg, name, errno,
109 (const char *)"symlink(%s, %s)", name, lockname,
139 file_lock_error(msg, name, errno,
145 file_lock_error(msg, name, errno,
/illumos-gate/usr/src/cmd/sgs/librtld/common/
H A Dsyms.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
64 char *name = strs + syms->st_name; local
71 if ((name[0] != '_') || (name[1] != 'e'))
73 if (strcmp(name, MSG_ORIG(MSG_SYM_END)) &&
74 strcmp(name, MSG_ORIG(MSG_SYM_EDATA)))
/illumos-gate/usr/src/cmd/svc/startd/
H A Ddict.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
32 * We maintain a dictionary, sorted by name to facilitate rapid id lookup by
33 * name. It is used by both the restarter and graph code.
71 dict_lookup_byname(const char *name) argument
77 tmp.de_name = name;
96 * Returns the ID for name.
99 dict_insert(const char *name) argument
104 assert(name != NULL);
106 tmp.de_name = name;
119 entry->de_name = startd_alloc(strlen(name)
[all...]
/illumos-gate/usr/src/cmd/ksh/builtins/
H A Dalias.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
40 const char *name; member in struct:__anon704
127 find_bfastpathrec(const char *name) argument
131 for (i = 0; fastpath_builtins[i].name != NULL; i++) {
132 cmpres = strcmp(fastpath_builtins[i].name, name);
154 /* Get name of builtin */
162 * if an executable with the same name sits in a PATH element
238 /* Get program name */
240 error(ERROR_exit(1), "could not determinate exec name
[all...]
/illumos-gate/usr/src/cmd/ttymon/
H A Dtmlock.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
58 * lastname - If the path name starts with "/dev/",
60 * - Otherwise, return the last token of the path name
63 lastname(char *name) argument
67 sp = name;
/illumos-gate/usr/src/uts/common/inet/
H A Dinet_common.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
47 inet_minor_create(char *name, dev_t min_dev, dev_t max_dev, int kmflags) argument
53 arena->ineta_arena = vmem_create(name,
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dipdrop.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
216 ip_drop_register(ipdropper_t *ipd, char *name) argument
221 name, ipd->ipd_name);
225 /* Assume that name is reasonable in length. This isn't user-land. */
226 ipd->ipd_name = kmem_alloc(strlen(name) + 1, KM_SLEEP);
227 (void) strcpy(ipd->ipd_name, name);
287 str = counter->name;
/illumos-gate/usr/src/uts/common/disp/
H A Ddisp_lock.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
58 disp_lock_init(disp_lock_t *lp, char *name) argument
/illumos-gate/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_subr.c16 * 4. Neither the name of the author nor the names of any co-contributors
64 * path, and (if provided) the separator and last component name.
70 const char *name, int nmlen, u_int8_t sep)
88 if (name) {
98 * full path name ending with ":" so as to
100 * (It is not a valid CIFS path name.)
102 * path name from an XATTR directory, we
105 * parent node's path name.
119 /* Put the name */
121 name, nmle
69 smbfs_fullpath(struct mbchain *mbp, struct smb_vc *vcp, struct smbnode *dnp, const char *name, int nmlen, u_int8_t sep) argument
[all...]
/illumos-gate/usr/src/ucbcmd/from/
H A Dfrom.c32 char *name; local
47 for (name = sender; *name; name++)
48 if (isupper(*name))
49 *name = tolower(*name);
67 name = getlogin();
68 if (name == NULL || strlen(name)
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/nsctl/
H A Dnsc_rmspin.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
136 * nsc_rm_lock_alloc(char *name, int flag, void *arg)
150 nsc_rm_lock_alloc(char *name, int flag, void *arg) argument
163 if (strcmp(lp->name, name) == 0)
172 cmn_err(CE_WARN, "!nsctl: rmlock double allocation (%s)", name);
176 lk->name = name;
212 rmlockp->name);
/illumos-gate/usr/src/uts/common/cpr/
H A Dcpr_driver.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
235 * Returns a string which contains device name and address.
240 char *name; local
244 name = ddi_node_name(devi);
246 size = (name == NULL) ? strlen("<null name>") : strlen(name);
255 if (name == NULL)
256 (void) strcpy(buf, "<null name>");
258 (void) strcpy(buf, name);
[all...]
H A Dcpr_uthread.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
286 caddr_t name; local
291 if ((name = callb_execute_class(CB_CL_CPR_DAEMON,
295 "Please try again later.", name);
314 caddr_t name; local
333 if (! callb_is_stopped(tp, &name)) {
336 "\"%s\" kernel thread not stopped.", name);
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_provider.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
242 IN const char *name,
260 len = dapl_os_strlen(name);
272 (void) dapl_os_memcpy(cur_node->name, name, len);
273 cur_node->name[len] = '\0';
275 cur_node->data.device_name = cur_node->name;
302 IN const char *name,
313 if (dapl_provider_list_key_cmp(cur_node->name, name)) {
241 dapl_provider_list_insert( IN const char *name, IN DAT_PROVIDER **p_data) argument
301 dapl_provider_list_search( IN const char *name, OUT DAT_PROVIDER **p_data) argument
329 dapl_provider_list_remove( IN const char *name) argument
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Did_space.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
66 id_space_create(const char *name, id_t low, id_t high) argument
71 return (vmem_create(name, ID_TO_ADDR(low), high - low, 1,
H A Drwstlock.c18 * information: Portions Copyright [yyyy] [name of copyright owner]
180 rwst_init(rwstlock_t *l, char *name, krw_type_t krw_t, void *arg) argument
/illumos-gate/usr/src/uts/common/sys/
H A Dvfs_opreg.h17 * information: Portions Copyright [yyyy] [name of copyright owner]
57 * name/value pairs of operations. These arrays get passed to:
63 char *name; /* name of operation (NULL at end) */ member in struct:fs_operation_def
80 char *name; /* name of operation (NULL at end) */ member in struct:fs_operation_trans_def
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Discsi_targetparam.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
78 iscsi_targetparam_create(uchar_t *name) { argument
81 ASSERT(name != NULL);
85 (void) strlcpy((char *)target->target_name, (char *)name,
107 * Returns a target param entry's oid given the target name. If the target
112 iscsi_targetparam_get_oid(uchar_t *name) { argument
116 ASSERT(name != NULL);
117 name_length = strlen((char *)name);
124 (char *)name, name_length) == 0)) {
132 curr_entry = iscsi_targetparam_create(name);
[all...]
H A Discsi_thread.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
34 iscsi_thread_create(dev_info_t *dip, char *name, argument
43 thread->tq = ddi_taskq_create(dip, name, 1,
/illumos-gate/usr/src/uts/common/io/scsi/impl/
H A Dsmp_transport.c17 * information: Portions Copyright [yyyy] [name of copyright owner]
31 char *name, char *data, size_t len)
47 smp_sd->smp_sd_dev, name, data_string);
30 smp_device_prop_update_inqstring(struct smp_device *smp_sd, char *name, char *data, size_t len) argument
/illumos-gate/usr/src/lib/krb5/kadm5/clnt/
H A Dclnt_policy.c67 kadm5_delete_policy(void *server_handle, char *name) argument
75 if(name == NULL)
78 arg.name = name;
113 kadm5_get_policy(void *server_handle, char *name, kadm5_policy_ent_t ent) argument
121 arg.name = name;
124 if(name == NULL)

Completed in 132 milliseconds

<<11121314151617181920>>