HomeSort by relevance Sort by last modified time
    Searched refs:rverrno (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.h 82 bool internal_iserror(uptr retval, int *rverrno = nullptr);
sanitizer_internal_defs.h 315 int rverrno; \
318 } while (internal_iserror(res, &rverrno) && rverrno == EINTR); \
sanitizer_posix_libcdep.cc 350 int rverrno; local
351 if (internal_iserror(pid, &rverrno)) {
352 Report("WARNING: failed to fork (errno %d)\n", rverrno);
sanitizer_linux.cc 506 int rverrno; local
507 CHECK_EQ(internal_iserror(rv, &rverrno), true);
508 Printf("execve failed, errno %d\n", rverrno);
    [all...]

Completed in 91 milliseconds