HomeSort by: relevance | last modified time | path
    Searched defs:component (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/fs/cd9660/
cd9660_rrip.h 79 u_char component [ISODCL ( 5, 5)]; member in struct:__anon6709
  /src/usr.sbin/autofs/
common.c 125 char *component, *copy, *tofree, *partial, *tmp; local
137 component = strsep(&copy, "/");
138 if (component == NULL)
140 tmp = concat(partial, '/', component);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_drv.h 221 struct drm_audio_component *component; member in struct:nouveau_drm::__anon5249
  /src/usr.sbin/makefs/cd9660/
iso9660_rrip.h 118 u_char component [ISODCL ( 4, 256)]; member in struct:__anon8479
  /src/sbin/raidctl/
raidctl.c 118 char component[PATH_MAX]; local
186 get_comp(component, optarg, sizeof(component));
210 get_comp(component, optarg, sizeof(component));
216 get_comp(component, optarg, sizeof(component));
222 get_comp(component, optarg, sizeof(component));
243 get_comp(component, optarg, sizeof(component))
    [all...]
  /src/sys/arch/sparc/sparc/
promlib.c 632 * XXX - currently we discard any qualifiers attached to device component names
638 char component[64]; local
650 * Identify next component in path
659 /* Copy component */
660 for (cp = component; startp != endp;) {
661 /* Check component bounds */
662 if (cp > component + sizeof component - 1)
667 /* Zero terminate this component */
674 node = prom_findnode(prom_firstchild(node), component);
    [all...]
  /src/sys/dev/raidframe/
rf_netbsdkintf.c 542 * In order to find the boot wedge, we must iterate on each component,
581 "component /dev/%s", __func__, devname);
835 is relative to the partition used for the underlying component.
864 Look for a component to dump to. The preference for the
865 component to dump to is as follows:
866 1) the first component
867 2) a used_spare of the first component
868 3) the second component
869 4) a used_spare of the second component
882 At this point we have possibly selected a live component
1484 RF_SingleComponent_t component; local
1581 RF_SingleComponent_t component; local
    [all...]
  /src/lib/libc/time/
localtime.c 1056 /* Fail if a relative name contains a non-terminal ".." component,
1059 char const *component; local
1060 for (component = relname; component[0]; component++)
1061 if (component[0] == '.' && component[1] == '.'
1062 && component[2] == '/'
1063 && (component == relname || component[-1] == '/')
    [all...]
zic.c 1420 componentcheck(char const *name, char const *component,
1424 ptrdiff_t component_len = component_end - component;
1429 error(_(component == name
1438 && component[0] == '.' && component_end[-1] == '.') {
1440 error(_("file name '%s' contains '%.*s' component"),
1441 name, len, component);
1445 if (0 < component_len && component[0] == '-')
1446 warning(_("file name '%s' component contains leading '-'"),
1449 warning(_("file name '%s' contains overlength component"
1451 name, component_len_max, component);
1472 register char const *component = name; local
    [all...]

Completed in 31 milliseconds