HomeSort by relevance Sort by last modified time
    Searched defs:errno (Results 51 - 75 of 276) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gyp/test/toplevel-dir/
gyptest-toplevel-dir.py 14 import errno namespace
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
gypd.py 35 import errno namespace
  /external/chromium_org/tools/python/google/
path_utils.py 10 import errno namespace
82 # errno.EEXIST is "File exists". If we see another error, re-raise.
83 if e.errno != errno.EEXIST:
process_utils.py 6 import errno namespace
76 if e.errno == errno.ENOENT:
179 if e.errno == errno.ENOENT:
  /external/dropbear/libtomcrypt/demos/
hashsum.c 12 int errno; variable
54 if ((errno = hash_file(idx,argv[z],hash_buffer,&w)) != CRYPT_OK) {
55 printf("File hash error: %s\n", error_to_string(errno));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
errno.h 25 # include <linux/errno.h>
42 /* Function to get address of global `errno' variable. */
46 /* When using threads, errno is a per-thread value. */
47 # define errno (*__errno_location ()) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
errno.h 25 # include <linux/errno.h>
42 /* Function to get address of global `errno' variable. */
46 /* When using threads, errno is a per-thread value. */
47 # define errno (*__errno_location ()) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
errno.h 25 # include <linux/errno.h>
42 /* Function to get address of global `errno' variable. */
46 /* When using threads, errno is a per-thread value. */
47 # define errno (*__errno_location ()) macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 1 import unittest, os, errno namespace
24 self.assertEqual(get_errno(), errno.ENOENT)
26 self.assertEqual(set_errno(32), errno.ENOENT)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
stones.py 1 import errno namespace
22 if e.errno != errno.EPIPE:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_errno.py 2 """Test the errno module
6 import errno namespace
17 self.assertTrue(hasattr(errno, error_code),
18 "errno is missing %s" % error_code)
21 # Every key value in errno.errorcode should be on the module.
22 for value in errno.errorcode.itervalues():
23 self.assertTrue(hasattr(errno, value), 'no %s attr in errno' % value)
29 for attribute in errno.__dict__.iterkeys():
31 self.assertIn(getattr(errno, attribute), errno.errorcode
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 1 import unittest, os, errno namespace
24 self.assertEqual(get_errno(), errno.ENOENT)
26 self.assertEqual(set_errno(32), errno.ENOENT)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stones.py 1 import errno namespace
22 if e.errno != errno.EPIPE:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_errno.py 2 """Test the errno module
6 import errno namespace
17 self.assertTrue(hasattr(errno, error_code),
18 "errno is missing %s" % error_code)
21 # Every key value in errno.errorcode should be on the module.
22 for value in errno.errorcode.itervalues():
23 self.assertTrue(hasattr(errno, value), 'no %s attr in errno' % value)
29 for attribute in errno.__dict__.iterkeys():
31 self.assertIn(getattr(errno, attribute), errno.errorcode
    [all...]
  /external/chromium-trace/
systrace-legacy.py 13 import errno, optparse, os, select, subprocess, sys, time, zlib namespace
  /external/chromium-trace/trace-viewer/build/
generate_about_tracing_contents.py 6 import errno namespace
  /external/chromium_org/chrome/tools/
inconsistent-eol.py 19 import errno namespace
83 if e.errno != errno.ENOENT:
  /external/chromium_org/content/browser/tracing/
generate_trace_viewer_grd.py 11 import errno namespace
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
sdk_update_common.py 7 import errno namespace
94 if err.errno != errno.EACCES:
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
action_derivedsourcesallinone.py 44 import errno namespace
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_devtools_grd.py 35 import errno namespace
101 if e.errno != errno.EEXIST:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_finder.py 29 import errno namespace
78 if e.errno == errno.ENOENT:
  /external/llvm/utils/lit/lit/
Util.py 26 import errno namespace
40 if e.errno != errno.EEXIST:
  /libcore/luni/src/main/java/libcore/io/
ErrnoException.java 24 * errno value, for comparison against the constants in {@link OsConstants}, should sophisticated
29 public final int errno; field in class:ErrnoException
31 public ErrnoException(String functionName, int errno) {
33 this.errno = errno;
36 public ErrnoException(String functionName, int errno, Throwable cause) {
39 this.errno = errno;
43 * Converts the stashed function name and errno value to a human-readable string.
48 String errnoName = OsConstants.errnoName(errno);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 31 import errno namespace
120 raise IOError(errno.EINVAL,

Completed in 819 milliseconds

1 23 4 5 6 7 8 91011>>