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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_common.h
  421 template<class T> void Swap(T& a, T& b) {
  421 template<class T> void Swap(T& a, T& b) {
  422   T tmp = a;
  592 void Sort(T *v, uptr size, Compare comp = {}) {
projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
 1825   const ioctl_desc *desc = ioctl_lookup(request);
 1826   ioctl_desc decoded_desc;
projects/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc
   34 static ioctl_desc ioctl_table[ioctl_table_max];
  475   bool operator()(const ioctl_desc& left, const ioctl_desc& right) const {
  475   bool operator()(const ioctl_desc& left, const ioctl_desc& right) const {
  516 static const ioctl_desc *ioctl_table_lookup(unsigned req) {
  532 static bool ioctl_decode(unsigned req, ioctl_desc *desc) {
  542       desc->type = ioctl_desc::NONE;
  545       desc->type = ioctl_desc::READWRITE;
  548       desc->type = ioctl_desc::WRITE;
  551       desc->type = ioctl_desc::READ;
  563 static const ioctl_desc *ioctl_lookup(unsigned req) {
  565   const ioctl_desc *desc = ioctl_table_lookup(req);
  573       (desc->type == ioctl_desc::READWRITE || desc->type == ioctl_desc::WRITE ||
  573       (desc->type == ioctl_desc::READWRITE || desc->type == ioctl_desc::WRITE ||
  574        desc->type == ioctl_desc::READ))
  579 static void ioctl_common_pre(void *ctx, const ioctl_desc *desc, int d,
  581   if (desc->type == ioctl_desc::READ || desc->type == ioctl_desc::READWRITE) {
  581   if (desc->type == ioctl_desc::READ || desc->type == ioctl_desc::READWRITE) {
  585   if (desc->type != ioctl_desc::CUSTOM)
  594 static void ioctl_common_post(void *ctx, const ioctl_desc *desc, int res, int d,
  596   if (desc->type == ioctl_desc::WRITE || desc->type == ioctl_desc::READWRITE) {
  596   if (desc->type == ioctl_desc::WRITE || desc->type == ioctl_desc::READWRITE) {
  601   if (desc->type != ioctl_desc::CUSTOM)