/external/compiler-rt/lib/asan/tests/ |
asan_exceptions_test.cc | 9 fprintf(stderr, "%s\n", msg.c_str()); 19 fprintf(stderr, "&a before = %p\n", &a); 23 fprintf(stderr, "&a in catch = %p\n", &a); 25 fprintf(stderr, "&a final = %p\n", &a);
|
/external/valgrind/main/drd/tests/ |
recursive_mutex.c | 16 fprintf(stderr, "first lock call failed !\n"); 18 fprintf(stderr, "second lock call failed !\n"); 20 fprintf(stderr, "first unlock call failed !\n"); 22 fprintf(stderr, "second unlock call failed !\n"); 31 fprintf(stderr, "Recursive mutex (statically initialized).\n"); 41 fprintf(stderr, "\nRecursive mutex (initialized via mutex attributes).\n"); 55 fprintf(stderr, "\nError checking mutex.\n"); 68 fprintf(stderr, "\nNon-recursive mutex.\n"); 72 fprintf(stderr, "\nDone.\n");
|
/external/valgrind/main/memcheck/tests/ |
writev1.c | 36 fprintf(stderr, "open(2) failed: fname = %s, errno = %d\n", 40 fprintf(stderr, "write(2) failed: nbytes = %d, errno = %d\n", 45 fprintf(stderr, "close failed: errno = %d\n", errno); 48 fprintf(stderr, "Test file created.\n"); 50 fprintf(stderr, "open failed: fname = %s, errno = %d\n", 58 fprintf(stderr, "Received EFAULT as expected\n"); 60 fprintf(stderr, "Expected EFAULT, got %d\n", errno); 63 fprintf(stderr, "Expected nbytes = 0, got %d\n", nbytes); 66 fprintf(stderr, "Error writev returned a positive value\n"); 70 fprintf(stderr, "Received EINVAL as expected\n") [all...] |
/external/sepolicy/tools/ |
checkfc.c | 21 fprintf(stderr, "usage: %s [OPTIONS] sepolicy context_file\n\n", name); 22 fprintf(stderr, "Parses a context file and checks for syntax errors.\n"); 23 fprintf(stderr, "The context_file is assumed to be a file_contexts file\n"); 24 fprintf(stderr, "unless explicitly switched by an option.\n\n"); 25 fprintf(stderr, " OPTIONS:\n"); 26 fprintf(stderr, " -p : context file represents a property_context file.\n"); 27 fprintf(stderr, "\n"); 59 fprintf(stderr, "Expected sepolicy file and context file as arguments.\n"); 73 fprintf(stderr, "Error loading policy from %s\n", sepolicyFile); 84 fprintf(stderr, "Error loading context file from %s\n", contextFile) [all...] |
/frameworks/base/tools/aidl/ |
AST.cpp | 10 fprintf(to, "@Override "); 14 fprintf(to, "public "); 17 fprintf(to, "private "); 20 fprintf(to, "protected "); 24 fprintf(to, "static "); 28 fprintf(to, "final "); 32 fprintf(to, "abstract "); 43 fprintf(to, ", "); 84 fprintf(to, "%s\n", this->comment.c_str()); 87 fprintf(to, "%s %s", this->variable->type->QualifiedName().c_str() [all...] |
/art/test/023-many-interfaces/ |
iface-gen.c | 22 fprintf(stderr, "ERROR: unable to open %s\n", nameBuf); 26 fprintf(fp, "interface Interface%03d {\n", i); 28 fprintf(fp, " int func%03d();\n", i); 29 fprintf(fp, "}\n"); 34 fprintf(fp, " implements\n"); 36 fprintf(fp, " Interface%03d%s\n", i, (i == count-1) ? "" : ","); 38 fprintf(fp, "\n"); 40 fprintf(fp, " public int func%03d() { return %d; }\n", i, i);
|
/dalvik/tests/023-many-interfaces/ |
iface-gen.c | 22 fprintf(stderr, "ERROR: unable to open %s\n", nameBuf); 26 fprintf(fp, "interface Interface%03d {\n", i); 28 fprintf(fp, " int func%03d();\n", i); 29 fprintf(fp, "}\n"); 34 fprintf(fp, " implements\n"); 36 fprintf(fp, " Interface%03d%s\n", i, (i == count-1) ? "" : ","); 38 fprintf(fp, "\n"); 40 fprintf(fp, " public int func%03d() { return %d; }\n", i, i);
|
/external/chromium_org/tools/gyp/test/rules/src/subdir4/ |
program.c | 14 fprintf(stdout, "Hello from program.c\n"); 16 fprintf(stdout, "Got %d.\n", asm_function());
|
/external/valgrind/main/none/tests/ |
vgprintf.c | 11 fprintf(stderr, "%d\n", x); 13 fprintf(stderr, "%d\n", x);
|
/system/core/toolbox/ |
setprop.c | 8 fprintf(stderr,"usage: setprop <key> <value>\n"); 13 fprintf(stderr,"could not set property\n");
|
swapoff.c | 11 fprintf(stderr, "Usage: %s <filename>\n", argv[0]); 17 fprintf(stderr, "swapoff failed for %s\n", argv[1]);
|
/sdk/emulator/opengl/host/tools/emugen/ |
ApiGen.cpp | 49 fprintf(fp, "// Generated Code - DO NOT EDIT !!\n"); 50 fprintf(fp, "// generated by 'emugen'\n"); 64 fprintf(fp, "#ifndef __%s_%s_proc_t_h\n", basename, sideString(side)); 65 fprintf(fp, "#define __%s_%s_proc_t_h\n", basename, sideString(side)); 66 fprintf(fp, "\n\n"); 67 fprintf(fp, "\n#include \"%s_types.h\"\n",basename); 68 fprintf(fp, "#ifndef %s_APIENTRY\n",basename); 69 fprintf(fp, "#define %s_APIENTRY \n",basename); 70 fprintf(fp, "#endif\n"); 76 fprintf(fp, "typedef ") [all...] |
/frameworks/compile/slang/ |
slang-data.c | 8 fprintf(stderr, "Usage: %s PREFIX OUTFILE INFILE\n", argv[0]); 20 fprintf(stderr, "Unable to open input file: %s\n", infile_name); 27 fprintf(stderr, "Uanble to open output file: %s\n", outfile_name); 34 fprintf(outfile, "#ifndef %s_data_pack_h\n", prefix); 35 fprintf(outfile, "#define %s_data_pack_h\n\n", prefix); 39 fprintf(outfile, "#include <stddef.h>\n\n"); 43 fprintf(outfile, "static const char %s_data[] =\n", prefix); 57 fprintf(outfile, 71 fprintf(outfile, "\""); 74 fprintf(outfile, "\\x%02x", buf[i]) [all...] |
/development/ndk/tests/dlclose-destruction/jni/ |
main.c | 13 fprintf(stderr, "Can't load library: %s\n", dlerror()); 21 fprintf(stderr, "Can't find test function\n"); 31 fprintf(stderr, "Test function failed to set variable !\n"); 41 fprintf(stderr, "Test destructor was *not* called !\n"); 44 fprintf(stderr, "Test destructor called but returned invalid value (%d)\n", x);
|
/external/iproute2/ip/ |
ipntable.c | 47 fprintf(stderr, 150 fprintf(stderr, "Cannot find device \"%s\"\n", *argv); 307 fprintf(stderr, "Not enough information: changable attributes required.\n"); 362 fprintf(stderr, "Not NEIGHTBL: %08x %08x %08x\n", 368 fprintf(stderr, "BUG: wrong nlmsg len %d\n", len); 400 fprintf(fp, "inet "); 402 fprintf(fp, "inet6 "); 404 fprintf(fp, "dnet "); 406 fprintf(fp, "(%d) ", ndtm->ndtm_family); 410 fprintf(fp, "%s ", name) [all...] |
/external/qemu/slirp/ |
debug.h | 22 #define DEBUG_CALL(x) if (slirp_debug & DBG_CALL) { fprintf(dfd, "%s...\n", x); fflush(dfd); } 23 #define DEBUG_ARG(x, y) if (slirp_debug & DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); } 24 #define DEBUG_ARGS(x) if (slirp_debug & DBG_CALL) { fprintf x ; fflush(dfd); } 25 #define DEBUG_MISC(x) if (slirp_debug & DBG_MISC) { fprintf x ; fflush(dfd); } 26 #define DEBUG_ERROR(x) if (slirp_debug & DBG_ERROR) {fprintf x ; fflush(dfd); }
|
/external/qemu/slirp-android/ |
debug.h | 22 #define DEBUG_CALL(x) if (slirp_debug & DBG_CALL) { fprintf(dfd, "%s...\n", x); fflush(dfd); } 23 #define DEBUG_ARG(x, y) if (slirp_debug & DBG_CALL) { fputc(' ', dfd); fprintf(dfd, x, y); fputc('\n', dfd); fflush(dfd); } 24 #define DEBUG_ARGS(x) if (slirp_debug & DBG_CALL) { fprintf x ; fflush(dfd); } 25 #define DEBUG_MISC(x) if (slirp_debug & DBG_MISC) { fprintf x ; fflush(dfd); } 26 #define DEBUG_ERROR(x) if (slirp_debug & DBG_ERROR) {fprintf x ; fflush(dfd); }
|
/external/valgrind/main/gdbserver_tests/ |
passsigalrm.c | 14 fprintf(stderr, "starting ...\n"); 25 fprintf (stderr, "ok: 1st SIGALRM received\n"); 27 fprintf (stderr, "wrong 1st: unexpected value %d sigalrm_received\n", 34 fprintf (stderr, "ok: 2nd SIGALRM received\n"); 36 fprintf (stderr, "wrong 2nd: unexpected value %d sigalrm_received\n",
|
/external/valgrind/main/none/tests/amd64/ |
ssse3_misaligned.c | 22 fprintf(stderr, "three\n"); 29 fprintf(stderr, "you should see: \"one\\ntwo\\nthree\\n\"\n"); 30 fprintf(stderr, "one\n"); 32 fprintf(stderr, "two\n"); 34 fprintf(stderr, "test failed! you shouldn't see this\n");
|
/external/valgrind/main/none/tests/x86/ |
ssse3_misaligned.c | 22 fprintf(stderr, "three\n"); 29 fprintf(stderr, "you should see: \"one\\ntwo\\nthree\\n\"\n"); 30 fprintf(stderr, "one\n"); 32 fprintf(stderr, "two\n"); 34 fprintf(stderr, "test failed! you shouldn't see this\n");
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_program_print.c | 88 fprintf(f, " %s", omod_str); 94 fprintf(f, "false"); 96 fprintf(f, "true"); 108 fprintf(f, "%s %s %s", lhs, op, rhs); 124 fprintf(f, "%f (0x%x)", *print_float, index); 131 fprintf(f, "none"); 134 case RC_SPECIAL_ALU_RESULT: fprintf(f, "aluresult"); break; 135 default: fprintf(f, "special[%i]", index); break; 149 fprintf(f, "%s[%i%s]", filename, index, reladdr ? " + addr[0]" : ""); 155 if (mask & RC_MASK_X) fprintf(f, "x") [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_program_print.c | 88 fprintf(f, " %s", omod_str); 94 fprintf(f, "false"); 96 fprintf(f, "true"); 108 fprintf(f, "%s %s %s", lhs, op, rhs); 124 fprintf(f, "%f (0x%x)", *print_float, index); 131 fprintf(f, "none"); 134 case RC_SPECIAL_ALU_RESULT: fprintf(f, "aluresult"); break; 135 default: fprintf(f, "special[%i]", index); break; 149 fprintf(f, "%s[%i%s]", filename, index, reladdr ? " + addr[0]" : ""); 155 if (mask & RC_MASK_X) fprintf(f, "x") [all...] |
/external/iproute2/tc/ |
q_sfq.c | 30 fprintf(stderr, "Usage: ... sfq [ limit NUMBER ] [ perturb SECS ] [ quantum BYTES ]\n"); 31 fprintf(stderr, " [ divisor NUMBER ] [ flows NUMBER] [ depth NUMBER ]\n"); 32 fprintf(stderr, " [ headdrop ]\n"); 33 fprintf(stderr, " [ redflowlimit BYTES ] [ min BYTES ] [ max BYTES ]\n"); 34 fprintf(stderr, " [ avpkt BYTES ] [ burst PACKETS ] [ probability P ]\n"); 35 fprintf(stderr, " [ ecn ] [ harddrop ]\n"); 53 fprintf(stderr, "Illegal \"limit\"\n"); 60 fprintf(stderr, "Illegal \"perturb\"\n"); 67 fprintf(stderr, "Illegal \"limit\"\n"); 71 fprintf(stderr, "Illegal \"limit\", must be > 1\n") [all...] |
/external/libsepol/tests/ |
debug.c | 31 fprintf(fp, "%d", ebitmap_get_bit(bitmap, i)); 33 fprintf(fp, "\n"); 44 fprintf(fp, "%s ", p->p_bool_val_to_name[cur->bool - 1]); 47 fprintf(fp, "! "); 50 fprintf(fp, "|| "); 53 fprintf(fp, "&& "); 56 fprintf(fp, "^ "); 59 fprintf(fp, "== "); 62 fprintf(fp, "!= "); 65 fprintf(fp, "error! (%d)", cur->expr_type) [all...] |
/external/blktrace/ |
blkparse_fmt.c | 39 fprintf(stderr,"Bad format specifier %c\n", spec); 43 fprintf(stderr,"Bad format specifier - need ',' %s\n", option); 179 fprintf(ofp, strcat(format, "s"), act); 182 fprintf(ofp, strcat(format, "d"), pci->cpu); 187 fprintf(ofp, strcat(format, "s"), name); 194 fprintf(ofp, strcat(format, "s"), rwbs); 198 fprintf(ofp,"%3d,%-3d", MAJOR(t->device), MINOR(t->device)); 201 fprintf(ofp, strcat(format, "d"), t->error); 204 fprintf(ofp, strcat(format, "d"), MAJOR(t->device)); 207 fprintf(ofp, strcat(format, "d"), MINOR(t->device)) [all...] |