HomeSort by relevance Sort by last modified time
    Searched refs:fprintf (Results 101 - 125 of 2586) sorted by null

1 2 3 45 6 7 8 91011>>

  /sdk/emulator/opengl/shared/OpenglCodecCommon/
ErrorLog.h 29 # define ERR(...) fprintf(stderr, __VA_ARGS__)
31 # define DBG(...) fprintf(stderr, __VA_ARGS__)
  /system/core/toolbox/
rmdir.c 8 fprintf(stderr,"rmdir <directory>\n");
23 fprintf(stderr, "rmdir failed for %s, %s\n", argv[0], strerror(errno));
  /system/extras/ext4_utils/
setup_fs.c 28 fprintf(stderr,"not a block device name: %s\n", blockdev);
34 fprintf(stderr,"device %s already has a filesystem\n", blockdev);
40 fprintf(stderr,"device %s not wiped, probably encrypted, not wiping\n", blockdev);
44 fprintf(stderr,"+++\n");
48 fprintf(stderr,"error: setup_fs: fork failed\n");
58 fprintf(stderr, "error: setup_fs: waitpid failed!\n");
63 fprintf(stderr,"---\n");
80 fprintf(stderr,"REBOOT!\n");
  /system/extras/fatblock/
utils.c 35 fprintf(stderr, "%s", msg);
40 fprintf(stderr, "%s", msg);
  /system/extras/tests/bionic/libc/bionic/
test_getgrouplist.c 47 fprintf(stderr, "getgrouplist() returned %d (expecting 1), ngroups=%d\n",
52 fprintf(stderr, "getgrouplist() returned group %d (expecting %d)\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");
  /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",
  /bootable/recovery/updater/
updater.c 45 fprintf(stderr, "unexpected number of arguments (%d)\n", argc);
53 fprintf(stderr, "wrong updater binary API; expected 1, 2, or 3; "
72 fprintf(stderr, "failed to open package %s: %s\n",
79 fprintf(stderr, "failed to find %s in %s\n", SCRIPT_NAME, package_data);
85 fprintf(stderr, "failed to read script from package\n");
104 fprintf(stderr, "%d parse errors\n", error_count);
116 fprintf(stderr, "Warning: No file_contexts\n");
117 fprintf(cmd_pipe, "ui_print Warning: No file_contexts\n");
136 fprintf(stderr, "script aborted (no error message)\n");
137 fprintf(cmd_pipe, "ui_print script aborted (no error message)\n")
    [all...]
  /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/iproute2/tc/
q_red.c 30 fprintf(stderr, "Usage: ... red limit BYTES min BYTES max BYTES avpkt BYTES burst PACKETS\n");
31 fprintf(stderr, " probability PROBABILITY bandwidth KBPS [ ecn ]\n");
52 fprintf(stderr, "Illegal \"limit\"\n");
58 fprintf(stderr, "Illegal \"min\"\n");
64 fprintf(stderr, "Illegal \"max\"\n");
70 fprintf(stderr, "Illegal \"burst\"\n");
76 fprintf(stderr, "Illegal \"avpkt\"\n");
82 fprintf(stderr, "Illegal \"probability\"\n");
88 fprintf(stderr, "Illegal \"bandwidth\"\n");
97 fprintf(stderr, "What is \"%s\"?\n", *argv)
    [all...]
q_prio.c 28 fprintf(stderr, "Usage: ... prio bands NUMBER priomap P1 P2...[multiqueue]\n");
45 fprintf(stderr, "Illegal \"bands\"\n");
50 fprintf(stderr, "Error: duplicate priomap\n");
62 fprintf(stderr, "What is \"%s\"?\n", *argv);
67 fprintf(stderr, "Illegal \"priomap\" element\n");
71 fprintf(stderr, "\"priomap\" element is out of bands\n");
75 fprintf(stderr, "\"priomap\" index > TC_PRIO_MAX=%u\n", TC_PRIO_MAX);
109 fprintf(f, "bands %u priomap ", qopt->bands);
111 fprintf(f, " %d", qopt->priomap[i]);
114 fprintf(f, " multiqueue: %s "
    [all...]
q_rr.c 28 fprintf(stderr, "Usage: ... rr bands NUMBER priomap P1 P2... [multiqueue]\n");
46 fprintf(stderr, "Illegal \"bands\"\n");
51 fprintf(stderr, "Error: duplicate priomap\n");
63 fprintf(stderr, "What is \"%s\"?\n", *argv);
68 fprintf(stderr, "Illegal \"priomap\" element\n");
72 fprintf(stderr, "\"priomap\" element is out of bands\n");
76 fprintf(stderr, "\"priomap\" index > TC_RR_MAX=%u\n", TC_PRIO_MAX);
104 fprintf(f, "bands %u priomap ", qopt->bands);
106 fprintf(f, " %d", qopt->priomap[i]);
109 fprintf(f, " multiqueue: %s "
    [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/memcheck/tests/darwin/
scalar.h 20 fprintf(stderr, "-----------------------------------------------------\n" \
26 fprintf(stderr, "-----------------------------------------------------\n" \
44 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
48 fprintf(stderr, "Expected error %s (%d), got success\n", #E, E); \
60 fprintf(stderr, "Expected error %s (%d), got %d\n", #E, E, myerrno); \
  /external/valgrind/main/memcheck/tests/
sigkill.c 34 fprintf(stderr,"setting signal %d: ", i);
37 else fprintf(stderr,"Success\n");
38 fprintf(stderr,"getting signal %d: ", i);
41 else fprintf(stderr,"Success\n");
42 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...]
  /external/webkit/Tools/android/flex-2.5.4a/
main.c 387 fprintf( backing_up_file, _( "No backing up.\n" ) );
389 fprintf( backing_up_file,
393 fprintf( backing_up_file,
407 fprintf( stderr, _( "%s version %s usage statistics:\n" ),
410 fprintf( stderr, _( " scanner options: -" ) );
455 fprintf( stderr, " -C" );
471 fprintf( stderr, " -o%s", outfilename );
474 fprintf( stderr, " -S%s", skelname );
477 fprintf( stderr, " -P%s", prefix );
481 fprintf( stderr, _( " %d/%d NFA states\n" )
    [all...]
  /bionic/libc/bionic/
err.c 65 (void)fprintf(stderr, "%s: ", __progname);
68 (void)fprintf(stderr, ": ");
70 (void)fprintf(stderr, "%s\n", strerror(sverrno));
78 (void)fprintf(stderr, "%s: ", __progname);
81 (void)fprintf(stderr, "\n");
111 (void)fprintf(stderr, "%s: ", __progname);
114 (void)fprintf(stderr, ": ");
116 (void)fprintf(stderr, "%s\n", strerror(sverrno));
122 (void)fprintf(stderr, "%s: ", __progname);
125 (void)fprintf(stderr, "\n")
    [all...]
  /external/libpng/contrib/pngminus/
png2pnm.c 86 fprintf (stderr, "PNM2PNG\n");
87 fprintf (stderr, "Error: can not create alpha-channel file %s\n", argv[argi]);
97 fprintf (stderr, "PNG2PNM\n");
98 fprintf (stderr, "Error: unknown option %s\n", argv[argi]);
108 fprintf (stderr, "PNG2PNM\n");
109 fprintf (stderr, "Error: file %s does not exist\n", argv[argi]);
117 fprintf (stderr, "PNG2PNM\n");
118 fprintf (stderr, "Error: can not create file %s\n", argv[argi]);
124 fprintf (stderr, "PNG2PNM\n");
125 fprintf (stderr, "Error: too many parameters\n")
    [all...]
  /frameworks/base/tools/aapt/
Main.cpp 44 fprintf(stderr, "Android Asset Packaging Tool\n\n");
45 fprintf(stderr, "Usage:\n");
46 fprintf(stderr,
49 fprintf(stderr,
57 fprintf(stderr,
79 fprintf(stderr,
83 fprintf(stderr,
86 fprintf(stderr,
89 fprintf(stderr,
92 fprintf(stderr
    [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__); \
109 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0)
115 #define SL_LOGV(...) do { fprintf(stderr, "SL_LOGV: %s:%s:%d ", __FILE__, __FUNCTION__, __LINE__); \
116 fprintf(stderr, __VA_ARGS__); fputc('\n', stderr); } while(0
    [all...]
  /external/linux-tools-perf/util/scripting-engines/
trace-event-perl.c 416 fprintf(stderr, "couldn't open %s\n", fname);
420 fprintf(ofp, "# perf script event handlers, "
423 fprintf(ofp, "# Licensed under the terms of the GNU GPL"
426 fprintf(ofp, "# The common_* event handler fields are the most useful "
429 fprintf(ofp, "# all events. They don't necessarily correspond to "
432 fprintf(ofp, "# in the format files. Those fields not available as "
435 fprintf(ofp, "# be retrieved using Perl functions of the form "
438 fprintf(ofp, "# See Context.pm for the list of available "
441 fprintf(ofp, "use lib \"$ENV{'PERF_EXEC_PATH'}/scripts/perl/"
444 fprintf(ofp, "use lib \"./Perf-Trace-Util/lib\";\n")
    [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...]

Completed in 769 milliseconds

1 2 3 45 6 7 8 91011>>