Home | History | Annotate | Download | only in vkjson

Lines Matching defs:output_file

40   std::string output_file;
67 options->output_file = arg2;
85 if (options->instance && options->output_file.empty()) {
90 if (!options->output_file.empty() && !options->instance &&
124 std::string output_file;
125 if (options.output_file.empty()) {
128 output_file.assign("/sdcard/Android/" + std::string(out_device->properties.deviceName));
130 output_file.assign(out_device->properties.deviceName);
132 output_file.append(".json");
134 output_file = options.output_file;
137 if (output_file == "-") {
140 file = fopen(output_file.c_str(), "w");
142 std::cerr << "Unable to open file " << output_file << "." << std::endl;
152 if (output_file != "-") {
154 std::cout << "Wrote file " << output_file;