Lines Matching refs:size
55 bool Parse(const Byte *p, size_t size);
77 bool Parse(const Byte *p, size_t size);
111 bool SetReparseData(CFSTR path, bool isDir, const void *data, DWORD size);
147 UInt64 Size; // it can be larger than real available size
258 bool Read1(void *data, UInt32 size, UInt32 &processedSize) throw();
259 bool ReadPart(void *data, UInt32 size, UInt32 &processedSize) throw();
260 bool Read(void *data, UInt32 size, UInt32 &processedSize) throw();
261 bool ReadFull(void *data, size_t size, size_t &processedSize) throw();
274 bool WritePart(const void *data, UInt32 size, UInt32 &processedSize) throw();
275 bool Write(const void *data, UInt32 size, UInt32 &processedSize) throw();
276 bool WriteFull(const void *data, size_t size) throw();
290 // bool SetReparseData(CFSTR path, bool isDir, const void *data, DWORD size);
305 UInt64 Size; // it can be larger than real available size
324 int GetDeviceSize_InBytes(UInt64 &size);
334 ssize_t read_part(void *data, size_t size) throw();
335 // ssize_t read_full(void *data, size_t size, size_t &processed);
336 bool ReadFull(void *data, size_t size, size_t &processedSize) throw();
349 ssize_t write_part(const void *data, size_t size) throw();
363 ssize_t write_full(const void *data, size_t size, size_t &processed) throw();
365 bool WriteFull(const void *data, size_t size) throw()
368 ssize_t res = write_full(data, size, processed);
371 return processed == size;