Lines Matching refs:c_str
150 long long_value = strtol(value.c_str(), &end, 10); in ParseValue()
152 error_log("%s: bad value for option '%s': %s", getprogname(), option.c_str(), strerror(errno)); in ParseValue()
155 if (end == value.c_str()) { in ParseValue()
156 error_log("%s: bad value for option '%s'", getprogname(), option.c_str()); in ParseValue()
159 if (static_cast<size_t>(end - value.c_str()) != value.size()) { in ParseValue()
161 option.c_str(), end); in ParseValue()
166 option.c_str(), long_value); in ParseValue()
172 option.c_str(), min_value, long_value); in ParseValue()
177 option.c_str(), max_value, long_value); in ParseValue()
321 option.c_str()); in VerifyValueEmpty()
391 error_log("%s: unknown option %s", getprogname(), option.c_str()); in Init()