Home | History | Annotate | Download | only in Renderscript

Lines Matching refs:object_file

104   InputFile *object_file = new (std::nothrow) InputFile(output_path.c_str());
106 if ((object_file == NULL) || object_file->hasError()) {
108 // object_file->getErrorMessage().c_str());
109 delete object_file;
114 // Acquire the read lock on object_file for reading its RS info file.
118 if (!object_file->lock()) {
121 object_file->getErrorMessage().c_str());
122 delete object_file;
132 // Release the lock on object_file.
133 object_file->unlock();
136 delete object_file;
155 delete object_file;
163 RSExecutable *executable = RSExecutable::Create(*info, *object_file, pResolver);
165 delete object_file;