Examples of TSK_FS_NAME_TYPE_ENUM


Examples of org.sleuthkit.datamodel.TskData.TSK_FS_NAME_TYPE_ENUM

      //type, has_path
      statement.setShort(4, TskData.TSK_DB_FILES_TYPE_ENUM.VIRTUAL_DIR.getFileType());
      statement.setBoolean(5, true);

      //flags
      final TSK_FS_NAME_TYPE_ENUM dirType = TSK_FS_NAME_TYPE_ENUM.DIR;
      statement.setShort(6, dirType.getValue());
      final TSK_FS_META_TYPE_ENUM metaType = TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_DIR;
      statement.setShort(7, metaType.getValue());

      //note: using alloc under assumption that derived files derive from alloc files
      final TSK_FS_NAME_FLAG_ENUM dirFlag = TSK_FS_NAME_FLAG_ENUM.ALLOC;
View Full Code Here

Examples of org.sleuthkit.datamodel.TskData.TSK_FS_NAME_TYPE_ENUM

          // has_path
          statement.setBoolean(5, true);

          // dirType
          final TSK_FS_NAME_TYPE_ENUM dirType = TSK_FS_NAME_TYPE_ENUM.REG;
          statement.setShort(6, dirType.getValue());

          // metaType
          final TSK_FS_META_TYPE_ENUM metaType = TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_REG;
          statement.setShort(7, metaType.getValue());
View Full Code Here

Examples of org.sleuthkit.datamodel.TskData.TSK_FS_NAME_TYPE_ENUM

      //type, has_path
      statement.setShort(4, TskData.TSK_DB_FILES_TYPE_ENUM.DERIVED.getFileType());
      statement.setBoolean(5, true);

      //flags
      final TSK_FS_NAME_TYPE_ENUM dirType = isFile ? TSK_FS_NAME_TYPE_ENUM.REG : TSK_FS_NAME_TYPE_ENUM.DIR;
      statement.setShort(6, dirType.getValue());
      final TSK_FS_META_TYPE_ENUM metaType = isFile ? TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_REG : TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_DIR;
      statement.setShort(7, metaType.getValue());

      //note: using alloc under assumption that derived files derive from alloc files
      final TSK_FS_NAME_FLAG_ENUM dirFlag = TSK_FS_NAME_FLAG_ENUM.ALLOC;
View Full Code Here

Examples of org.sleuthkit.datamodel.TskData.TSK_FS_NAME_TYPE_ENUM

      //type, has_path
      statement.setShort(4, TskData.TSK_DB_FILES_TYPE_ENUM.LOCAL.getFileType());
      statement.setBoolean(5, true);

      //flags
      final TSK_FS_NAME_TYPE_ENUM dirType = isFile ? TSK_FS_NAME_TYPE_ENUM.REG : TSK_FS_NAME_TYPE_ENUM.DIR;
      statement.setShort(6, dirType.getValue());
      final TSK_FS_META_TYPE_ENUM metaType = isFile ? TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_REG : TSK_FS_META_TYPE_ENUM.TSK_FS_META_TYPE_DIR;
      statement.setShort(7, metaType.getValue());

      //note: using alloc under assumption that derived files derive from alloc files
      final TSK_FS_NAME_FLAG_ENUM dirFlag = TSK_FS_NAME_FLAG_ENUM.ALLOC;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.