Searched refs:obj_filename (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
D | listfmt.h | 59 (const char *in_filename, const char *obj_filename); 89 const char *obj_filename); 113 #define yasm_listfmt_create(module, in_filename, obj_filename) \ argument 114 module->create(in_filename, obj_filename)
|
D | section.h | 51 /*@owned@*/ char *obj_filename; /**< Object filename */ member 90 (const char *src_filename, const char *obj_filename,
|
D | section.c | 214 yasm_object_create(const char *src_filename, const char *obj_filename, in yasm_object_create() argument 223 object->obj_filename = yasm__xstrdup(obj_filename); in yasm_object_create() 479 yasm_xfree(object->obj_filename); in yasm_object_destroy()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/ |
D | yasm.c | 49 /*@null@*/ /*@only@*/ static char *obj_filename = NULL, *in_filename = NULL; variable 261 if (!obj_filename || generate_make_dependencies) { in do_preproc_only() 266 if (generate_make_dependencies && !obj_filename) { in do_preproc_only() 269 obj_filename = yasm__xstrdup("yasm.out"); in do_preproc_only() 274 obj_filename = yasm__xstrdup("yasm.out"); in do_preproc_only() 276 obj_filename = replace_extension(base_filename, in do_preproc_only() 282 out = open_file(obj_filename, "wt"); in do_preproc_only() 303 fprintf(stdout, "%s: %s", obj_filename, in_filename); in do_preproc_only() 304 totlen = strlen(obj_filename)+2+strlen(in_filename); in do_preproc_only() 333 remove(obj_filename); in do_preproc_only() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/ |
D | tasm.c | 49 /*@null@*/ /*@only@*/ static char *obj_filename = NULL, *in_filename = NULL; variable 272 if (!obj_filename) { in do_assemble() 275 obj_filename = yasm__xstrdup("yasm.out"); in do_assemble() 280 obj_filename = yasm__xstrdup("yasm.out"); in do_assemble() 282 obj_filename = replace_extension(base_filename, in do_assemble() 311 object = yasm_object_create(in_filename, obj_filename, cur_arch, in do_assemble() 380 obj = open_file(obj_filename, "wb"); in do_assemble() 399 remove(obj_filename); in do_assemble() 411 obj_filename); in do_assemble() 629 if (obj_filename) in cleanup() [all …]
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/ |
D | nasm-listfmt.c | 67 nasm_listfmt_create(const char *in_filename, const char *obj_filename) in nasm_listfmt_create() argument
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/ |
D | cv-symline.c | 639 yasm__abspath(object->obj_filename)); in yasm_cv__generate_symline()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/ |
D | bin-objfmt.c | 781 fprintf(f, "Output file: %s\n\n", info->object->obj_filename); in output_map()
|