Searched refs:unmounted (Results 1 - 3 of 3) sorted by relevance

/fuchsia/zircon/system/utest/memfs/
H A Dmemfs-tests.cpp36 sync_completion_t unmounted; local
37 memfs_free_filesystem(vfs, &unmounted);
38 ASSERT_EQ(sync_completion_wait(&unmounted, ZX_SEC(3)), ZX_OK);
81 sync_completion_t unmounted; local
82 memfs_free_filesystem(vfs, &unmounted);
83 ASSERT_EQ(sync_completion_wait(&unmounted, ZX_SEC(3)), ZX_OK);
163 sync_completion_t unmounted; local
164 memfs_free_filesystem(vfs, &unmounted);
165 ASSERT_EQ(sync_completion_wait(&unmounted, ZX_SEC(3)), ZX_OK);
259 sync_completion_t unmounted; local
[all...]
/fuchsia/zircon/system/ulib/memfs/
H A Dmemfs-local.cpp95 void memfs_free_filesystem(memfs_filesystem_t* fs, sync_completion_t* unmounted) { argument
97 fs->vfs.Shutdown([fs, unmounted](zx_status_t status) {
99 if (unmounted) {
100 sync_completion_signal(unmounted);
/fuchsia/zircon/system/ulib/memfs/include/lib/memfs/
H A Dmemfs.h42 // Signals the optional argument |unmounted| when memfs has torn down.
43 __EXPORT void memfs_free_filesystem(memfs_filesystem_t* fs, sync_completion_t* unmounted);

Completed in 34 milliseconds