Lines Matching refs:fprintf

117 		fprintf(stderr, "%s: Failed to open '%s': %s\n", program_name,
123 fprintf(stderr, "%s: Failed to stat '%s': %s\n", program_name,
132 fprintf(stderr, "%s: Failed to map '%s': %s\n", program_name,
142 fprintf(stderr, "%s: '%s' is not an ELF file\n", program_name,
154 fprintf(stderr, "%s: '%s' has invalid ELF class\n",
166 fprintf(stderr, "%s: '%s' has invalid ELF data order\n",
173 fprintf(stderr,
179 fprintf(stderr,
216 fprintf(stderr,
242 fprintf(stderr, "%s: Failed to sync '%s': %s\n", program_name,
246 fprintf(stderr, "%s: Failed to sync '%s': %s\n", program_name,
253 fprintf(stderr, "%s: Failed to open '%s': %s\n", program_name,
258 fprintf(out_file, "/* Automatically generated - do not edit */\n");
259 fprintf(out_file, "#include <linux/linkage.h>\n");
260 fprintf(out_file, "#include <linux/mm.h>\n");
261 fprintf(out_file, "#include <asm/vdso.h>\n");
262 fprintf(out_file, "static int vdso_mremap(\n");
263 fprintf(out_file, " const struct vm_special_mapping *sm,\n");
264 fprintf(out_file, " struct vm_area_struct *new_vma)\n");
265 fprintf(out_file, "{\n");
266 fprintf(out_file, " current->mm->context.vdso =\n");
267 fprintf(out_file, " (void *)(new_vma->vm_start);\n");
268 fprintf(out_file, " return 0;\n");
269 fprintf(out_file, "}\n");
272 fprintf(out_file,
277 fprintf(out_file, "\n\t");
278 fprintf(out_file, "0x%02x, ", ((unsigned char *)vdso)[i]);
280 fprintf(out_file, "\n};\n");
283 fprintf(out_file,
287 fprintf(out_file, "struct mips_vdso_image vdso_image%s%s = {\n",
289 fprintf(out_file, "\t.data = vdso_data,\n");
290 fprintf(out_file, "\t.size = PAGE_ALIGN(%zu),\n", vdso_size);
291 fprintf(out_file, "\t.mapping = {\n");
292 fprintf(out_file, "\t\t.name = \"[vdso]\",\n");
293 fprintf(out_file, "\t\t.pages = vdso_pages,\n");
294 fprintf(out_file, "\t\t.mremap = vdso_mremap,\n");
295 fprintf(out_file, "\t},\n");
304 fprintf(out_file, "};\n");