Lines Matching refs:std
68 std::string libraryName;
69 std::vector<std::string> exportedSymbols;
103 // Given an RVA, parse it as a std::string. The resulting string is empty
105 auto nameRvaToName = [&](uint32_t rva) -> std::string {
110 std::transform(functionNameTable,
112 std::back_inserter(exportedSymbols),
138 std::cerr << "ERROR: Failed to load " << dllPath << std::endl;
149 std::cerr << buffer << std::endl;
157 std::cerr << "Usage: " << argv[0]
158 << " path\\to\\libnode.dll path\\to\\node.def" << std::endl;
163 auto defFile = std::ofstream(argv[2]);
164 defFile << "EXPORTS" << std::endl;
166 for (const std::string& functionName : libnode.exportedSymbols) {
176 std::cerr << "WARNING: " << functionName
178 << std::endl;
193 defFile << std::endl;