Lines Matching defs:total
2134 {"st_size", "total size, in bytes"},
7703 getgrouplist() sets ngroups to the total number of groups and
9711 readv returns the total number of bytes read,
9712 which may be less than the total capacity of all the buffers.
9820 will return the total number of bytes read (which can be less than the total
10365 Returns the total number of bytes written.
10461 the total number of bytes written.
11546 Return disk usage statistics about the given path as a (total, free) tuple.
11554 ULARGE_INTEGER _, total, free;
11558 retval = GetDiskFreeSpaceExW(path->wide, &_, &total, &free);
11573 retval = GetDiskFreeSpaceExW(dir_path, &_, &total, &free);
11587 return Py_BuildValue("(LL)", total.QuadPart, free.QuadPart);