/system/core/toolbox/ |
smd.c | 23 fprintf(stderr,"failed to open smd0 - %s\n", 31 fprintf(stderr,"failed to write smd0 (%d) %s\n",
|
/system/extras/tests/bionic/libc/bionic/ |
test_dlclose_destruction.c | 47 fprintf(stderr, "Could not load shared library %s: %s\n", libname, dlerror()); 51 fprintf(stderr, "%s loaded.\n", libname); 55 fprintf(stderr, "Could not access global DLL variable (x) in %s: %s\n", libname, dlerror()); 60 fprintf(stderr, "Constructor was not run on dlopen(\"%s\") !\n", libname); 66 fprintf(stderr, "Could not access global DLL function (set_y) in %s: %s\n", libname, dlerror()); 74 fprintf(stderr, "Could not unload shared library %s: %s\n", libname, dlerror()); 78 fprintf(stderr, "%s unloaded.\n", libname); 80 fprintf(stderr, "Static destructors was not called on dlclose()!\n");
|
/system/extras/tests/bionic/libc/common/ |
test_dlopen_null.c | 27 fprintf(stderr, "Could not open self-executable with dlopen(NULL) !!: %s\n", dlerror()); 32 fprintf(stderr, "Could not lookup symbol inside executable !!: %s\n", dlerror());
|
test_pthread_cleanup_push.c | 95 fprintf(stderr, "cleanup1 not called !!\n"); 97 fprintf(stderr, "cleanup1 called with wrong argument\n" ); 103 fprintf(stderr, "cleanup2 not called !!\n"); 105 fprintf(stderr, "cleanup2 called with wrong argument\n"); 110 fprintf(stderr, "cleanup3 not called !!\n"); 112 fprintf(stderr, "cleanup3 called with bad argument !!\n"); 118 fprintf(stderr, "cleanup3 wrongly called !!\n"); 120 fprintf(stderr, "cleanup3 wrongly called with bad argument !!\n");
|
/external/valgrind/main/helgrind/tests/ |
tc20_verifywrap.c | 53 fprintf(stderr, 56 fprintf(stderr, 62 fprintf(stderr, 87 fprintf(stderr, 110 fprintf(stderr, "\nmake pthread_mutex_lock fail: " 134 fprintf(stderr, 153 fprintf(stderr, "\nFIXME: can't figure out how to " 159 fprintf(stderr, "\nFIXME: can't figure out how to " 169 fprintf(stderr, 189 fprintf(stderr, "(1) no error on next line\n") [all...] |
/development/tools/yuv420sp2rgb/ |
debug.h | 14 fprintf(stderr, "%s(%d): ", __FILE__, __LINE__); \ 15 fprintf(stderr, ##msg); \ 23 fprintf(stderr, \ 34 fprintf(stderr, ##msg); \
|
/external/bison/src/ |
closure.c | 62 fprintf (stderr, "Closure: %s\n", title); 66 fprintf (stderr, " %2d: .", array[i]); 68 fprintf (stderr, " %s", symbols[*rp]->tag); 69 fprintf (stderr, " (rule %d)\n", -*rp - 1); 71 fputs ("\n\n", stderr); 80 fprintf (stderr, "FIRSTS\n"); 84 fprintf (stderr, "\t%s firsts\n", symbols[i]->tag); 87 fprintf (stderr, "\t\t%s\n", 91 fprintf (stderr, "\n\n"); 101 fprintf (stderr, "FDERIVES\n") [all...] |
/external/checkpolicy/ |
parse_util.c | 40 fprintf(stderr, "%s: unable to open %s\n", progname, file); 46 fprintf(stderr, "%s: out of memory!\n", progname); 55 fprintf(stderr, 65 fprintf(stderr,
|
/external/chromium/base/ |
bzip2_error_handler.cc | 9 // We define BZ_NO_STDIO in third_party/bzip2 to remove its internal STDERR
|
/external/dbus/test/name-test/ |
test-privserver.c | 9 vfprintf (stderr, message, args); 56 fprintf (stderr, "server exiting loop\n"); 108 fprintf (stderr, "server running mainloop\n"); 110 fprintf (stderr, "server mainloop quit\n");
|
/external/dbus/test/ |
test-names.c | 9 fprintf (stderr, "*** test-names: %s", message); 23 fprintf (stderr, "Error acquiring name '%s': %s\n", name, error.message); 35 fprintf (stderr, "Unexpected Success acquiring name '%s'\n", name); 55 fprintf (stderr, "*** Failed to open connection to system bus: %s\n",
|
/external/dropbear/libtomcrypt/testprof/ |
test_driver.c | 6 fprintf(stderr, "%s (%d)\n%s:%d:%s\n", error_to_string(res), res, file, line, cmd);
|
/external/e2fsprogs/misc/ |
partinfo.c | 39 fprintf(stderr, _("Usage: %s device...\n\nPrints out the " 49 fprintf(stderr, _("Cannot open %s: %s"), 55 fprintf(stderr, _("Cannot get geometry of %s: %s"), 63 fprintf(stderr, _("Cannot get size of %s: %s"),
|
/external/expat/xmlwf/ |
win32filemap.c | 48 _ftprintf(stderr, _T("%s: bigger than 2Gb\n"), name); 90 _ftprintf(stderr, _T("%s: %s"), s, buf); 91 fflush(stderr); 95 _ftprintf(stderr, _T("%s: unknown Windows error\n"), s);
|
/external/ganymed-ssh2/examples/ |
StdoutAndStderr.java | 43 sess.execCommand("echo \"Text on STDOUT\"; echo \"Text on STDERR\" >&2"); 46 InputStream stderr = new StreamGobbler(sess.getStderr()); local 49 BufferedReader stderrReader = new BufferedReader(new InputStreamReader(stderr)); 61 System.out.println("Here is the output from stderr:");
|
/external/icu4c/samples/legacy/ |
newcol.cpp | 74 fprintf(stderr, "Entered current, version: [%d.%d.%d.%d]\nMoving to sortkeys\n", uvi[0], uvi[1], uvi[2], uvi[3]); 78 fprintf(stderr, "For i=%d, size of sortkey is %d\n", i, keySize); 81 fprintf(stderr, "Done sortkeys, doing qsort test\n"); 87 fprintf(stderr, "Done current!\n");
|
/external/iproute2/ip/ |
iptuntap.c | 39 fprintf(stderr, "Usage: ip tuntap { add | del } [ dev PHYS_DEV ] \n"); 40 fprintf(stderr, " [ mode { tun | tap } ] [ user USER ] [ group GROUP ]\n"); 41 fprintf(stderr, " [ one_queue ] [ pi ] [ vnet_hdr ]\n"); 42 fprintf(stderr, "\n"); 43 fprintf(stderr, "Where: USER := { STRING | NUMBER }\n"); 44 fprintf(stderr, " GROUP := { STRING | NUMBER }\n"); 120 fprintf(stderr,"You managed to ask for more than one tunnel mode.\n"); 126 fprintf(stderr,"You managed to ask for more than one tunnel mode.\n"); 131 fprintf(stderr,"Cannot guess tunnel mode.\n"); 144 fprintf(stderr, "invalid user \"%s\"\n", *argv) [all...] |
/external/linux-tools-perf/ |
builtin-stat.c | 356 fprintf(stderr, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n", 520 fprintf(stderr, " ( +-%6.2f%% )", pct); 545 fprintf(stderr, fmt, cpustr, msecs, csv_sep, event_name(evsel)); 548 fprintf(stderr, "%s%s", csv_sep, evsel->cgrp->name); 554 fprintf(stderr, " # %8.3f CPUs utilized ", avg / avg_stats(&walltime_nsecs_stats)); 575 fprintf(stderr, " # "); 576 color_fprintf(stderr, color, "%6.2f%%", ratio); 577 fprintf(stderr, " frontend cycles idle "); 598 fprintf(stderr, " # "); 599 color_fprintf(stderr, color, "%6.2f%%", ratio) [all...] |
/external/llvm/test/Other/ |
close-stderr.ll | 8 ; Test that the error handling when writing to stderr fails exits the
|
/external/llvm/utils/count/ |
count.c | 18 fprintf(stderr, "usage: %s <expected line count>\n", argv[0]); 24 fprintf(stderr, "%s: invalid count argument '%s'\n", argv[0], argv[1]); 40 fprintf(stderr, "%s: error reading stdin\n", argv[0]); 45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
|
/external/llvm/utils/llvm-build/llvmbuild/ |
util.py | 6 print >>sys.stderr, '%s: %s: %s' % (program, kind, message)
|
/external/openssh/contrib/hpux/ |
egd | 3 # EGD_LOG: EGD stdout and stderr log file (default /etc/opt/egd/egd.log)
|
/external/openssh/regress/ |
sshd-log-wrapper.sh | 5 # simple wrapper for sshd proxy mode to catch stderr output
|
/external/oprofile/libop/ |
op_parse_event.c | 51 fprintf(stderr, "Invalid event part %s\n", str); 69 fprintf(stderr, "Too many events specified: CPU " 76 fprintf(stderr, "Invalid event %s\n", cp); 85 fprintf(stderr, "Invalid count for event %s\n", events[i]);
|
/external/qemu/distrib/sdl-1.2.15/test/ |
testhread.c | 46 fprintf(stderr, "Couldn't initialize SDL: %s\n",SDL_GetError()); 53 fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError()); 64 fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError()); 75 fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError());
|