Lines Matching full: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;
143 RSExecutable *result = RSExecutable::Create(*info, *object_file, mResolver);
145 delete object_file;