Home
last modified time | relevance | path

Searched refs:vstype (Results 1 – 25 of 47) sorted by relevance

12

/dports/sysutils/sleuthkit/sleuthkit-4.7.0/tools/vstools/
H A Dmmstat.cpp40 tsk_printf("%s\n", tsk_vs_type_toname(vs->vstype)); in print_stats()
49 TSK_VS_TYPE_ENUM vstype = TSK_VS_TYPE_DETECT; in main() local
106 vstype = tsk_vs_type_toid(OPTARG); in main()
107 if (vstype == TSK_VS_TYPE_UNSUPP) { in main()
149 if ((vs = tsk_vs_open(img, imgaddr * img->sector_size, vstype)) == NULL) { in main()
H A Dmmls.cpp119 if ((recurse) && (vs->vstype == TSK_VS_TYPE_DOS) in part_act()
132 tsk_printf("%s\n", tsk_vs_type_todesc(vs->vstype)); in print_header()
154 TSK_VS_TYPE_ENUM vstype = TSK_VS_TYPE_DETECT; in main() local
228 vstype = tsk_vs_type_toid(OPTARG); in main()
229 if (vstype == TSK_VS_TYPE_UNSUPP) { in main()
281 vs = tsk_vs_open(img, imgaddr * img->sector_size, vstype); in main()
298 if ((recurse) && (vs->vstype == TSK_VS_TYPE_DOS)) { in main()
H A Dmmcat.cpp46 TSK_VS_TYPE_ENUM vstype = TSK_VS_TYPE_DETECT; in main() local
108 vstype = tsk_vs_type_toid(OPTARG); in main()
109 if (vstype == TSK_VS_TYPE_UNSUPP) { in main()
156 if ((vs = tsk_vs_open(img, imgaddr * img->sector_size, vstype)) == NULL) { in main()
/dports/sysutils/autopsy/autopsy-2.24/lib/
H A DCaseman.pm2569 $vs = "&vstype=$Args::args{'vstype'}"
2660 my $vstype = "";
2671 $vstype_flag = "-t $vstype";
2682 chomp $vstype if (defined $vstype);
2684 if ( (!defined $vstype)
2686 || ($vstype eq "")
2688 || ($vstype !~ /^\w+$/))
2719 $vstype = $1 if ($vstype =~ /^(\w+)$/);
2720 $vstype_flag = "-t $vstype";
2978 if ($vstype ne "");
[all …]
/dports/math/xlife++/xlifepp-sources-v2.0.1-2018-05-09/ext/LAPACKBLAS/
H A Dlapack_build.cmake44 set(vstype 0) variable
49 set(genIndex ${vstype})
51 math(EXPR vstype "${vstype} +1")
/dports/math/xlapack/lapack-3.10.0/
H A Dlapack_build.cmake50 set(vstype 0) variable
55 set(genIndex ${vstype})
57 math(EXPR vstype "${vstype} +1")
/dports/math/blas/lapack-3.10.0/
H A Dlapack_build.cmake50 set(vstype 0) variable
55 set(genIndex ${vstype})
57 math(EXPR vstype "${vstype} +1")
/dports/math/lapacke/lapack-3.10.0/
H A Dlapack_build.cmake50 set(vstype 0) variable
55 set(genIndex ${vstype})
57 math(EXPR vstype "${vstype} +1")
/dports/math/lapack/lapack-3.10.0/
H A Dlapack_build.cmake50 set(vstype 0) variable
55 set(genIndex ${vstype})
57 math(EXPR vstype "${vstype} +1")
/dports/math/scalapack/scalapack-2.1.0/
H A Dscalapack_build.cmake44 set(vstype 0) variable
49 set(genIndex ${vstype})
51 math(EXPR vstype "${vstype} +1")
/dports/math/openblas/OpenBLAS-0.3.18/lapack-netlib/
H A Dlapack_build.cmake50 set(vstype 0) variable
55 set(genIndex ${vstype})
57 math(EXPR vstype "${vstype} +1")
/dports/math/cblas/lapack-3.10.0/
H A Dlapack_build.cmake50 set(vstype 0) variable
55 set(genIndex ${vstype})
57 math(EXPR vstype "${vstype} +1")
/dports/sysutils/py-pytsk/pytsk3-20210419/tests/
H A Dvolume_info.py50 self.assertEqual(volume_info.info.vstype, pytsk3.TSK_VS_TYPE_DOS)
181 self.assertEqual(volume_info.info.vstype, pytsk3.TSK_VS_TYPE_DOS)
/dports/sysutils/py-pytsk/pytsk3-20210419/sleuthkit/tsk/vs/
H A Dtsk_vs.h68 TSK_VS_TYPE_ENUM vstype; ///< Type of volume system / media management member
472 return m_vsInfo->vstype; in getVsType()
H A Dbsd.c234 vs->vstype = TSK_VS_TYPE_BSD; in tsk_vs_bsd_open()
H A Dmac.c210 vs->vstype = TSK_VS_TYPE_MAC; in tsk_vs_mac_open()
H A Dsun.c371 vs->vstype = TSK_VS_TYPE_SUN;
/dports/sysutils/sleuthkit/sleuthkit-4.7.0/tsk/vs/
H A Dtsk_vs.h67 TSK_VS_TYPE_ENUM vstype; ///< Type of volume system / media management member
471 return m_vsInfo->vstype; in getVsType()
H A Dbsd.c234 vs->vstype = TSK_VS_TYPE_BSD; in tsk_vs_bsd_open()
H A Dmac.c210 vs->vstype = TSK_VS_TYPE_MAC; in tsk_vs_mac_open()
/dports/sysutils/bulk_extractor/bulk_extractor-2.0.0-beta2/src/tsk3/vs/
H A Dtsk_vs.h65 TSK_VS_TYPE_ENUM vstype; ///< Type of volume system / media management member
/dports/sysutils/sleuthkit/sleuthkit-4.7.0/tsk/auto/
H A Ddb_sqlite.cpp744 …block_size) VALUES (%" PRId64 ", %d,%" PRIuDADDR ",%d)", objId, vs_info->vstype, vs_info->offset, … in addVsInfo()
1831 os << vsInfo.objId << "," << (int)vsInfo.vstype << "," << vsInfo.offset in operator <<()
1950 rowData.vstype = (TSK_VS_TYPE_ENUM)sqlite3_column_int(vsInfosStatement, 1); in getVsInfos()
2094 vsInfo.vstype = (TSK_VS_TYPE_ENUM)sqlite3_column_int(vsInfoStatement, 1); in getVsInfo()
H A Dtsk_db.h129 TSK_VS_TYPE_ENUM vstype; member
/dports/sysutils/py-pytsk/pytsk3-20210419/sleuthkit/tsk/auto/
H A Ddb_sqlite.cpp753 …block_size) VALUES (%" PRId64 ", %d,%" PRIuDADDR ",%d)", objId, vs_info->vstype, vs_info->offset, … in addVsInfo()
1943 os << vsInfo.objId << "," << (int)vsInfo.vstype << "," << vsInfo.offset in operator <<()
2062 rowData.vstype = (TSK_VS_TYPE_ENUM)sqlite3_column_int(vsInfosStatement, 1); in getVsInfos()
2206 vsInfo.vstype = (TSK_VS_TYPE_ENUM)sqlite3_column_int(vsInfoStatement, 1); in getVsInfo()
H A Dtsk_db.h134 TSK_VS_TYPE_ENUM vstype; member

12