Searched refs:statbuf (Results 1 – 1 of 1) sorted by relevance
61 struct stat statbuf = {0}; in read_memory_node() local96 ret = fstat(fd, &statbuf); in read_memory_node()102 DPAAX_DEBUG("Size of device-tree mem node: %" PRIu64, statbuf.st_size); in read_memory_node()103 if (statbuf.st_size > MEM_NODE_FILE_LEN) { in read_memory_node()108 ret = read(fd, file_data, statbuf.st_size > MEM_NODE_FILE_LEN ? in read_memory_node()109 MEM_NODE_FILE_LEN : statbuf.st_size); in read_memory_node()119 *count = (statbuf.st_size / 16); in read_memory_node()120 if ((*count) <= 0 || (statbuf.st_size % 16 != 0)) { in read_memory_node()122 statbuf.st_size); in read_memory_node()134 for (i = 0, j = 0; i < (statbuf.st_size) && j < (*count); i += 16, j++) { in read_memory_node()