Lines Matching refs:result
151 std::string result(mode);
152 size_t comma_pos = result.find(',');
153 result.insert(comma_pos == std::string::npos ? result.length() : comma_pos, 1,
155 return result;
518 FILE* result = nullptr;
528 result = fopen(filename.value().c_str(), the_mode);
529 } while (!result && errno == EINTR);
532 if (result)
533 SetCloseOnExec(fileno(result));
535 return result;