Home
last modified time | relevance | path

Searched refs:component (Results 1 – 25 of 105) sorted by relevance

12345

/titanic_44/usr/src/stand/lib/fs/nfs/
H A Dlookup.c101 char component[NFS_MAXNAMLEN+1]; /* buffer for component */ in stlookuppn() local
117 component[0] = '\0'; in stlookuppn()
136 error = stpn_stripcomponent(pnp, component); in stlookuppn()
145 if (component[0] == '\0') in stlookuppn()
157 if (strcmp(component, "..") == 0) { in stlookuppn()
167 cino = get_dcache(mac_get_dev(), component, dino); in stlookuppn()
171 dprintf("lookup: component %s pathleft %s\n", component, pnp->pn_path); in stlookuppn()
184 lkp = nfslookup(cfile, component, &error); in stlookuppn()
187 lkp = nfs3lookup(cfile, component, &error); in stlookuppn()
190 lkp = nfs4lookup(cfile, component, &error); in stlookuppn()
[all …]
H A Dpathname.c130 stpn_getcomponent(struct st_pathname *pnp, char *component, int flags) in stpn_getcomponent() argument
142 *component++ = *cp++; in stpn_getcomponent()
149 *component = 0; in stpn_getcomponent()
/titanic_44/usr/src/cmd/lp/lib/lp/
H A Dmakestr.c60 register char *component, local
75 for (len = strlen(s); (component = va_arg(ap, char *)); )
76 len += strlen(component);
97 p = ret, component = s;
98 component;
99 component = va_arg(ap, char *)
101 for (q = component; *q; )
H A Dmakepath.c63 register char *component, local
78 for (len = strlen(s) + 1; (component = va_arg(ap, char *)); )
79 len += strlen(component) + 1;
100 p = ret, component = s;
101 component;
102 component = va_arg(ap, char *)
104 for (q = component; *q; )
H A Dgetpaths.c83 getprinterfile(char *name, char *component) in getprinterfile() argument
90 path = makepath(Lp_A_Printers, name, component, NULL); in getprinterfile()
100 getsystemfile(char *name, char *component) in getsystemfile() argument
107 path = makepath(Lp_A_Systems, name, component, NULL); in getsystemfile()
151 getformfile(char *name, char *component) in getformfile() argument
158 path = makepath(Lp_A_Forms, name, component, NULL); in getformfile()
/titanic_44/usr/src/lib/libproject/common/
H A Dsetproject.c74 build_rctlblk(rctlblk_t *blk, int comp_num, char *component) in build_rctlblk() argument
84 xstrtolower(component); in build_rctlblk()
86 if (strcmp("basic", component) == 0) { in build_rctlblk()
91 if (strcmp("priv", component) == 0 || in build_rctlblk()
92 strcmp("privileged", component) == 0) { in build_rctlblk()
109 if (strchr(component, '-') != NULL) in build_rctlblk()
113 val = strtoull(component, &t, 10); in build_rctlblk()
114 if (errno != 0 || t == component || *t != '\0') in build_rctlblk()
125 if (strcmp("none", component) == 0) { in build_rctlblk()
130 if (strcmp("deny", component) == 0) { in build_rctlblk()
[all …]
/titanic_44/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfake_lookup.c88 char component[MAXNAMELEN]; /* buffer for component (incl null) */ in lookuppnvp() local
138 if (error = pn_getcomponent(pnp, component)) { in lookuppnvp()
151 if (component[0] == '.' && component[1] == '.' && component[2] == 0) { in lookuppnvp()
154 component[1] = '\0'; in lookuppnvp()
226 error = VOP_LOOKUP(vp, component, &tvp, pnp, lookup_flags, in lookuppnvp()
244 error = VOP_LOOKUP(vp, component, &tvp, pnp, lookup_flags, in lookuppnvp()
317 error = pn_insert(pnp, &linkpath, strlen(component)); in lookuppnvp()
349 if (rpnp && strcmp(component, ".") != 0) { in lookuppnvp()
352 if (strcmp(component, "..") == 0 && in lookuppnvp()
377 error = copystr(component, in lookuppnvp()
/titanic_44/usr/src/uts/common/io/scsi/impl/
H A Dsmp_transport.c64 char *component; in smp_probe() local
123 component = kmem_zalloc(clen, KM_SLEEP); in smp_probe()
125 component, ilen); in smp_probe()
126 (void) snprintf(&component[ilen], clen - ilen, in smp_probe()
133 smp_sd->smp_sd_dev, "component", component); in smp_probe()
134 kmem_free(component, clen); in smp_probe()
/titanic_44/usr/src/uts/common/avs/ns/nsctl/
H A Dnsc_trap.c39 int alertlevel, char *component, dev_info_t *info_dip) in nsc_do_sysevent() argument
66 SVE_CACHE_CLASS, component, attr_list, NULL, DDI_SLEEP); in nsc_do_sysevent()
69 SVE_STE_CLASS, component, attr_list, NULL, DDI_SLEEP); in nsc_do_sysevent()
72 SVE_II_CLASS, component, attr_list, NULL, DDI_SLEEP); in nsc_do_sysevent()
/titanic_44/usr/src/cmd/backup/dump/
H A Dlftw.c141 char *subpath, *component; in lf_xftw() local
231 component = &subpath[n]; in lf_xftw()
233 sublen -= component - subpath; in lf_xftw()
246 (void) strncpy(component, dp->d_name, sublen); in lf_xftw()
247 component[sublen - 1] = '\0'; in lf_xftw()
/titanic_44/usr/src/lib/libsmbfs/smb/
H A Dcharsets.c79 unpercent(char *component) in unpercent() argument
84 if (component == NULL) in unpercent()
85 return (component); in unpercent()
87 for (s = component; (c = *s) != 0; s++) { in unpercent()
101 return (component); in unpercent()
H A Dcharsets.h49 extern char *unpercent(char *component);
/titanic_44/usr/src/lib/libc/port/gen/
H A Dnftw.c171 walk(char *component, in walk() argument
311 if (vp->tmppath[0] != '\0' && component[-1] != '/') in walk()
312 *component++ = '/'; in walk()
313 *component = 0; in walk()
331 this.comp = component; in walk()
368 vp->state.base = (int)(component - vp->tmppath); in walk()
383 base_component = component - vp->home; in walk()
403 component = vp->home + base_component; in walk()
411 p = component; in walk()
423 component = vp->home + base_component; in walk()
[all …]
/titanic_44/usr/src/uts/common/sys/
H A Dpm.h137 int component; /* Selects the component of the device */ member
178 int component; /* which component changed state */ member
212 int component; /* selects the component of the device */ member
220 int component; /* which component changed state */ member
H A Dsunpm.h127 int pm_get_current_power(dev_info_t *dip, int component, int *levelp);
/titanic_44/usr/src/uts/common/io/
H A Dpm.c1002 req.component = req32.component; in pm_ioctl()
1357 int comp = req.component; in pm_ioctl()
1441 cmdstr, req.physpath, req.component)) in pm_ioctl()
1442 normal = pm_get_normal_power(dip, req.component); in pm_ioctl()
1459 if (pm_get_current_power(dip, req.component, in pm_ioctl()
1467 cmdstr, req.physpath, req.component, *rval_p)) in pm_ioctl()
1478 int comp = req.component; in pm_ioctl()
2053 if (!e_pm_valid_comp(dip, req.component, &cp)) { in pm_ioctl()
2056 cmdstr, PM_DEVICE(dip), req.component, in pm_ioctl()
2078 if (!e_pm_valid_comp(dip, req.component, &cp)) { in pm_ioctl()
[all …]
/titanic_44/usr/src/lib/libbc/libc/gen/common/
H A Dftw.c115 char *subpath, *component; local
182 component = &subpath[n];
195 (void)strcpy(component, dp->d_name);
/titanic_44/usr/src/uts/common/fs/
H A Dlookup.c222 char component[MAXNAMELEN]; /* buffer for component (incl null) */ in lookuppnvp() local
278 if (error = pn_getcomponent(pnp, component)) { in lookuppnvp()
291 if (component[0] == '.' && component[1] == '.' && component[2] == 0) { in lookuppnvp()
294 component[1] = '\0'; in lookuppnvp()
377 error = VOP_LOOKUP(vp, component, &cvp, pnp, lookup_flags, in lookuppnvp()
395 error = VOP_LOOKUP(vp, component, &cvp, pnp, lookup_flags, in lookuppnvp()
471 error = pn_insert(pnp, &linkpath, strlen(component)); in lookuppnvp()
505 if (rpnp && strcmp(component, ".") != 0) { in lookuppnvp()
508 if (strcmp(component, "..") == 0 && in lookuppnvp()
533 error = copystr(component, in lookuppnvp()
[all …]
H A Dpathname.c228 pn_getcomponent(struct pathname *pnp, char *component) in pn_getcomponent() argument
239 *component++ = c; in pn_getcomponent()
246 *component++ = c; in pn_getcomponent()
252 *component = '\0'; in pn_getcomponent()
/titanic_44/usr/src/uts/sun4u/sunfire/io/
H A Djtag.c1823 jtag_phys_comp *component, in jtag_init_chip() argument
1838 chip = component->chip; in jtag_init_chip()
1860 status = jtag_single_IR_DR(jreg, component, in jtag_init_chip()
1894 jtag_phys_comp *component, in jtag_scanout_chip() argument
1909 chip = component->chip; in jtag_scanout_chip()
1916 status = jtag_rescan_IR_DR(jreg, component, chip->dump_code, scan_in, in jtag_scanout_chip()
2318 jtag_phys_comp *component, in jtag_single_IR_DR() argument
2327 TAP_SHIFT_CONSTANT(jreg, -1, component->ir_after, status); in jtag_single_IR_DR()
2328 TAP_SHIFT_SINGLE(jreg, instr, component->chip->ir_len, status); in jtag_single_IR_DR()
2329 TAP_SHIFT_CONSTANT(jreg, -1, component->ir_before, status); in jtag_single_IR_DR()
[all …]
/titanic_44/usr/src/cmd/fm/dicts/
H A DSTORAGE.po89 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
105 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
121 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
137 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
153 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
169 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
185 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
201 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
217 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
249 msgstr "Refer to the Maintenance page in the Sun ZFS Storage UI to identify the failed component. I…
[all …]
H A DFMD.po44 msgstr "The Solaris Fault Manager received an event from a component to which no automated diagnosi…
46 msgstr "Error reports from the component will be logged for examination by Sun."
60 msgstr "A Solaris Fault Manager component generated a diagnosis for which no message summary exists…
76 msgstr "A Solaris Fault Manager component has experienced an error that required the module to be d…
92 msgstr "A Solaris Fault Manager component could not load due to an erroroneous configuration file. …
/titanic_44/usr/src/uts/common/fs/smbsrv/
H A Dsmb_pathname.c345 char *component, *real_name, *namep; in smb_pathname() local
382 component = kmem_alloc(MAXNAMELEN, KM_SLEEP); in smb_pathname()
397 if ((err = pn_getcomponent(&upn, component)) != 0) in smb_pathname()
400 if ((namep = smb_pathname_catia_v5tov4(sr, component, in smb_pathname()
415 !smb_maybe_mangled(component)) in smb_pathname()
418 if ((err = smb_unmangle(dnode, component, in smb_pathname()
466 strlen(component)); in smb_pathname()
532 kmem_free(component, MAXNAMELEN); in smb_pathname()
/titanic_44/usr/src/lib/libfru/libnvfru/
H A Dnvfru.c201 const fru_regdef_t *component; in convert_element() local
213 data += component->payloadLen) { in convert_element()
214 component = fru_reg_lookup_def_by_name( in convert_element()
216 convert_element(data, component, "", nv_record, in convert_element()
/titanic_44/usr/src/cmd/lp/cmd/lpsched/
H A Dlpfsck.c322 char *component; in va_makepath() local
327 while ((component = va_arg((*pap), char *)) != NULL) { in va_makepath()
328 if (strlcat(buf, component, sizeof (buf)) >= sizeof (buf) || in va_makepath()

12345