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

1 2 34 5 6 7 8 91011>>

  /external/valgrind/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...]
sigprocmask.c 37 fprintf(stderr, "before\n");
39 fprintf(stderr, "%x ", x[i]);
41 fprintf(stderr, "\n");
45 fprintf(stderr, "after1\n");
47 fprintf(stderr, "%x ", x[i]);
49 fprintf(stderr, "\n");
53 fprintf(stderr, "after2\n");
55 fprintf(stderr, "%x ", x[i]);
57 fprintf(stderr, "\n");
61 fprintf(stderr, "__NR_sigprocmask not supported on this platform\n")
    [all...]
stpncpy.c 14 fprintf (stderr, "strlen: %zd\n", l); // strlen: 53
22 fprintf (stderr, "equal: %d\n", strcmp (a, b)); // equal: 0
23 fprintf (stderr, "retlen: %zd\n", c - b); // retlen: 53
24 fprintf (stderr, "last: '%c'\n", *(c - 1)); // last: '.'
25 fprintf (stderr, "zero0: %d\n", *c); // zero0: 0
26 fprintf (stderr, "zero1: %d\n", *(c + 1)); // zero1: 0
27 fprintf (stderr, "zero2: %d\n", *(c + 2)); // zero2: 0
32 fprintf (stderr, "equal: %d\n", strncmp (b, d, l - 1)); // equal: 0
33 fprintf (stderr, "retlen: %zd\n", e - d); // retlen: 52
34 fprintf (stderr, "last: '%c'\n", *(e - 1)); // last: 'r
    [all...]
  /frameworks/wilhelm/src/
sllog.h 87 #define SL_LOGE(...) do { fprintf(stderr, "SL_LOGE: %s:%s:%d ", __FILE__, __FUNCTION__, __LINE__); \
88 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
94 #define SL_LOGW(...) do { fprintf(stderr, "SL_LOGW: %s:%s:%d ", __FILE__, __FUNCTION__, __LINE__); \
95 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
101 #define SL_LOGI(...) do { fprintf(stderr, "SL_LOGI: %s:%s:%d ", __FILE__, __FUNCTION__, __LINE__); \
102 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
108 #define SL_LOGD(...) do { fprintf(stderr, "SL_LOGD: %s:%s:%d ", __FILE__, __FUNCTION__, __LINE__);
    [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/caliper/caliper/src/main/java/com/google/caliper/util/
OutputModule.java 25 * A module that binds {@link PrintWriter} instances for {@link Stdout} and {@link Stderr}.
34 private final PrintWriter stderr; field in class:OutputModule
36 public OutputModule(PrintWriter stdout, PrintWriter stderr) {
38 this.stderr = checkNotNull(stderr);
45 @Provides @Stderr PrintWriter provideStderr() {
46 return stderr;
  /external/valgrind/memcheck/tests/solaris/
strlcpy.c 13 fprintf(stderr, "Memory allocation failure.\n");
20 fprintf(stderr, "Memory allocation failure.\n");
27 fprintf(stderr, "Expected 10 but got %zu for test #1.\n", copied);
32 fprintf(stderr, "Expected 10 but got %zu for test #2.\n", copied);
38 fprintf(stderr, "Expected 10 but got %zu for test #3.\n", copied);
  /external/valgrind/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/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/autotest/client/deps/fakegudev/src/
fakesyscalls-exercise.c 24 fprintf (stderr, "Usage: %s <file_name> <redirected_file>\n", argv[0]);
30 fprintf (stderr, "Inconclusive: Could not open file to write.\n");
34 fprintf (stderr, "Inconclusive: Could not write to the file.\n");
39 fprintf (stderr, "Inconclusive: Error closing write file.\n");
46 fprintf (stderr, "Failed. Couldn't open file to read.\n");
49 fprintf (stderr, "Failed. Couldn't read back data.\n");
52 fprintf (stderr, "Failed. The read back string does not match the orignial."
  /external/compiler-rt/test/asan/TestCases/Windows/
throw_catch.cc 24 fprintf(stderr, "Throw: %p\n", &local);
34 fprintf(stderr, "Catch: %p\n", &local);
40 fprintf(stderr, "Before: %p poisoned: %d\n", &x,
45 fprintf(stderr, "Catch\n");
47 fprintf(stderr, "After: %p poisoned: %d\n", &x,
58 fprintf(stderr, "Before: %p poisoned: %d\n", &x,
62 fprintf(stderr, "After: %p poisoned: %d\n", &x,
  /external/compiler-rt/test/asan/TestCases/
throw_catch.cc 13 fprintf(stderr, "Throw: %p\n", &local);
23 fprintf(stderr, "Catch: %p\n", &local);
29 fprintf(stderr, "Before: %p poisoned: %d\n", &x,
33 fprintf(stderr, "After: %p poisoned: %d\n", &x,
44 fprintf(stderr, "Before: %p poisoned: %d\n", &x,
50 fprintf(stderr, "Catch\n");
52 fprintf(stderr, "After: %p poisoned: %d\n", &x,
  /external/iproute2/tc/
m_bpf.c 34 fprintf(stderr, "Usage: ... bpf ... [ index INDEX ]\n");
35 fprintf(stderr, "\n");
36 fprintf(stderr, "BPF use case:\n");
37 fprintf(stderr, " bytecode BPF_BYTECODE\n");
38 fprintf(stderr, " bytecode-file FILE\n");
39 fprintf(stderr, "\n");
40 fprintf(stderr, "eBPF use case:\n");
41 fprintf(stderr, " object-file FILE [ section ACT_NAME ] [ export UDS_FILE ]");
42 fprintf(stderr, " [ verbose ]\n");
43 fprintf(stderr, " object-pinned FILE\n")
    [all...]
m_estimator.c 31 fprintf(stderr, "Usage: ... estimator INTERVAL TIME-CONST\n");
32 fprintf(stderr, " INTERVAL is interval between measurements\n");
33 fprintf(stderr, " TIME-CONST is averaging time constant\n");
34 fprintf(stderr, "Example: ... est 1sec 8sec\n");
56 fprintf(stderr, "Error: estimator parameters are out of range.\n");
60 fprintf(stderr, "[estimator i=%u e=%u]\n", est->interval, est->ewma_log);
  /external/valgrind/drd/tests/
annotate_trace_memory.c 21 fprintf(stderr, "float\n");
24 fprintf(stderr, "double\n");
27 fprintf(stderr, "uint8_t\n");
30 fprintf(stderr, "uint16_t\n");
33 fprintf(stderr, "uint32_t\n");
36 fprintf(stderr, "uint64_t\n");
47 fprintf(stderr, "Done.\n");
local_static.cpp 21 fprintf(stderr, "%d\n", singleton.value);
22 fprintf(stderr, "%d\n", singleton.value);
23 fprintf(stderr, "%d\n", singleton.value);
24 fprintf(stderr, "%d\n", singleton.value);
25 fprintf(stderr, "%d\n", singleton.value);
38 fprintf(stderr, "Creation of thread %d failed\n",
49 fprintf(stderr, "Done.\n");
  /external/valgrind/helgrind/tests/
tc10_rec_lock.c 27 fprintf(stderr, "before lock #1\n");
29 fprintf(stderr, "before lock #2\n");
31 fprintf(stderr, "before lock #3\n");
34 fprintf(stderr, "before unlock #1\n");
36 fprintf(stderr, "before unlock #2\n");
38 fprintf(stderr, "before unlock #3\n");
41 fprintf(stderr, "before unlock #4\n");
  /external/autotest/client/tests/rtc/src/
rtctest.c 50 fprintf(stderr, "usage: rtctest [rtcdev] [maxfreq]\n");
61 fprintf(stderr, "\n\t\t\tRTC Driver Test Example.\n\n");
67 fprintf(stderr,
75 fprintf(stderr, "Counting 5 update (1/sec) interrupts from reading %s:",
77 fflush(stderr);
85 fprintf(stderr, " %d", i);
86 fflush(stderr);
90 fprintf(stderr, "\nAgain, from using select(2) on /dev/rtc:");
91 fflush(stderr);
110 fprintf(stderr, " %d", i)
    [all...]
  /external/valgrind/none/tests/
unit_debuglog.c 32 fprintf(stderr, "%s\tprintf = ", format);
33 n = vfprintf(stderr, format, vargs);
34 fprintf(stderr, "\twrote %3d chars\n", n);
40 fprintf(stderr, "%s\tdebuglog = ", format);
46 fprintf(stderr, "\twrote %3d chars\n", n);
53 fprintf(stderr, "...testing value 0\n");
62 fprintf(stderr, "\n");
63 fprintf(stderr, "...testing value 3.7 (with rounding)\n");
72 fprintf(stderr, "\n");
73 fprintf(stderr, "...testing value 123.01\n")
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r3xx_vertprog_dump.c 136 fprintf(stderr, " dst: %d%s op: ",
139 fprintf(stderr, "PRED %u",
144 fprintf(stderr, "PVS_MACRO_OP_2CLK_M2X_ADD\n");
146 fprintf(stderr, " PVS_MACRO_OP_2CLK_MADD\n");
149 fprintf(stderr, "%s\n", r300_vs_me_ops[op & 0x1f]);
151 fprintf(stderr, "%s\n", r300_vs_ve_ops[op & 0x1f]);
157 fprintf(stderr, " reg: %d%s swiz: %s%s/%s%s/%s%s/%s%s\n",
176 fprintf(stderr, "Final vertex program code:\n");
182 fprintf(stderr, "%d: op: 0x%08x", i, vs->body.d[offset]);
186 fprintf(stderr, " src%i: 0x%08x", src, vs->body.d[offset+1+src])
    [all...]
  /external/libgsm/src/
debug.c 29 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
31 fprintf(stderr, "%d ", ptr[ from ] );
35 if (from < to) putc('\n', stderr);
38 putc('\n', stderr);
49 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
52 fprintf(stderr, "%d ", ptr[ from ] );
56 if (from < to) putc('\n', stderr);
59 putc('\n', stderr);
66 fprintf(stderr, "%s: %d\n", name, (long)value );
73 fprintf(stderr, "%s: %d\n", name, (long)value)
    [all...]
  /external/google-breakpad/src/tools/linux/symupload/
minidump_upload.cc 91 fprintf(stderr, "Submit minidump information.\n");
92 fprintf(stderr, "Usage: %s [options...] -p <product> -v <version> <minidump> "
94 fprintf(stderr, "Options:\n");
95 fprintf(stderr, "<minidump> should be a minidump.\n");
96 fprintf(stderr, "<upload-URL> is the destination for the upload\n");
98 fprintf(stderr, "-p:\t <product> Product name\n");
99 fprintf(stderr, "-v:\t <version> Product version\n");
100 fprintf(stderr, "-x:\t <host[:port]> Use HTTP proxy on given port\n");
101 fprintf(stderr, "-u:\t <user[:password]> Set proxy user and password\n");
102 fprintf(stderr, "-h:\t Usage\n")
    [all...]
  /build/kati/
log.h 38 fprintf(stderr, "*kati*: %s\n", StringPrintf(args).c_str()); \
44 fprintf(stderr, "*kati*: %s\n", StringPrintf(args).c_str()); \
48 fprintf(stderr, "%s: %s\n", StringPrintf(__VA_ARGS__).c_str(), \
58 fprintf(stderr, "%s\n", StringPrintf(__VA_ARGS__).c_str()); \
63 fprintf(stderr, "%s\n", StringPrintf(__VA_ARGS__).c_str()); \
68 fprintf(stderr, "%s\n", StringPrintf(__VA_ARGS__).c_str()); \
  /external/compiler-rt/test/msan/
allocator_returns_null.cc 29 fprintf(stderr, "malloc:\n");
33 fprintf(stderr, "calloc:\n");
38 fprintf(stderr, "calloc-overflow:\n");
46 fprintf(stderr, "realloc:\n");
50 fprintf(stderr, "realloc-after-malloc:\n");
58 fprintf(stderr, "x: %lx\n", (long)x);
  /external/compiler-rt/test/tsan/
allocator_returns_null.cc 24 fprintf(stderr, "malloc:\n");
28 fprintf(stderr, "calloc:\n");
33 fprintf(stderr, "calloc-overflow:\n");
41 fprintf(stderr, "realloc:\n");
45 fprintf(stderr, "realloc-after-malloc:\n");
51 fprintf(stderr, "x: %p\n", x);

Completed in 697 milliseconds

1 2 34 5 6 7 8 91011>>