HomeSort by relevance Sort by last modified time
    Searched full:stderr (Results 1 - 25 of 2500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clearsilver/util/test/
date_test.c 18 fprintf(stderr, "Starting...\n");
19 fprintf(stderr, "TZ is %s\n", getenv("TZ"));
20 fprintf(stderr, "TZ Offset is %ld\n", timezone);
24 fprintf(stderr, "US/Eastern Test\n");
27 fprintf(stderr, "TZ is %s\n", getenv("TZ"));
28 fprintf(stderr, "TZ Offset is %ld\n", timezone);
29 fprintf(stderr, "TZ Offset is %ld\n", neo_tz_offset(&ttm));
30 fprintf(stderr, "From tm: %s %ld\n", ttm.tm_zone, ttm.tm_gmtoff);
32 fprintf(stderr, "Time is %s\n", buf);
34 fprintf(stderr, "GMT Test\n")
    [all...]
  /build/tools/fs_get_stats/
fs_get_stats.c 12 fprintf(stderr, "%s:%d: ERROR: " fmt, \
18 do { fprintf(stderr, "DEBUG: " fmt, ##args); } while(0)
26 fprintf(stderr, "fs_get_stats: retrieve the target file stats "
28 fprintf(stderr, "usage: fs_get_stats cur_perms is_dir filename\n");
29 fprintf(stderr, "\tcur_perms - The current permissions of "
31 fprintf(stderr, "\tis_dir - Is filename is a dir, 1. Otherwise, 0.\n");
32 fprintf(stderr, "\tfilename - The filename to lookup\n");
33 fprintf(stderr, "\n");
  /system/core/toolbox/
setprop.c 8 fprintf(stderr,"usage: setprop <key> <value>\n");
13 fprintf(stderr,"could not set property\n");
mkdir.c 8 fprintf(stderr,"mkdir <target>\n");
23 fprintf(stderr, "mkdir failed for %s, %s\n", argv[0], strerror(errno));
rmdir.c 8 fprintf(stderr,"rmdir <directory>\n");
23 fprintf(stderr, "rmdir failed for %s, %s\n", argv[0], strerror(errno));
ionice.c 17 fprintf(stderr, "usage: ionice <pid> [none|rt|be|idle] [prio]\n");
22 fprintf(stderr, "Invalid pid specified\n");
28 fprintf(stderr, "Failed to read priority (%s)\n", strerror(errno));
44 fprintf(stderr, "Unsupported class '%s'\n", argv[2]);
52 fprintf(stderr, "Failed to set priority (%s)\n", strerror(errno));
chmod.c 16 fprintf(stderr, "Usage: chmod <MODE> <FILE>\n");
27 fprintf(stderr, "Bad mode\n");
34 fprintf(stderr, "Unable to chmod %s: %s\n", argv[i], strerror(errno));
reboot.c 31 fprintf(stderr, "usage: %s [-n] [-p] [rebootcommand]\n", argv[0]);
37 fprintf(stderr, "%s: too many arguments\n", argv[0]);
54 fprintf(stderr, "reboot returned\n");
  /system/extras/tests/bionic/libc/glibc/assert/
test-assert.c 52 fclose (stderr);
53 stderr = tmpfile ();
54 if(!stderr)
74 rewind (stderr);
75 fgets (buf, 160, stderr);
79 fgets (buf, 160, stderr);
83 fgets (buf, 160, stderr);
  /external/webkit/WebKitTools/android/flex-2.5.4a/
yylex.c 68 fprintf( stderr, "%d\t", num_rules + 1 );
94 (void) putc( toktype, stderr );
98 (void) putc( '\n', stderr );
106 fputs( "%s", stderr );
110 fputs( "%x", stderr );
114 fputs( "%%\n", stderr );
126 fprintf( stderr, "'%s'", nmstr );
152 fprintf( stderr, "\\%c",
159 fprintf( stderr,
164 stderr );
    [all...]
  /bionic/libstdc++/src/
pure_virtual.cpp 7 fprintf(stderr, "Pure virtual function called. Are you calling virtual methods from a destructor?\n");
  /frameworks/base/tools/localize/
test.cpp 25 fprintf(stderr, "some tests failed\n");
27 fprintf(stderr, "all tests passed\n");
  /system/extras/tests/bionic/libc/other/
test_system.c 16 fprintf(stderr, "Error calling system(): %d\n", errno);
23 fprintf(stderr, "Command returned non-zero exit code: %d\n",
  /external/bison/src/
complain.c 52 location_print (stderr, loc);
53 fputs (": ", stderr);
54 fputs (_("warning: "), stderr);
57 vfprintf (stderr, message, args);
61 putc ('\n', stderr);
69 fprintf (stderr, "%s: %s", current_file ? current_file : program_name, _("warning: "));
72 vfprintf (stderr, message, args);
76 putc ('\n', stderr);
89 location_print (stderr, loc);
90 fputs (": ", stderr);
    [all...]
  /external/icu4c/tools/genrb/
errmsg.c 28 fprintf(stderr, "%s:%u: ", gCurrentFileName, (int)linenumber);
29 vfprintf(stderr, msg, va);
30 fprintf(stderr, "\n");
66 fprintf(stderr, "%s:%u: warning: ", gCurrentFileName, (int)linenumber);
67 vfprintf(stderr, msg, va);
68 fprintf(stderr, "\n");
  /external/dropbear/libtomcrypt/testprof/
katja_test.c 16 fprintf(stderr, "katja_test requires SHA1 and yarrow");
26 fprintf(stderr, "katja_%d key modulus has %d bits\n", size, mp_count_bits(key.N));
30 fprintf(stderr, "N == \n");
32 fprintf(stderr, "%02x ", tmp[cnt]);
33 if (!(++cnt & 15)) fprintf(stderr, "\n");
38 fprintf(stderr, "p == \n");
40 fprintf(stderr, "%02x ", tmp[cnt]);
41 if (!(++cnt & 15)) fprintf(stderr, "\n");
46 fprintf(stderr, "\nq == \n");
48 fprintf(stderr, "%02x ", tmp[cnt])
    [all...]
  /bionic/libc/bionic/
err.c 65 (void)fprintf(stderr, "%s: ", __progname);
67 (void)vfprintf(stderr, fmt, ap);
68 (void)fprintf(stderr, ": ");
70 (void)fprintf(stderr, "%s\n", strerror(sverrno));
78 (void)fprintf(stderr, "%s: ", __progname);
80 (void)vfprintf(stderr, fmt, ap);
81 (void)fprintf(stderr, "\n");
111 (void)fprintf(stderr, "%s: ", __progname);
113 (void)vfprintf(stderr, fmt, ap);
114 (void)fprintf(stderr, ": ")
    [all...]
  /external/e2fsprogs/lib/et/
com_err.c 29 fputs(whoami, stderr);
30 fputs(": ", stderr);
33 fputs(error_message(code), stderr); local
34 fputs(" ", stderr);
37 vfprintf (stderr, fmt, args);
40 fputs("\r\n", stderr);
41 fflush(stderr);
  /external/icu4c/test/threadtest/
converttest.cpp 35 fprintf(stderr, "ConvertTest - could not ucnv_open(\"gb18030\")\n");
55 fprintf(stderr, "ucnv_open(\"shift_jis\") failed.\n");
63 fprintf(stderr, "ucnv_safeClone() failed.\n");
75 // fprintf(stderr, "ucnv_cleanup() failed - cache was not empty.\n");
79 fprintf(stderr, "ConvertTest::check() - could not redo ucnv_open(\"gb18030\")\n");
  /external/bluetooth/bluez/test/
agent.c 64 fprintf(stderr,
70 fprintf(stderr, "Agent has been terminated\n");
89 fprintf(stderr, "Invalid arguments for RequestPinCode method");
101 fprintf(stderr, "Can't create reply message\n");
134 fprintf(stderr, "Invalid arguments for RequestPasskey method");
146 fprintf(stderr, "Can't create reply message\n");
173 fprintf(stderr, "Invalid arguments for passkey Confirm method");
181 fprintf(stderr, "Can't create reply message\n");
200 fprintf(stderr, "Invalid arguments for Release method");
205 fprintf(stderr, "Agent has been released\n")
    [all...]
  /external/openssl/crypto/evp/
evp_test.c 87 fprintf(stderr,"Odd number of hex digits!");
156 fprintf(stderr,"Key length doesn't match, got %d expected %d\n",kn,
165 fprintf(stderr,"EncryptInit failed\n");
166 ERR_print_errors_fp(stderr);
173 fprintf(stderr,"Encrypt failed\n");
174 ERR_print_errors_fp(stderr);
179 fprintf(stderr,"EncryptFinal failed\n");
180 ERR_print_errors_fp(stderr);
186 fprintf(stderr,"Ciphertext length mismatch got %d expected %d\n",
193 fprintf(stderr,"Ciphertext mismatch\n")
    [all...]
  /external/clearsilver/man/man3/
filter_create_fp.3 39 err -> pointer to return the stderr pipe, or NULL if you don't
41 want the stderr pipe
52 err -> the stderr FILE of the sub process
  /external/iproute2/tc/
f_basic.c 30 fprintf(stderr, "Usage: ... basic [ match EMATCH_TREE ] [ police POLICE_SPEC ]\n");
31 fprintf(stderr, " [ action ACTION_SPEC ] [ classid CLASSID ]\n");
32 fprintf(stderr, "\n");
33 fprintf(stderr, "Where: SELECTOR := SAMPLE SAMPLE ...\n");
34 fprintf(stderr, " FILTERID := X:Y:Z\n");
35 fprintf(stderr, "\nNOTE: CLASSID is parsed as hexadecimal input.\n");
51 fprintf(stderr, "Illegal handle \"%s\", must be numeric.\n",
66 fprintf(stderr, "Illegal \"ematch\"\n");
75 fprintf(stderr, "Illegal \"classid\"\n");
82 fprintf(stderr, "Illegal \"action\"\n")
    [all...]
  /frameworks/base/tools/aidl/
options.cpp 11 fprintf(stderr,
64 fprintf(stderr, "-I option (%d) requires a path.\n", i);
72 fprintf(stderr, "-d option (%d) requires a file.\n", i);
80 fprintf(stderr, "-p option (%d) requires a file.\n", i);
88 fprintf(stderr, "-o option (%d) requires a path.\n", i);
97 fprintf(stderr, "unknown option (%d): %s\n", i, s);
102 fprintf(stderr, "unknown option (%d): %s\n", i, s);
117 fprintf(stderr, "INPUT required\n");
132 fprintf(stderr, "INPUT is not an .aidl file.\n");
139 fprintf(stderr, "unknown option%s:", (i==argc-1?(const char*)"":(const char*)"s"))
    [all...]
  /system/core/adb/
console.c 13 fprintf(stderr, "error: more than one emulator detected. use -s option\n");
15 fprintf(stderr, "error: no emulator detected\n");
20 fprintf(stderr, "error: could not connect to TCP port %d\n", port);

Completed in 3672 milliseconds

1 2 3 4 5 6 7 8 91011>>