Searched defs:output_name (Results 1 - 14 of 14) sorted by relevance

/external/blktrace/btt/
H A Dargs.c267 static FILE *std_open(char *output_name, char *sfx, char *msg) argument
270 char fname[strlen(output_name) + 32];
272 sprintf(fname, "%s.%s", output_name, sfx);
331 output_name = optarg;
399 if (output_name == NULL) {
403 rngs_ofp = std_open(output_name, "dat", "range data");
404 avgs_ofp = std_open(output_name, "avg", "stats data");
405 msgs_ofp = std_open(output_name, "msg", "K messages");
407 xavgs_ofp = std_open(output_name, "xvg",
H A Dbt_timeline.c30 char *devices, *exes, *input_name, *output_name, *seek_name, *bno_dump_name; variable
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-inject.c421 const char *output_name = "-"; local
427 OPT_STRING('o', "output", &output_name, "file",
449 if (!strcmp(output_name, "-")) {
453 inject.output = open(output_name, O_CREAT | O_WRONLY | O_TRUNC,
H A Dbuiltin-record.c68 const char *output_name; member in struct:perf_record
358 const char *output_name = rec->output_name; local
372 if (!output_name) {
376 rec->output_name = output_name = "perf.data";
378 if (output_name) {
379 if (!strcmp(output_name, "-"))
381 else if (!stat(output_name, &st) && st.st_size) {
384 output_name);
[all...]
H A Dbuiltin-stat.c1399 const char *output_name = NULL; local
1438 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1473 if (output_name && strcmp(output_name, "-"))
1476 if (output_name && output_fd) {
1490 output = fopen(output_name, mode);
H A Dbuiltin-timechart.c973 static int __cmd_timechart(const char *output_name) argument
1017 write_svg_file(output_name);
1020 (last_time - first_time) / 1000000000.0, output_name);
1086 const char *output_name = "output.svg"; local
1089 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1116 return __cmd_timechart(output_name);
H A Dbuiltin-trace.c1207 const char *output_name = NULL; local
1212 OPT_STRING('o', "output", &output_name, "file", "output file name"),
1240 if (output_name != NULL) {
1241 err = trace__open_output(&trace, output_name);
1289 if (output_name != NULL)
/external/lldb/scripts/Python/
H A Dmodify-python-lldb.py27 output_name = "./lldb.py" variable
29 output_name = sys.argv[1] + "/lldb.py" variable
31 # print "output_name is '" + output_name + "'"
290 with open(output_name, 'r') as f_in:
434 with open(output_name, 'w') as f_out:
/external/llvm/tools/gold/
H A Dgold-plugin.cpp71 static std::string output_name = ""; variable
155 output_name = tv->tv_u.tv_string;
448 path = output_name;
452 path = output_name + ".bc";
/external/chromium_org/net/http/
H A Dmock_gssapi_library_posix.cc263 gss_name_t* output_name) {
266 if (!output_name)
281 *output_name = reinterpret_cast<gss_name_t>(output);
259 import_name( OM_uint32* minor_status, const gss_buffer_t input_name_buffer, const gss_OID input_name_type, gss_name_t* output_name) argument
H A Dhttp_auth_gssapi_posix.cc509 gss_name_t* output_name) {
512 output_name);
505 import_name( OM_uint32* minor_status, const gss_buffer_t input_name_buffer, const gss_OID input_name_type, gss_name_t* output_name) argument
/external/chromium_org/tools/gn/
H A Dtarget.h69 const std::string& output_name() const { return output_name_; } function in class:Target
72 // Returns the output name for this target, which is the output_name if
/external/blktrace/
H A Dblkparse.c262 static char *output_name; variable
2742 output_name = optarg;
2819 if (!output_name) {
2825 snprintf(ofname, sizeof(ofname) - 1, "%s", output_name);
H A Dblktrace.c285 static char *output_name; variable
1504 if (output_name)
1506 output_name, cpu);
2068 output_name = optarg;
2155 else if (output_name && (strcmp(output_name, "-") == 0)) {
2651 if (output_name) {
2653 output_name = NULL;

Completed in 8735 milliseconds