HomeSort by: relevance | last modified time | path
    Searched refs:osname (Results 1 - 19 of 19) sorted by relevancy

  /src/sys/arch/atari/stand/bootxxx/
bootxxx.c 72 if ((fd = open(od->osname, 0)) < 0) {
73 printf("Cannot open kernel '%s'\n", od->osname);
  /src/sys/arch/atari/stand/bootxx/
bootxx.c 73 od->osname = "/netbsd";
74 od->ostype = &od->osname[1];
108 " options [none]:\n\033e", od->ostype, od->osname);
143 od->osname = --p;
  /src/external/gpl2/gmake/dist/tests/
run_make_tests.pl 241 if ($osname =~ /Windows/i || $osname =~ /MINGW32/i || $osname =~ /CYGWIN_NT/i) {
244 # Bleah, the osname is so variable on DOS. This kind of bites.
249 elsif ($osname =~ /^([^ ]*|[^ ]* [^ ]*)D(OS|os|ev) /) {
253 elsif ($osname =~ m%OS/2%) {
test_driver.pl 116 &get_osname; # sets $osname, $vos, $pathsep, and $short_filenames
122 print "OS name = `$osname'\n" if $debug;
230 $osname = defined($^O) ? $^O : '';
253 $osname = "vos";
263 eval "chop (\$osname = `sh -c 'uname -nmsr 2>&1'`)";
264 if ($osname =~ /not found/i)
266 $osname = "(something unixy with no uname)";
270 eval "chop (\$osname = `sh -c 'uname -a 2>&1'`)";
273 $osname = "(something unixy)";
389 $info = "Running tests for $testee on $osname\n"; # $testee is suite-define
    [all...]
  /src/crypto/external/apache2/openssl/dist/util/
checkplatformsyms.pl 24 if ($Config{osname} eq "MSWin32") {
  /src/sys/arch/atari/stand/tostools/libtos/
tosdefs.h 82 const char * osname; member in struct:osdsc
  /src/libexec/identd/
identd.c 98 const char *filter, *osname, *portno, *proxy; local
110 osname = OPSYS_NAME;
191 osname = optarg;
303 fmt, osname, user,
314 (void)idhandle(STDIN_FILENO, charset, fmt, osname, user,
325 idhandle(int fd, const char *charset, const char *fmt, const char *osname,
412 idparse(fd, lport, fport, charset, osname, idbuf);
453 idparse(fd, lport, fport, charset, osname, idbuf);
496 idparse(fd, lport, fport, charset, osname, idbuf);
512 idparse(fd, lport, fport, charset, osname, idbuf)
    [all...]
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
zfs_vfsops.c 1282 zfsvfs_create(const char *osname, zfsvfs_t **zfvp)
1291 * The 'osname' is used as the filesystem's special node, which means
1296 if (strlen(osname) >= MNAMELEN)
1305 error = dmu_objset_own(osname, DMU_OST_ZFS, B_TRUE, zfsvfs, &os);
1477 zfs_domount(vfs_t *vfsp, char *osname)
1485 ASSERT(osname);
1487 error = zfsvfs_create(osname, &zfsvfs);
1504 if (error = dsl_prop_get_integer(osname, "recordsize", &recordsize,
1564 if (error = dsl_prop_get_integer(osname, "xattr", &pval, NULL))
1578 vfs_mountedfrom(vfsp, osname);
1933 char *osname; local
    [all...]
zfs_ctldir.c 1310 char *path, *osname; local
1315 osname = PNBUF_GET();
1318 snprintf(osname, MAXPATHLEN, "%s@%s", path, snapname);
1334 error = zfs_domount(vfsp, osname);
1341 strlcpy(vfsp->mnt_stat.f_mntfromname, osname,
1362 PNBUF_PUT(osname);
zvol.c 3201 char *osname, *p; local
3231 osname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
3232 if (snprintf(osname, MAXPATHLEN, "%s/", name) >= MAXPATHLEN) {
3234 kmem_free(osname, MAXPATHLEN);
3237 p = osname + strlen(osname);
3238 len = MAXPATHLEN - (p - osname);
3244 if (!dataset_name_hidden(osname))
3245 (void) dmu_objset_prefetch(osname, NULL);
3250 while (dmu_dir_list_next(os, MAXPATHLEN - (p - osname), p, NULL
    [all...]
zil.c 1919 zil_suspend(const char *osname, void **cookiep)
1926 error = dmu_objset_hold(osname, suspend_tag, &os);
2192 zil_vdev_offline(const char *osname, void *arg)
2196 error = zil_suspend(osname, NULL);
  /src/external/bsd/ntp/dist/sntp/scripts/
genHardFlags 44 set `scripts/cvo.sh @osname@ @osver@` || exit 1
cvo.sh 151 # keys['osname'] = "cvo.CVO['CVO_OSNAME']"
152 TS=`echo $TS | sed -e s/@osname@/$CVO_OSNAME/g`
genLocInfo 44 set `scripts/cvo.sh @osname@ @osver@` || exit 1
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/sys/
zil.h 410 extern int zil_vdev_offline(const char *osname, void *txarg);
418 extern int zil_suspend(const char *osname, void **cookiep);
  /src/external/cddl/osnet/dist/cmd/ztest/
ztest.c 1027 ztest_dsl_prop_set_uint64(char *osname, zfs_prop_t prop, uint64_t value,
1036 error = dsl_prop_set_int(osname, propname,
1045 VERIFY0(dsl_prop_get_integer(osname, propname, &curval, setpoint));
1050 osname, propname, valname, setpoint);
3228 ztest_snapshot_create(char *osname, uint64_t id)
3235 error = dmu_objset_snapshot_one(osname, snapname);
3241 fatal(0, "ztest_snapshot_create(%s@%s) = %d", osname,
3248 ztest_snapshot_destroy(char *osname, uint64_t id)
3253 (void) snprintf(snapname, sizeof (snapname), "%s@%llu", osname,
3379 ztest_dsl_dataset_cleanup(char *osname, uint64_t id
3428 char *osname = zd->zd_name; local
4667 char osname[ZFS_MAX_DATASET_NAME_LEN]; local
    [all...]
  /src/external/cddl/osnet/dist/cmd/zdb/
zdb.c 1960 char osname[ZFS_MAX_DATASET_NAME_LEN]; local
1994 dmu_objset_name(os, osname);
1998 osname, type, (u_longlong_t)dmu_objset_id(os),
  /src/external/gpl3/binutils/dist/binutils/
readelf.c 22757 const char *osname;
22774 osname = "Linux";
22777 osname = "Hurd";
22780 osname = "Solaris";
22783 osname = "FreeBSD";
22786 osname = "NetBSD";
22789 osname = "Syllable";
22792 osname = "NaCl";
22795 osname = "Unknown";
22799 printf (_(" OS: %s, ABI: %d.%d.%d\n"), osname,
22754 const char *osname; local
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
readelf.c 21617 const char *osname;
21634 osname = "Linux";
21637 osname = "Hurd";
21640 osname = "Solaris";
21643 osname = "FreeBSD";
21646 osname = "NetBSD";
21649 osname = "Syllable";
21652 osname = "NaCl";
21655 osname = "Unknown";
21659 printf (_(" OS: %s, ABI: %d.%d.%d\n"), osname,
21614 const char *osname; local
    [all...]

Completed in 68 milliseconds