• Home
  • Raw
  • Download

Lines Matching refs:control

215 void IncFs_DeleteControl(IncFsControl* control);
216 IncFsFd IncFs_GetControlFd(const IncFsControl* control, IncFsFdType type);
217 IncFsSize IncFs_ReleaseControlFds(IncFsControl* control, IncFsFd out[], IncFsSize outSize);
219 IncFsErrorCode IncFs_SetOptions(const IncFsControl* control, IncFsMountOptions options);
224 IncFsErrorCode IncFs_Root(const IncFsControl* control, char buffer[], size_t* bufferSize);
226 IncFsErrorCode IncFs_MakeFile(const IncFsControl* control, const char* path, int32_t mode,
228 IncFsErrorCode IncFs_MakeMappedFile(const IncFsControl* control, const char* path, int32_t mode,
231 IncFsErrorCode IncFs_MakeDir(const IncFsControl* control, const char* path, int32_t mode);
232 IncFsErrorCode IncFs_MakeDirs(const IncFsControl* control, const char* path, int32_t mode);
234 IncFsErrorCode IncFs_GetMetadataById(const IncFsControl* control, IncFsFileId id, char buffer[],
236 IncFsErrorCode IncFs_GetMetadataByPath(const IncFsControl* control, const char* path, char buffer[],
239 IncFsErrorCode IncFs_GetSignatureById(const IncFsControl* control, IncFsFileId id, char buffer[],
241 IncFsErrorCode IncFs_GetSignatureByPath(const IncFsControl* control, const char* path,
245 IncFsFileId IncFs_GetId(const IncFsControl* control, const char* path);
247 IncFsErrorCode IncFs_Link(const IncFsControl* control, const char* sourcePath,
249 IncFsErrorCode IncFs_Unlink(const IncFsControl* control, const char* path);
251 IncFsErrorCode IncFs_WaitForPendingReads(const IncFsControl* control, int32_t timeoutMs,
253 IncFsErrorCode IncFs_WaitForPageReads(const IncFsControl* control, int32_t timeoutMs,
256 IncFsErrorCode IncFs_WaitForPendingReadsWithUid(const IncFsControl* control, int32_t timeoutMs,
258 IncFsErrorCode IncFs_WaitForPageReadsWithUid(const IncFsControl* control, int32_t timeoutMs,
261 IncFsErrorCode IncFs_WaitForFsWrittenBlocksChange(const IncFsControl* control, int32_t timeoutMs,
264 IncFsFd IncFs_OpenForSpecialOpsByPath(const IncFsControl* control, const char* path);
265 IncFsFd IncFs_OpenForSpecialOpsById(const IncFsControl* control, IncFsFileId id);
269 IncFsErrorCode IncFs_SetUidReadTimeouts(const IncFsControl* control,
271 IncFsErrorCode IncFs_GetUidReadTimeouts(const IncFsControl* control,
274 IncFsErrorCode IncFs_GetFileBlockCountByPath(const IncFsControl* control, const char* path,
276 IncFsErrorCode IncFs_GetFileBlockCountById(const IncFsControl* control, IncFsFileId id,
279 IncFsErrorCode IncFs_ListIncompleteFiles(const IncFsControl* control, IncFsFileId ids[],
288 typedef bool (*FileCallback)(void* context, const IncFsControl* control, IncFsFileId fileId);
289 IncFsErrorCode IncFs_ForEachFile(const IncFsControl* control, void* context, FileCallback cb);
290 IncFsErrorCode IncFs_ForEachIncompleteFile(const IncFsControl* control, void* context,
293 IncFsErrorCode IncFs_WaitForLoadingComplete(const IncFsControl* control, int32_t timeoutMs);
310 IncFsErrorCode IncFs_IsFullyLoadedByPath(const IncFsControl* control, const char* path);
311 IncFsErrorCode IncFs_IsFullyLoadedById(const IncFsControl* control, IncFsFileId fileId);
317 IncFsErrorCode IncFs_IsEverythingFullyLoaded(const IncFsControl* control);
321 IncFsErrorCode IncFs_ReserveSpaceByPath(const IncFsControl* control, const char* path,
323 IncFsErrorCode IncFs_ReserveSpaceById(const IncFsControl* control, IncFsFileId id, IncFsSize size);
340 IncFsErrorCode IncFs_GetLastReadError(const IncFsControl* control,