Searched refs:output_file (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp102 InputFile *output_file = new (std::nothrow) InputFile(pOutputPath); local
104 if ((output_file == NULL) || output_file->hasError()) {
106 // output_file->getErrorMessage().c_str());
107 delete output_file;
112 // Acquire the read lock on output_file for reading its RS info file.
114 android::String8 info_path = RSInfo::GetPath(*output_file);
116 if (!output_file->lock()) {
119 output_file->getErrorMessage().c_str());
120 delete output_file;
243 OutputFile *output_file = new (std::nothrow) OutputFile(pOutputPath, flags); local
[all...]
/frameworks/compile/libbcc/tests/debuginfo/
H A Dtest_bcc_debuginfo.pl36 my $output_file = "$output_dir/$input_filename.gdb.output";
72 system("$debugger $debugger_options > $output_file 2>&1") ;
75 print("$debugger $debugger_options > $output_file 2>&1\n") ;
80 system("$filecheck_tool", "-input-file", "$output_file", "$testcase_file");
83 print("$debugger $debugger_options > $output_file 2>&1\n") ;
85 print "$filecheck_tool -input-file $output_file $testcase_file\n";
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp268 OutputFile output_file(pOutputPath, FileBase::kTruncate);
270 if (output_file.hasError()) {
272 << "'! (detail: " << output_file.getErrorMessage() << ")\n";
277 Compiler::ErrorCode result = pCompiler.compile(pScript, output_file);

Completed in 150 milliseconds