Home
last modified time | relevance | path

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

12345

/illumos-gate/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()
/illumos-gate/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.c62 register char *component, local
77 for (len = strlen(s) + 1; (component = va_arg(ap, char *)); )
78 len += strlen(component) + 1;
99 p = ret, component = s;
100 component;
101 component = va_arg(ap, char *)
103 for (q = component; *q; )
H A Dgetpaths.c81 getprinterfile(char *name, char *component) in getprinterfile() argument
88 path = makepath(Lp_A_Printers, name, component, NULL); in getprinterfile()
98 getsystemfile(char *name, char *component) in getsystemfile() argument
105 path = makepath(Lp_A_Systems, name, component, NULL); in getsystemfile()
149 getformfile(char *name, char *component) in getformfile() argument
156 path = makepath(Lp_A_Forms, name, component, NULL); in getformfile()
/illumos-gate/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 …]
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfake_lookup.c174 char component[MAXNAMELEN]; /* buffer for component (incl null) */ in lookuppnvp() local
224 if ((error = pn_getcomponent(pnp, component)) != 0) { in lookuppnvp()
237 if (component[0] == '.' && component[1] == '.' && component[2] == 0) { in lookuppnvp()
240 component[1] = '\0'; in lookuppnvp()
312 error = VOP_LOOKUP(vp, component, &tvp, pnp, lookup_flags, in lookuppnvp()
330 error = VOP_LOOKUP(vp, component, &tvp, pnp, lookup_flags, in lookuppnvp()
403 error = pn_insert(pnp, &linkpath, strlen(component)); in lookuppnvp()
435 if (rpnp && strcmp(component, ".") != 0) { in lookuppnvp()
438 if (strcmp(component, "..") == 0 && in lookuppnvp()
463 error = copystr(component, in lookuppnvp()
/illumos-gate/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()
/illumos-gate/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()
/illumos-gate/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);
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dnftw.c169 walk(char *component, in walk() argument
309 if (vp->tmppath[0] != '\0' && component[-1] != '/') in walk()
310 *component++ = '/'; in walk()
311 *component = 0; in walk()
329 this.comp = component; in walk()
366 vp->state.base = (int)(component - vp->tmppath); in walk()
381 base_component = component - vp->home; in walk()
401 component = vp->home + base_component; in walk()
409 p = component; in walk()
421 component = vp->home + base_component; in walk()
[all …]
/illumos-gate/usr/src/lib/smbclnt/libfksmbfs/common/
H A Dfake_lookup.c69 char component[MAXNAMELEN]; /* buffer for component */ in fake_lookup() local
100 (void) strncpy(component, p, len); in fake_lookup()
101 component[len] = '\0'; in fake_lookup()
105 error = VOP_LOOKUP(cvp, component, &nvp, &pn, flags, in fake_lookup()
/illumos-gate/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
/illumos-gate/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 …]
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Drt.sh77 component=
124 if [[ $component ]]
125 then x=${component##*/}
127 then if [[ $component == cmd/?*lib/* ]]
372 component=${line%:}
/illumos-gate/usr/src/uts/common/fs/
H A Dlookup.c223 char component[MAXNAMELEN]; /* buffer for component (incl null) */ in lookuppnvp() local
283 if (error = pn_getcomponent(pnp, component)) { in lookuppnvp()
296 if (component[0] == '.' && component[1] == '.' && component[2] == 0) { in lookuppnvp()
299 component[1] = '\0'; in lookuppnvp()
382 error = VOP_LOOKUP(vp, component, &cvp, pnp, lookup_flags, in lookuppnvp()
400 error = VOP_LOOKUP(vp, component, &cvp, pnp, lookup_flags, in lookuppnvp()
476 error = pn_insert(pnp, &linkpath, strlen(component)); in lookuppnvp()
510 if (rpnp && strcmp(component, ".") != 0) { in lookuppnvp()
513 if (strcmp(component, "..") == 0 && in lookuppnvp()
538 error = copystr(component, in lookuppnvp()
[all …]
H A Dpathname.c231 pn_getcomponent(struct pathname *pnp, char *component) in pn_getcomponent() argument
242 *component++ = c; in pn_getcomponent()
249 *component++ = c; in pn_getcomponent()
255 *component = '\0'; in pn_getcomponent()
/illumos-gate/usr/src/uts/sun4u/sunfire/io/
H A Djtag.c1821 jtag_phys_comp *component, in jtag_init_chip() argument
1836 chip = component->chip; in jtag_init_chip()
1858 status = jtag_single_IR_DR(jreg, component, in jtag_init_chip()
1892 jtag_phys_comp *component, in jtag_scanout_chip() argument
1907 chip = component->chip; in jtag_scanout_chip()
1914 status = jtag_rescan_IR_DR(jreg, component, chip->dump_code, scan_in, in jtag_scanout_chip()
2316 jtag_phys_comp *component, in jtag_single_IR_DR() argument
2325 TAP_SHIFT_CONSTANT(jreg, -1, component->ir_after, status); in jtag_single_IR_DR()
2326 TAP_SHIFT_SINGLE(jreg, instr, component->chip->ir_len, status); in jtag_single_IR_DR()
2327 TAP_SHIFT_CONSTANT(jreg, -1, component->ir_before, status); in jtag_single_IR_DR()
[all …]
/illumos-gate/usr/src/test/util-tests/tests/ctf/
H A Dtest-sou.c98 struct component { struct
108 struct component optional[]; argument
114 struct component optional[0];
/illumos-gate/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 illumos 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 your illumos distributio…
60 msgstr "An illumos Fault Manager component generated a diagnosis for which no message summary exist…
76 msgstr "An illumos Fault Manager component has experienced an error that required the module to be …
92 msgstr "An illumos Fault Manager component could not load due to an erroroneous configuration file.…
/illumos-gate/usr/src/lib/libfru/libnvfru/
H A Dnvfru.c203 const fru_regdef_t *component; in convert_element() local
215 data += component->payloadLen) { in convert_element()
216 component = fru_reg_lookup_def_by_name( in convert_element()
218 convert_element(data, component, "", nv_record, in convert_element()
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_pathname.c435 char *component, *real_name, *namep; in smb_pathname() local
478 component = kmem_alloc(MAXNAMELEN, KM_SLEEP); in smb_pathname()
498 if ((err = pn_getcomponent(&upn, component)) != 0) in smb_pathname()
501 if ((namep = smb_pathname_catia_v5tov4(sr, component, in smb_pathname()
520 !smb_maybe_mangled(component)) in smb_pathname()
523 if ((err = smb_unmangle(dnode, component, in smb_pathname()
571 strlen(component)); in smb_pathname()
672 kmem_free(component, MAXNAMELEN); in smb_pathname()
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dlpfsck.c320 char *component; in va_makepath() local
325 while ((component = va_arg((*pap), char *)) != NULL) { in va_makepath()
326 if (strlcat(buf, component, sizeof (buf)) >= sizeof (buf) || in va_makepath()

12345