Searched refs:ent (Results 1 – 7 of 7) sorted by relevance
/bionic/tests/ |
D | mntent_test.cpp | 46 struct mntent ent; in TEST() local 47 memset(&ent, 0, sizeof(ent)); in TEST() 48 ent.mnt_opts = mnt_opts; in TEST() 50 EXPECT_EQ(mnt_opts, hasmntopt(&ent, "aa")); in TEST() 51 EXPECT_EQ(mnt_opts + 5, hasmntopt(&ent, "a")); in TEST() 52 EXPECT_EQ(mnt_opts + 9, hasmntopt(&ent, "b")); in TEST() 53 EXPECT_EQ(mnt_opts + 11, hasmntopt(&ent, "bb")); in TEST() 54 EXPECT_EQ(mnt_opts + 14, hasmntopt(&ent, "c")); in TEST() 55 EXPECT_EQ(nullptr, hasmntopt(&ent, "d")); in TEST() 56 EXPECT_EQ(nullptr, hasmntopt(&ent, "e")); in TEST()
|
/bionic/tools/versioner/src/ |
D | Utils.cpp | 51 while (FTSENT* ent = fts_read(fts.get())) { in collectHeaders() local 52 if (ent->fts_info & (FTS_D | FTS_DP)) { in collectHeaders() 56 if (!android::base::EndsWith(ent->fts_path, ".h")) { in collectHeaders() 60 headers.push_back(ent->fts_path); in collectHeaders()
|
D | VFS.cpp | 46 while (FTSENT* ent = fts_read(fts.get())) { in addDirectoryToVFS() local 47 if ((ent->fts_info & FTS_F) == 0) { in addDirectoryToVFS() 51 const char* file_path = ent->fts_accpath; in addDirectoryToVFS() 62 if (!vfs->addFile(file_path, ent->fts_statp->st_mtime, std::move(buffer_opt.get()))) { in addDirectoryToVFS()
|
D | Preprocessor.cpp | 448 while (FTSENT* ent = fts_read(fts.get())) { in preprocessHeaders() local 449 llvm::StringRef path = ent->fts_path; in preprocessHeaders() 451 err(1, "path '%s' doesn't start with source dir '%s'", ent->fts_path, src_dir.c_str()); in preprocessHeaders() 454 if (ent->fts_info != FTS_F) { in preprocessHeaders()
|
/bionic/libc/arch-mips/include/machine/ |
D | asm.h | 35 #define __bionic_asm_custom_entry(f) .ent f 171 .ent x, 0; \ 185 .ent x, 0; \
|
/bionic/linker/arch/mips/ |
D | begin.S | 33 .ent __start
|
/bionic/linker/arch/mips64/ |
D | begin.S | 47 .ent __start
|