Searched defs:errno (Results 1 - 25 of 137) sorted by relevance

123456

/external/syslinux/core/
H A Derrno.c2 #include <errno.h>
4 __export int errno; variable
/external/syslinux/gpxe/src/core/
H A Derrno.c1 #include <errno.h>
7 * This file provides the global variable #errno.
18 int errno; variable
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/
H A Dfileutil.py5 import errno namespace
17 if e.errno != errno.EEXIST:
/external/avb/test/
H A Davbtool_signing_helper_test.py34 import errno namespace
40 return errno.EINVAL
45 return errno.EINVAL
49 return errno.EINVAL
54 return errno.EACCESS
/external/autotest/client/cros/
H A Drtc.py8 import errno, glob, os namespace
43 if errnum != errno.EBUSY:
/external/libpcap/Win32/Src/
H A Dinet_pton.c39 #include <errno.h>
43 #define EAFNOSUPPORT 97 /* not present in errno.h provided with VC */
49 #define errno (*_errno()) macro
60 errno = EAFNOSUPPORT;
/external/syslinux/gpxe/src/include/gpxe/
H A Derrortab.h15 int errno; member in struct:errortab
/external/autotest/client/site_tests/security_RuntimeExecStack/
H A Dsecurity_RuntimeExecStack.py10 import errno namespace
73 if e.errno == errno.ENOENT:
/external/autotest/server/site_tests/platform_HWwatchdog/
H A Dplatform_HWwatchdog.py11 # http://docs.python.org/2/library/errno.html
12 import errno namespace
30 (wd_dev, errno.errorcode[e.errno]))
/external/autotest/client/common_lib/
H A Dfile_utils.py5 import errno namespace
22 if e.errno != errno.ENOENT:
103 if e.errno != errno.EEXIST:
/external/autotest/client/cros/image_comparison/
H A Dpdiff_image_comparer.py5 import errno namespace
98 raise OSError(errno.ENOENT, "pdiff says: " + stdoutdata)
/external/autotest/client/site_tests/login_ChromeProfileSanitary/
H A Dlogin_ChromeProfileSanitary.py5 import errno, os, stat namespace
41 if e.errno == errno.ENOENT:
/external/autotest/client/site_tests/network_DefaultProfileCreation/
H A Dnetwork_DefaultProfileCreation.py5 import errno namespace
52 if e.errno != errno.ENOENT:
/external/autotest/client/site_tests/platform_Mosys/
H A Dplatform_Mosys.py5 import re, errno, logging, utils namespace
54 if rc and rc not in [errno.ENOSYS, errno.EINVAL]:
/external/autotest/client/site_tests/platform_Perf/
H A Dplatform_Perf.py4 import errno, os, re, subprocess namespace
124 if e.errno != errno.ENONENT: raise
/external/autotest/client/site_tests/power_NoConsoleSuspend/
H A Dpower_NoConsoleSuspend.py5 import logging, errno, shutil, os namespace
/external/autotest/client/site_tests/security_DeviceJail_Lockdown/
H A Dsecurity_DeviceJail_Lockdown.py5 import errno namespace
75 if e.errno != errno.EACCES:
/external/autotest/client/site_tests/video_VideoEncodeAccelerator/
H A Dvideo_VideoEncodeAccelerator.py5 import errno namespace
22 if e.errno != errno.ENOENT: # no such file
/external/autotest/server/cros/
H A Dwatchdog_tester.py7 # http://docs.python.org/2/library/errno.html
8 import errno namespace
56 (self.WD_DEV, errno.errorcode[e.errno]))
/external/chromium-trace/catapult/dependency_manager/dependency_manager/
H A Dcloud_storage_info.py5 import errno namespace
74 if e.errno != errno.EEXIST:
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
H A Ddevtools_http.py5 import errno namespace
92 if isinstance(e, socket.error) and e.errno == errno.ECONNREFUSED:
/external/ltp/testcases/misc/math/nextafter/
H A Dnextafter01.c37 #include <errno.h>
50 int errno; variable
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DUtil.py26 import errno namespace
39 if e.errno != errno.EEXIST:
/external/autotest/client/cros/networking/
H A Dshill_context.py7 import errno namespace
133 if e.errno == errno.ENOENT: # dangling link -> locker is gone
142 if e.errno != errno.EEXIST:
/external/autotest/client/site_tests/platform_CompressedSwap/
H A Dplatform_CompressedSwap.py7 import errno, logging, os, select, signal, subprocess, time namespace
142 if e.errno == errno.ESRCH:
148 os.strerror(e.errno)));

Completed in 797 milliseconds

123456