HomeSort by relevance Sort by last modified time
    Searched defs:Errno (Results 1 - 3 of 3) sorted by null

  /external/lldb/examples/interposing/darwin/fd_interposing/
FDInterposing.cpp 51 #include <errno.h>
260 // Templatized class that will save errno only if the "value" it is
262 // scope, it will restore errno if it was saved.
265 class Errno
268 // Save errno only if we are supposed to
269 Errno (int value) :
270 m_saved_errno ((value == INVALID) ? errno : 0),
275 // Restore errno only if we are supposed to
276 ~Errno()
279 errno = m_saved_errno
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_syscall.c 42 ** test_syscall errno CALL ERRNO
43 ** Set the value that the global "errno" is set to following a fault
45 ** listed above (under [test_syscall install]). ERRNO is a symbolic
46 ** name (i.e. "EACCES"). Not all errno codes are supported. Add extra
85 #include <errno.h>
115 int default_errno; /* Default value for errno following errors */
116 int custom_errno; /* Current value for errno if error */
174 ** Usually, the current error-number is the value that errno should be set
193 ** value of errno before returning
    [all...]
  /external/e2fsprogs/lib/ext2fs/
nt_io.c 181 #include <errno.h>
258 // This is a code to convert Win32 errors to unix errno
819 OUT unsigned *Errno OPTIONAL
831 if(ARGUMENT_PRESENT(Errno))
832 *Errno = ENOENT;
857 if(ARGUMENT_PRESENT(Errno))
858 *Errno = ENOENT;
873 if(ARGUMENT_PRESENT(Errno))
874 *Errno = _MapNtStatus(Status);
884 // Raw block io. Sets dos errno
    [all...]

Completed in 191 milliseconds