Searched refs:mnt_opts (Results 1 – 3 of 3) sorted by relevance
/bionic/tests/ |
D | mntent_test.cpp | 61 char mnt_opts[]{"aa=b,a=b,b,bb,c=d"}; in TEST() local 64 ent.mnt_opts = mnt_opts; in TEST() 66 EXPECT_EQ(mnt_opts, hasmntopt(&ent, "aa")); in TEST() 67 EXPECT_EQ(mnt_opts + 5, hasmntopt(&ent, "a")); in TEST() 68 EXPECT_EQ(mnt_opts + 9, hasmntopt(&ent, "b")); in TEST() 69 EXPECT_EQ(mnt_opts + 11, hasmntopt(&ent, "bb")); in TEST() 70 EXPECT_EQ(mnt_opts + 14, hasmntopt(&ent, "c")); in TEST()
|
/bionic/libc/bionic/ |
D | mntent.cpp | 57 e->mnt_opts = &buf[opts0]; in getmntent_r() 78 char* token = mnt->mnt_opts; in hasmntopt() 79 char* const end = mnt->mnt_opts + strlen(mnt->mnt_opts); in hasmntopt()
|
/bionic/libc/include/ |
D | mntent.h | 53 char* _Nullable mnt_opts; member
|