Lines Matching defs:CtxFile
80 struct CtxFile { // The structure cannot be initialized by MEMSET, will rename to CtxTransfer struct
81 uint64_t fileSize;
82 uint64_t dirSize;
83 uint64_t indexIO; // Id or written IO bytes
84 uint32_t fileCnt; // add for directory mode
85 bool isDir; // add for directory mode
86 bool targetDirNotExist;
87 uint64_t transferBegin;
88 uint64_t transferDirBegin;
89 string localName;
90 string localPath;
91 string remotePath;
92 string localDirName;
93 bool fileModeSync;
94 bool master; // Document transmission initiative
95 bool closeNotify;
96 bool ioFinish;
97 bool closeReqSubmitted;
98 bool isStableBufSize; // USB IO buffer size set stable value, false: 512K, true: 61K
99 bool isFdOpen;
100 void *thisClass;
101 uint32_t lastErrno;
102 uv_loop_t *loop;
103 uv_fs_t fsOpenReq;
127 static void OnFileOpenFailed(CtxFile *context); argument