Searched defs:fs (Results 1 - 10 of 10) sorted by relevance

/system/extras/tests/kernel.config/
H A Dnfs_test.cpp23 std::string fs; local
24 EXPECT_TRUE(android::base::ReadFileToString("/proc/filesystems", &fs));
25 EXPECT_TRUE(fs.find("\tnfs\n") == std::string::npos);
26 EXPECT_TRUE(fs.find("\tnfs4\n") == std::string::npos);
27 EXPECT_TRUE(fs.find("\tnfsd\n") == std::string::npos);
/system/update_engine/payload_generator/
H A Dmapfile_filesystem_unittest.cc63 unique_ptr<MapfileFilesystem> fs = MapfileFilesystem::CreateFromFile( local
65 ASSERT_NE(nullptr, fs.get());
67 EXPECT_EQ(0U, fs->GetBlockCount());
69 EXPECT_EQ(4096U, fs->GetBlockSize());
82 unique_ptr<MapfileFilesystem> fs = MapfileFilesystem::CreateFromFile( local
84 ASSERT_NE(nullptr, fs.get());
87 EXPECT_TRUE(fs->GetFiles(&files));
94 ExpectBlocksInRange(file.extents, fs->GetBlockCount());
114 unique_ptr<MapfileFilesystem> fs = MapfileFilesystem::CreateFromFile( local
116 ASSERT_NE(nullptr, fs
126 unique_ptr<MapfileFilesystem> fs = MapfileFilesystem::CreateFromFile( local
[all...]
H A Dext2_filesystem_unittest.cc67 unique_ptr<Ext2Filesystem> fs = local
69 ASSERT_EQ(nullptr, fs.get());
71 fs = Ext2Filesystem::CreateFromFile("/path/to/invalid/file");
72 ASSERT_EQ(nullptr, fs.get());
76 unique_ptr<Ext2Filesystem> fs = Ext2Filesystem::CreateFromFile( local
79 ASSERT_NE(nullptr, fs.get());
80 EXPECT_EQ(kDefaultFilesystemBlockCount, fs->GetBlockCount());
81 EXPECT_EQ(kDefaultFilesystemBlockSize, fs->GetBlockSize());
84 EXPECT_TRUE(fs->GetFiles(&files));
91 ExpectBlocksInRange(file.extents, fs
107 unique_ptr<Ext2Filesystem> fs = Ext2Filesystem::CreateFromFile( local
189 unique_ptr<Ext2Filesystem> fs = Ext2Filesystem::CreateFromFile( local
199 unique_ptr<Ext2Filesystem> fs = Ext2Filesystem::CreateFromFile( local
[all...]
H A Dsquashfs_filesystem_unittest.cc75 void CheckSquashfs(const unique_ptr<SquashfsFilesystem>& fs) { argument
76 ASSERT_TRUE(fs);
77 EXPECT_EQ(kTestBlockSize, fs->GetBlockSize());
80 ASSERT_TRUE(fs->GetFiles(&files));
87 ExpectBlocksInRange(file.extents, fs->GetBlockCount());
114 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFile( local
116 CheckSquashfs(fs);
119 EXPECT_EQ(4096 / kTestBlockSize, fs->GetBlockCount());
122 ASSERT_TRUE(fs->GetFiles(&files));
135 unique_ptr<SquashfsFilesystem> fs local
156 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
170 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
183 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
197 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
212 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
227 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
241 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
249 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
260 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
282 unique_ptr<SquashfsFilesystem> fs = SquashfsFilesystem::CreateFromFileMap( local
[all...]
H A Dext2_filesystem.cc52 int ProcessInodeAllBlocks(ext2_filsys fs, argument
66 int AddMetadataBlocks(ext2_filsys fs, argument
/system/core/libpixelflinger/codeflinger/
H A Dblending.cpp73 int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; local
75 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA)
76 fs = GGL_ONE;
77 const int blending = blending_codes(fs, fd);
102 (fs==GGL_DST_COLOR && fd==GGL_ONE_MINUS_DST_COLOR) ||
103 (fs==GGL_SRC_COLOR && fd==GGL_ONE_MINUS_SRC_COLOR) ||
104 (fs==GGL_DST_ALPHA && fd==GGL_ONE_MINUS_DST_ALPHA) ||
105 (fs==GGL_SRC_ALPHA && fd==GGL_ONE_MINUS_SRC_ALPHA);
108 (fs==GGL_ONE_MINUS_DST_COLOR && fd==GGL_DST_COLOR) ||
109 (fs
[all...]
H A DGGLAssembler.cpp159 int fs = i==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; local
161 if (fs==GGL_SRC_ALPHA_SATURATE && i==GGLFormat::ALPHA)
162 fs = GGL_ONE;
176 info.blend = (fs != int(GGL_ONE)) || (fd > int(GGL_ZERO));
490 int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; local
492 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA) {
493 fs = GGL_ONE;
497 const int blending = blending_codes(fs, fd);
500 const int need_blending = (fs != int(GGL_ONE)) || (fd > int(GGL_ZERO));
H A Dmips_opcode.h75 unsigned fs: 5; member in struct:__anon1721::__anon1725
109 unsigned fs: 5; member in struct:__anon1721::__anon1729
/system/core/libunwindstack/include/unwindstack/
H A DUcontextX86.h46 uint32_t fs; member in struct:unwindstack::x86_mcontext_t
H A DUserX86_64.h60 uint64_t fs; member in struct:unwindstack::x86_64_user_regs

Completed in 7323 milliseconds