Lines Matching refs:pOutput
139 inline bool helper_write_list(OutputFile &pOutput,
154 if (pOutput.write(&item, sizeof(item)) != sizeof(item)) {
156 rsinfo::GetItemTypeName<ItemType>(), pOutput.getName().c_str(),
157 pOutput.getErrorMessage().c_str());
167 bool RSInfo::write(OutputFile &pOutput) {
168 off_t initial_offset = pOutput.tell();
169 const char *output_filename = pOutput.getName().c_str();
171 if (pOutput.hasError()) {
173 output_filename, pOutput.getErrorMessage().c_str());
183 if (pOutput.write(&mHeader, sizeof(mHeader)) != sizeof(mHeader)) {
185 output_filename, pOutput.getErrorMessage().c_str());
190 if (static_cast<size_t>(pOutput.write(mStringPool, mHeader.strPoolSize))
193 output_filename, pOutput.getErrorMessage().c_str());
199 (pOutput, *this, mHeader.dependencyTable, mDependencyTable)) {
205 (pOutput, *this, mHeader.pragmaList, mPragmas)) {
211 (pOutput, *this, mHeader.objectSlotList, mObjectSlots)) {
217 (pOutput, *this, mHeader.exportVarNameList, mExportVarNames)) {
223 (pOutput, *this, mHeader.exportFuncNameList, mExportFuncNames)) {
229 (pOutput, *this, mHeader.exportForeachFuncList, mExportForeachFuncs)) {