HomeSort by relevance Sort by last modified time
    Searched refs:stderr (Results 26 - 50 of 5297) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gold/testsuite/
weak_test.cc 43 fprintf(stderr, "FAILED the environ test: environ is NULL\n");
weak_undef_test.cc 65 fprintf(stderr, "FAILED weak undef test 1: %s\n",
72 fprintf(stderr, "FAILED weak undef test 2: expected %d, got %d\n",
79 fprintf(stderr, "FAILED weak undef test 3: expected %d, got %d\n",
86 fprintf(stderr, "FAILED weak undef test 4: %s\n",
93 fprintf(stderr, "FAILED weak undef test 5: %s\n",
100 fprintf(stderr, "FAILED weak undef test 6: %s\n",
  /external/compiler-rt/test/asan/TestCases/
debug_report.cc 10 // Disable stderr buffering. Needed on Windows.
11 setvbuf(stderr, NULL, _IONBF, 0);
16 fprintf(stderr, "%s\n", (present == 0) ? "no report" : "");
44 fprintf(stderr, "%s\n", (present == 1) ? "report" : "");
46 fprintf(stderr, "pc: " PTR_FMT "\n", pc);
48 fprintf(stderr, "bp: " PTR_FMT "\n", bp);
50 fprintf(stderr, "sp: " PTR_FMT "\n", sp);
52 fprintf(stderr, "addr: " PTR_FMT "\n", addr);
54 fprintf(stderr, "type: %s\n", (is_write ? "write" : "read"));
56 fprintf(stderr, "access_size: %ld\n", access_size)
    [all...]
debug_stacks.cc 22 // Disable stderr buffering. Needed on Windows.
23 setvbuf(stderr, NULL, _IONBF, 0);
33 fprintf(stderr, "alloc stack retval %s\n", (num_frames > 0 && num_frames < 10)
36 fprintf(stderr, "thread id = %d\n", thread_id);
38 fprintf(stderr, "0x%lx\n", trace[0]);
40 fprintf(stderr, "0x%lx\n", trace[1]);
46 fprintf(stderr, "free stack retval %s\n", (num_frames > 0 && num_frames < 10)
49 fprintf(stderr, "thread id = %d\n", thread_id);
51 fprintf(stderr, "0x%lx\n", trace[0]);
53 fprintf(stderr, "0x%lx\n", trace[1])
    [all...]
coverage-order-pcs.cc 26 void foo() { fprintf(stderr, "FOO\n"); }
27 void bar() { fprintf(stderr, "BAR\n"); }
debug_mapping.cc 17 fprintf(stderr, "scale: %d\n", (int)scale);
18 fprintf(stderr, "offset: 0x%lx\n", offset);
on_error_callback.cc 8 fprintf(stderr, "__asan_on_error called\n");
9 fflush(stderr);
  /external/compiler-rt/test/asan/TestCases/Linux/
coverage-missing.cc 58 void foo1() { fprintf(stderr, "foo1\n"); }
59 void foo2() { fprintf(stderr, "foo2\n"); }
61 void bar1() { fprintf(stderr, "bar1\n"); }
62 void bar2() { fprintf(stderr, "bar2\n"); }
63 void bar3() { fprintf(stderr, "bar3\n"); }
static_tls.cc 19 fprintf(stderr, "before\n");
21 fprintf(stderr, "after\n");
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_test.c 62 fprintf(stderr, "40-bit simulation is not be supported on this platform\n");
70 fprintf(stderr,
72 fprintf(stderr,
75 fprintf(stderr,
77 fprintf(stderr,
79 fprintf(stderr,
81 fprintf(stderr,
83 fprintf(stderr,
85 fprintf(stderr,
87 fprintf(stderr,
    [all...]
  /external/vboot_reference/tests/
test_common.c 23 fprintf(stderr, "%s Test " COL_GREEN "PASSED\n" COL_STOP, testname);
26 fprintf(stderr, "%s Test " COL_RED "FAILED\n" COL_STOP, testname);
27 fprintf(stderr, " Expected: 0x%x (%d), got: 0x%x (%d)\n",
36 fprintf(stderr, "%s Test " COL_GREEN "PASSED\n" COL_STOP, testname);
39 fprintf(stderr, "%s Test " COL_RED "FAILED\n" COL_STOP, testname);
40 fprintf(stderr, " Didn't expect 0x%x (%d), but got it.\n",
50 fprintf(stderr, "%s Test " COL_GREEN "PASSED\n" COL_STOP, testname);
53 fprintf(stderr, "%s Test " COL_RED "FAILED\n" COL_STOP, testname);
54 fprintf(stderr, " Expected: 0x%lx, got: 0x%lx\n", (long)expected_result,
64 fprintf(stderr, "%s Test " COL_GREEN "PASSED\n" COL_STOP, testname)
    [all...]
  /external/iproute2/tc/
f_bpf.c 32 fprintf(stderr, "Usage: ... bpf ...\n");
33 fprintf(stderr, "\n");
34 fprintf(stderr, "BPF use case:\n");
35 fprintf(stderr, " bytecode BPF_BYTECODE\n");
36 fprintf(stderr, " bytecode-file FILE\n");
37 fprintf(stderr, "\n");
38 fprintf(stderr, "eBPF use case:\n");
39 fprintf(stderr, " object-file FILE [ section CLS_NAME ] [ export UDS_FILE ]");
40 fprintf(stderr, " [ verbose ] [ direct-action ]\n");
41 fprintf(stderr, " object-pinned FILE [ direct-action ]\n")
    [all...]
  /external/valgrind/coregrind/
vgdb.h 45 fprintf(stderr, "%ld.%6.6ld ", \
48 fprintf(stderr, __VA_ARGS__),fflush(stderr) \
53 fprintf(stderr, __VA_ARGS__),fflush(stderr) \
57 report the errno and fprintf the ... varargs on stderr. */
59 fprintf(stderr, __VA_ARGS__), \
60 fflush(stderr))
63 fprintf(stderr, __VA_ARGS__), \
64 fflush(stderr), \
    [all...]
  /external/chromium-trace/catapult/perf_insights/perf_insights/
cloud_storage.py 54 stderr=subprocess.PIPE)
55 _, stderr = gsutil.communicate()
58 if stderr.startswith((
62 if ('status=403' in stderr or 'status 403' in stderr or
63 '403 Forbidden' in stderr):
65 if (stderr.startswith('InvalidUriError') or 'No such object' in stderr or
66 'No URLs matched' in stderr or
67 'One or more URLs matched no' in stderr)
    [all...]
  /external/boringssl/src/crypto/
refcount_test.c 27 fprintf(stderr, "Incrementing reference count did not work.\n");
31 fprintf(stderr, "Decrementing reference count to zero did not work.\n");
38 fprintf(stderr, "Count did not saturate correctly when incrementing.\n");
43 fprintf(stderr, "Count did not saturate correctly when decrementing.\n");
49 fprintf(stderr, "Decrementing two resulted in zero!\n");
53 fprintf(stderr, "Decrementing two did not produce one!");
  /external/valgrind/memcheck/tests/
err_disable1.c 29 fprintf(stderr, "\n--------- SIMPLE TEST ---------\n\n");
30 fprintf(stderr, "\n--------- enabled (expect 1) ---------\n\n");
34 fprintf(stderr, "\n--------- disabled (expect 0) ---------\n\n");
39 fprintf(stderr, "\n--------- re-enabled (expect 1) ---------\n\n");
46 fprintf(stderr, "\n--------- MULTI-LEVEL TEST (expect 2) ---------\n\n");
72 fprintf(stderr, "\n--------- MULTI-LEVEL TEST end ---------\n\n");
  /external/compiler-rt/lib/builtins/
eprintf.c 32 fprintf(stderr, format, assertion_expression, line, file);
33 fflush(stderr);
  /external/compiler-rt/test/asan/TestCases/Windows/
coverage-basic.cc 9 void foo() { fprintf(stderr, "FOO\n"); }
10 void bar() { fprintf(stderr, "BAR\n"); }
  /external/compiler-rt/test/lsan/TestCases/
disabler.cc 16 fprintf(stderr, "Test alloc p: %p.\n", p);
20 fprintf(stderr, "Test alloc q: %p.\n", q);
suppressions_default.cc 17 fprintf(stderr, "Test alloc: %p.\n", p);
23 fprintf(stderr, "Test alloc: %p.\n", q);
suppressions_file.cc 19 fprintf(stderr, "Test alloc: %p.\n", p);
25 fprintf(stderr, "Test alloc: %p.\n", q);
  /external/valgrind/none/tests/
vgprintf.c 11 fprintf(stderr, "%d\n", x);
13 fprintf(stderr, "%d\n", x);
  /art/dexdump/
dexdump_main.cc 42 fprintf(stderr, "Copyright (C) 2007 The Android Open Source Project\n\n");
43 fprintf(stderr, "%s: [-c] [-d] [-e] [-f] [-h] [-i] [-l layout] [-o outfile]"
45 fprintf(stderr, "\n");
46 fprintf(stderr, " -c : verify checksum and exit\n");
47 fprintf(stderr, " -d : disassemble code sections\n");
48 fprintf(stderr, " -e : display exported items only\n");
49 fprintf(stderr, " -f : display summary information from file header\n");
50 fprintf(stderr, " -g : dump CFG for dex\n");
51 fprintf(stderr, " -h : display file header details\n");
52 fprintf(stderr, " -i : ignore checksum failures\n")
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gen/
verr.c 46 (void)fprintf(stderr, "%s: ", __progname);
48 (void)vfprintf(stderr, fmt, ap);
49 (void)fprintf(stderr, ": ");
51 (void)fprintf(stderr, "%s\n", strerror(sverrno));
vwarn.c 45 (void)fprintf(stderr, "%s: ", __progname);
47 (void)vfprintf(stderr, fmt, ap);
48 (void)fprintf(stderr, ": ");
50 (void)fprintf(stderr, "%s\n", strerror(sverrno));

Completed in 324 milliseconds

12 3 4 5 6 7 8 91011>>