Home
last modified time | relevance | path

Searched refs:IncFsFd (Results 1 – 8 of 8) sorted by relevance

/aosp12/system/incremental_delivery/incfs/include/
H A Dincfs_ndk.h55 typedef int IncFsFd; typedef
110 IncFsFd fileFd;
215 IncFsControl* IncFs_CreateControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs,
216 IncFsFd blocksWritten);
218 IncFsFd IncFs_GetControlFd(const IncFsControl* control, IncFsFdType type);
219 IncFsSize IncFs_ReleaseControlFds(IncFsControl* control, IncFsFd out[], IncFsSize outSize);
266 IncFsFd IncFs_OpenForSpecialOpsByPath(const IncFsControl* control, const char* path);
267 IncFsFd IncFs_OpenForSpecialOpsById(const IncFsControl* control, IncFsFileId id);
H A Dincfs.h101 IncFsFd cmd() const;
102 IncFsFd pendingReads() const;
103 IncFsFd logs() const;
104 IncFsFd blocksWritten() const;
184 using Fd = IncFsFd;
215 UniqueControl createControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs, IncFsFd blocksWritten);
H A Dincfs_inline.h107 inline IncFsFd UniqueControl::cmd() const { in cmd()
111 inline IncFsFd UniqueControl::pendingReads() const { in pendingReads()
115 inline IncFsFd UniqueControl::logs() const { in logs()
119 inline IncFsFd UniqueControl::blocksWritten() const { in blocksWritten()
125 IncFsFd fds[result.size()]; in releaseFds()
144 inline UniqueControl createControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs, in createControl()
145 IncFsFd blocksWritten) { in createControl()
/aosp12/system/incremental_delivery/incfs/
H A Dincfs.cpp63 IncFsFd cmd;
64 IncFsFd pendingReads;
65 IncFsFd logs;
66 IncFsFd blocksWritten;
67 constexpr IncFsControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs, IncFsFd blocksWritten) in IncFsControl()
613 IncFsFd IncFs_GetControlFd(const IncFsControl* control, IncFsFdType type) { in IncFs_GetControlFd()
645 IncFsControl* IncFs_CreateControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs, in IncFs_CreateControl()
646 IncFsFd blocksWritten) { in IncFs_CreateControl()
1198 static int waitForReads(IncFsFd readFd, int32_t timeoutMs, PublicPendingRead buffer[], in waitForReads()
1255 static IncFsFd openForSpecialOps(int cmd, const char* path) { in openForSpecialOps()
[all …]
/aosp12/frameworks/base/services/incremental/
H A DServiceWrappers.h98 virtual Control createControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs,
99 IncFsFd blocksWritten) const = 0;
H A DServiceWrappers.cpp156 Control createControl(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs, in createControl()
157 IncFsFd blocksWritten) const final { in createControl()
/aosp12/frameworks/base/services/incremental/test/
H A DIncrementalServiceTest.cpp383 Control(IncFsFd cmd, IncFsFd pendingReads, IncFsFd logs,
384 IncFsFd blocksWritten));
/aosp12/system/incremental_delivery/incfs/tests/
H A Dincfs_test.cpp268 IncFsFd rawFds[4]; in TEST_F()