Lines Matching defs:buf
42 struct attribute *attr, char *buf);
43 static ssize_t start_show(struct firmware_map_entry *entry, char *buf);
44 static ssize_t end_show(struct firmware_map_entry *entry, char *buf);
45 static ssize_t type_show(struct firmware_map_entry *entry, char *buf);
56 ssize_t (*show)(struct firmware_map_entry *entry, char *buf);
370 static ssize_t start_show(struct firmware_map_entry *entry, char *buf)
372 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
376 static ssize_t end_show(struct firmware_map_entry *entry, char *buf)
378 return snprintf(buf, PAGE_SIZE, "0x%llx\n",
382 static ssize_t type_show(struct firmware_map_entry *entry, char *buf)
384 return snprintf(buf, PAGE_SIZE, "%s\n", entry->type);
393 struct attribute *attr, char *buf)
398 return memmap_attr->show(entry, buf);