reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/scudo/standalone/flags_parser.cpp
  112   if (strncmp(Value, "0", 1) == 0 || strncmp(Value, "no", 2) == 0 ||
  112   if (strncmp(Value, "0", 1) == 0 || strncmp(Value, "no", 2) == 0 ||
  113       strncmp(Value, "false", 5) == 0) {
  117   if (strncmp(Value, "1", 1) == 0 || strncmp(Value, "yes", 3) == 0 ||
  117   if (strncmp(Value, "1", 1) == 0 || strncmp(Value, "yes", 3) == 0 ||
  118       strncmp(Value, "true", 4) == 0) {
  128     if (strncmp(Name, Flags[I].Name, Len) != 0 || Name[Len] != '=')