Searched refs:ostype (Results 1 - 23 of 23) sorted by relevance

/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/
H A Dtst.str.d39 printf("sysname = %s", `ostype);
/freebsd-current/contrib/sendmail/cf/cf/
H A DMakefile181 ${CFDIR}/ostype/aix3.m4 \
182 ${CFDIR}/ostype/aix4.m4 \
183 ${CFDIR}/ostype/aix5.m4 \
184 ${CFDIR}/ostype/altos.m4 \
185 ${CFDIR}/ostype/amdahl-uts.m4 \
186 ${CFDIR}/ostype/a-ux.m4 \
187 ${CFDIR}/ostype/bsd4.3.m4 \
188 ${CFDIR}/ostype/bsd4.4.m4 \
189 ${CFDIR}/ostype/bsdi.m4 \
190 ${CFDIR}/ostype/bsdi
[all...]
/freebsd-current/contrib/tcsh/
H A Dtc.vers.c148 const Char *ostype = tgetenv(STROSTYPE); local
154 if (ostype == NULL)
155 ostype = STRunknown;
160 REV, VERS, PATCHLEVEL, ORIGIN, DATE, machtype, vendor, ostype,
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_misc.c40 .sysname = ostype,
/freebsd-current/sys/dev/syscons/snake/
H A Dsnake_saver.c144 messagelen = sprintf(message, "%s %s", ostype, osrelease);
149 ostype, osrelease,
/freebsd-current/usr.sbin/crashinfo/
H A Dcrashinfo.sh199 ostype=$(gdb_command $KERNEL 'printf "%s", ostype')
213 echo "$ostype $HOSTNAME $osrelease $version $machine"
/freebsd-current/sys/conf/
H A Dnewvers.sh318 char ostype[] = "${TYPE}";
/freebsd-current/sys/dev/syscons/daemon/
H A Ddaemon_saver.c361 messagelen = hostlen + 3 + strlen(ostype) + 1 +
371 sprintf(message, "%s - %s %s", prison0.pr_hostname, ostype, osrelease);
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Ddsl_crypt.h200 dmu_objset_type_t ostype, nvlist_t *nvl, boolean_t do_key);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp516 llvm::Triple::OSType &ostype) {
519 ostype = llvm::Triple::OSType::AIX;
522 ostype = llvm::Triple::OSType::FreeBSD;
525 ostype = llvm::Triple::OSType::Linux;
528 ostype = llvm::Triple::OSType::NetBSD;
531 ostype = llvm::Triple::OSType::OpenBSD;
534 ostype = llvm::Triple::OSType::Solaris;
537 ostype = llvm::Triple::OSType::UnknownOS;
539 return ostype != llvm::Triple::OSType::UnknownOS;
572 llvm::Triple::OSType ostype; local
515 GetOsFromOSABI(unsigned char osabi_byte, llvm::Triple::OSType &ostype) argument
1382 llvm::Triple::OSType ostype; local
[all...]
/freebsd-current/sys/kern/
H A Dkern_mib.c107 SYSCTL_STRING(_kern, KERN_OSTYPE, ostype, CTLFLAG_RD | CTLFLAG_CAPRD,
108 ostype, 0, "Operating system type");
H A Dkern_xxx.c242 strcpy(s, ostype);
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Ddsl_crypt.c1997 dmu_objset_type_t ostype, nvlist_t *nvl, dmu_tx_t *tx)
2007 if (ostype != DMU_OST_ZFS && ostype != DMU_OST_ZVOL)
2092 dsl_crypto_recv_raw_objset_sync(dsl_dataset_t *ds, dmu_objset_type_t ostype, argument
2125 dsl_dataset_get_blkptr(ds), ostype, nlevels, blksz,
2401 dmu_objset_type_t ostype, nvlist_t *nvl, boolean_t do_key)
2407 dcrka.dcrka_ostype = ostype;
1996 dsl_crypto_recv_raw_objset_check(dsl_dataset_t *ds, dsl_dataset_t *fromds, dmu_objset_type_t ostype, nvlist_t *nvl, dmu_tx_t *tx) argument
2400 dsl_crypto_recv_raw(const char *poolname, uint64_t dsobj, uint64_t fromobj, dmu_objset_type_t ostype, nvlist_t *nvl, boolean_t do_key) argument
H A Dsa.c846 dmu_objset_type_t ostype = dmu_objset_type(os); local
867 if (ostype == DMU_OST_ZFS && sa_attr_count == 0)
875 if (ostype == DMU_OST_ZFS) {
949 if (ostype == DMU_OST_ZFS) {
1001 dmu_objset_type_t ostype = dmu_objset_type(os); local
1095 if (ostype == DMU_OST_ZFS) {
H A Ddsl_scan.c2152 dmu_objset_type_t ostype, dmu_tx_t *tx);
2154 dsl_scan_t *, dsl_dataset_t *ds, dmu_objset_type_t ostype,
2162 dsl_scan_recurse(dsl_scan_t *scn, dsl_dataset_t *ds, dmu_objset_type_t ostype, argument
2206 ds, scn, ostype, tx);
2230 dsl_scan_visitdnode(scn, ds, ostype,
2287 dmu_objset_type_t ostype, dnode_phys_t *dnp,
2298 &czb, dnp, ds, scn, ostype, tx);
2306 &czb, dnp, ds, scn, ostype, tx); local
2317 dmu_objset_type_t ostype, dmu_tx_t *tx)
2360 if (dsl_scan_recurse(scn, ds, ostype, dn
2286 dsl_scan_visitdnode(dsl_scan_t *scn, dsl_dataset_t *ds, dmu_objset_type_t ostype, dnode_phys_t *dnp, uint64_t object, dmu_tx_t *tx) argument
2315 dsl_scan_visitbp(const blkptr_t *bp, const zbookmark_phys_t *zb, dnode_phys_t *dnp, dsl_dataset_t *ds, dsl_scan_t *scn, dmu_objset_type_t ostype, dmu_tx_t *tx) argument
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp182 // $cputype:16777223;cpusubtype:3;ostype:Darwin;vendor:apple;endian:little;ptrsize:8;#00
212 response.PutCString("ostype:tvos;");
214 response.PutCString("ostype:watchos;");
216 response.PutCString("ostype:bridgeos;");
218 response.PutCString("ostype:ios;");
225 response.PutCString("ostype:macosx;");
1268 std::string ostype = std::string(proc_triple.getOSName()); local
1269 // Adjust so ostype reports ios for Apple/ARM and Apple/ARM64.
1276 ostype = "ios";
1283 response.Printf("ostype
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1258 llvm::Triple::OSType ostype = arch.IsValid() local
1261 if (ostype == llvm::Triple::FreeBSD ||
1262 ostype == llvm::Triple::Linux ||
1263 ostype == llvm::Triple::NetBSD ||
1264 ostype == llvm::Triple::OpenBSD) {
/freebsd-current/contrib/sendmail/src/
H A Ddaemon.c3624 char *ostype = NULL; local
3890 ostype = p;
3902 charset = strchr(ostype, ',');
3912 if (sm_strncasecmp(ostype, "other", 5) == 0 &&
3913 (ostype[5] == ' ' || ostype[5] == '\0'))
/freebsd-current/sys/dev/ice/
H A Dice_lib.c1285 int ostype; local
1288 ostype = ice_get_phy_type_low(type);
1291 if (ostype == IFM_UNKNOWN)
1295 if (ice_is_bit_set(already_added, IFM_IDX(ostype)))
1298 ifmedia_add(media, IFM_ETHER | ostype, 0, NULL);
1299 ice_set_bit(IFM_IDX(ostype), already_added);
1305 int ostype; local
1308 ostype = ice_get_phy_type_high(type);
1311 if (ostype == IFM_UNKNOWN)
1315 if (ice_is_bit_set(already_added, IFM_IDX(ostype)))
[all...]
/freebsd-current/sys/sys/
H A Dsysctl.h1158 extern char ostype[];
/freebsd-current/sys/dev/nvmf/controller/
H A Dctl_frontend_nvmf.c761 _nvmf_init_io_controller_data(0, max_io_qsize, serial, ostype,
/freebsd-current/sys/nfs/
H A Dbootp_subr.c1198 ostype, MACHINE, osrelease);
/freebsd-current/sys/dev/mana/
H A Dgdma_main.c1146 strncpy(req.os_ver_str1, ostype, sizeof(req.os_ver_str1) - 1);

Completed in 243 milliseconds