Home
last modified time | relevance | path

Searched refs:FsType (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/nix/src/sys/
Dstatfs.rs37 pub struct FsType(pub fs_type_t); struct
40 pub const ADFS_SUPER_MAGIC: FsType = FsType(libc::ADFS_SUPER_MAGIC as fs_type_t);
42 pub const AFFS_SUPER_MAGIC: FsType = FsType(libc::AFFS_SUPER_MAGIC as fs_type_t);
44 pub const CODA_SUPER_MAGIC: FsType = FsType(libc::CODA_SUPER_MAGIC as fs_type_t);
46 pub const CRAMFS_MAGIC: FsType = FsType(libc::CRAMFS_MAGIC as fs_type_t);
48 pub const EFS_SUPER_MAGIC: FsType = FsType(libc::EFS_SUPER_MAGIC as fs_type_t);
50 pub const EXT2_SUPER_MAGIC: FsType = FsType(libc::EXT2_SUPER_MAGIC as fs_type_t);
52 pub const EXT3_SUPER_MAGIC: FsType = FsType(libc::EXT3_SUPER_MAGIC as fs_type_t);
54 pub const EXT4_SUPER_MAGIC: FsType = FsType(libc::EXT4_SUPER_MAGIC as fs_type_t);
56 pub const HPFS_SUPER_MAGIC: FsType = FsType(libc::HPFS_SUPER_MAGIC as fs_type_t);
[all …]
/external/sfntly/cpp/src/sfntly/table/core/
Dos2_table.h336 int32_t FsType();
420 int32_t FsType();
Dos2_table.cc121 int32_t OS2Table::FsType() { in FsType() function in sfntly::OS2Table
322 int32_t OS2Table::Builder::FsType() { in FsType() function in sfntly::OS2Table::Builder
/external/sfntly/cpp/src/test/
Dverify_os2.cc67 EXPECT_EQ(os2->FsType(), OS2_FS_TYPE); in VerifyOS_2()
/external/rust/crates/nix/
DCHANGELOG.md84 - `FsType` inner value made public.