Home | History | Annotate | Download | only in Renderscript

Lines Matching defs:output_file

102   InputFile *output_file = new (std::nothrow) InputFile(pOutputPath);
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;
130 // Release the lock on output_file.
131 output_file->unlock();
134 delete output_file;
141 result = RSExecutable::Create(*info, *output_file, mResolver);
143 delete output_file;
243 OutputFile *output_file = new (std::nothrow) OutputFile(pOutputPath, flags);
245 if ((output_file == NULL) || output_file->hasError()) {
247 output_file->getErrorMessage().c_str());
249 delete output_file;
261 delete output_file;
273 delete output_file;
281 Compiler::ErrorCode compile_result = mCompiler.compile(pScript, *output_file);
286 delete output_file;
299 result = RSExecutable::Create(*info, *output_file, mResolver);
302 delete output_file;