HomeSort by relevance Sort by last modified time
    Searched refs:onerror (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/syslinux/com32/elflink/ldlinux/
config.h 24 extern short onerrorlen; //bytes in onerror command
37 extern const char *onerror; //"onerror" command line
readconfig.c 75 short onerrorlen = 0; //bytes in onerror command
86 const char *onerror = NULL; //"onerror" command line variable
218 m->onerror = refstr_get(parent->onerror);
951 } else if (looking_at(p, "onerror")) {
952 refstr_put(m->onerror);
953 m->onerror = refstrdup(skipspace(p + 7));
954 onerrorlen = strlen(m->onerror);
955 refstr_put(onerror);
    [all...]
ldlinux.c 222 * If we fail to boot the kernel execute the "onerror" command
226 me = find_label(onerror);
230 rsprintf(&cmdline, "%s %s", onerror, default_cmd);
  /external/openssh/regress/unittests/sshkey/
test_fuzz.c 42 onerror(void *fuzz) function
66 TEST_ONERROR(onerror, fuzz);
88 TEST_ONERROR(onerror, fuzz);
117 TEST_ONERROR(onerror, fuzz);
138 TEST_ONERROR(onerror, fuzz);
159 TEST_ONERROR(onerror, fuzz);
179 TEST_ONERROR(onerror, fuzz);
199 TEST_ONERROR(onerror, fuzz);
219 TEST_ONERROR(onerror, fuzz);
240 TEST_ONERROR(onerror, fuzz)
    [all...]
  /external/boringssl/src/util/bot/go/
bootstrap.py 108 def onerror(func, path, _exc_info): function in function:remove_directory
114 shutil.rmtree(p, onerror=onerror if sys.platform == 'win32' else None)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
shutil.py 210 def rmtree(path, ignore_errors=False, onerror=None):
213 If ignore_errors is set, errors are ignored; otherwise, if onerror
218 is false and onerror is None, an exception is raised.
222 def onerror(*args): function in function:rmtree
224 elif onerror is None:
225 def onerror(*args): function in function:rmtree
232 onerror(os.path.islink, path, sys.exc_info())
233 # can't continue even if onerror hook returns
239 onerror(os.listdir, path, sys.exc_info())
247 rmtree(fullname, ignore_errors, onerror)
    [all...]
pkgutil.py 71 def walk_packages(path=None, prefix='', onerror=None):
85 'onerror' is a function which gets called with one argument (the
87 occurs while trying to import a package. If no onerror function is
112 if onerror is not None:
113 onerror(name)
115 if onerror is not None:
116 onerror(name)
125 for item in walk_packages(path, name+'.', onerror):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shutil.py 207 def rmtree(path, ignore_errors=False, onerror=None):
210 If ignore_errors is set, errors are ignored; otherwise, if onerror
215 is false and onerror is None, an exception is raised.
219 def onerror(*args): function in function:rmtree
221 elif onerror is None:
222 def onerror(*args): function in function:rmtree
229 onerror(os.path.islink, path, sys.exc_info())
230 # can't continue even if onerror hook returns
236 onerror(os.listdir, path, sys.exc_info())
244 rmtree(fullname, ignore_errors, onerror)
    [all...]
pkgutil.py 71 def walk_packages(path=None, prefix='', onerror=None):
85 'onerror' is a function which gets called with one argument (the
87 occurs while trying to import a package. If no onerror function is
112 if onerror is not None:
113 onerror(name)
115 if onerror is not None:
116 onerror(name)
125 for item in walk_packages(path, name+'.', onerror):
  /external/python/cpython2/Lib/
shutil.py 210 def rmtree(path, ignore_errors=False, onerror=None):
213 If ignore_errors is set, errors are ignored; otherwise, if onerror
218 is false and onerror is None, an exception is raised.
222 def onerror(*args): function in function:rmtree
224 elif onerror is None:
225 def onerror(*args): function in function:rmtree
232 onerror(os.path.islink, path, sys.exc_info())
233 # can't continue even if onerror hook returns
239 onerror(os.listdir, path, sys.exc_info())
247 rmtree(fullname, ignore_errors, onerror)
    [all...]
pkgutil.py 71 def walk_packages(path=None, prefix='', onerror=None):
85 'onerror' is a function which gets called with one argument (the
87 occurs while trying to import a package. If no onerror function is
112 if onerror is not None:
113 onerror(name)
115 if onerror is not None:
116 onerror(name)
125 for item in walk_packages(path, name+'.', onerror):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shutil.py 210 def rmtree(path, ignore_errors=False, onerror=None):
213 If ignore_errors is set, errors are ignored; otherwise, if onerror
218 is false and onerror is None, an exception is raised.
222 def onerror(*args): function in function:rmtree
224 elif onerror is None:
225 def onerror(*args): function in function:rmtree
232 onerror(os.path.islink, path, sys.exc_info())
233 # can't continue even if onerror hook returns
239 onerror(os.listdir, path, sys.exc_info())
247 rmtree(fullname, ignore_errors, onerror)
    [all...]
pkgutil.py 71 def walk_packages(path=None, prefix='', onerror=None):
85 'onerror' is a function which gets called with one argument (the
87 occurs while trying to import a package. If no onerror function is
112 if onerror is not None:
113 onerror(name)
115 if onerror is not None:
116 onerror(name)
125 for item in walk_packages(path, name+'.', onerror):
  /prebuilts/gdb/linux-x86/lib/python2.7/
shutil.py 210 def rmtree(path, ignore_errors=False, onerror=None):
213 If ignore_errors is set, errors are ignored; otherwise, if onerror
218 is false and onerror is None, an exception is raised.
222 def onerror(*args): function in function:rmtree
224 elif onerror is None:
225 def onerror(*args): function in function:rmtree
232 onerror(os.path.islink, path, sys.exc_info())
233 # can't continue even if onerror hook returns
239 onerror(os.listdir, path, sys.exc_info())
247 rmtree(fullname, ignore_errors, onerror)
    [all...]
pkgutil.py 71 def walk_packages(path=None, prefix='', onerror=None):
85 'onerror' is a function which gets called with one argument (the
87 occurs while trying to import a package. If no onerror function is
112 if onerror is not None:
113 onerror(name)
115 if onerror is not None:
116 onerror(name)
125 for item in walk_packages(path, name+'.', onerror):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 210 def rmtree(path, ignore_errors=False, onerror=None):
213 If ignore_errors is set, errors are ignored; otherwise, if onerror
218 is false and onerror is None, an exception is raised.
222 def onerror(*args): function in function:rmtree
224 elif onerror is None:
225 def onerror(*args): function in function:rmtree
232 onerror(os.path.islink, path, sys.exc_info())
233 # can't continue even if onerror hook returns
239 onerror(os.listdir, path, sys.exc_info())
247 rmtree(fullname, ignore_errors, onerror)
    [all...]
pkgutil.py 71 def walk_packages(path=None, prefix='', onerror=None):
85 'onerror' is a function which gets called with one argument (the
87 occurs while trying to import a package. If no onerror function is
112 if onerror is not None:
113 onerror(name)
115 if onerror is not None:
116 onerror(name)
125 for item in walk_packages(path, name+'.', onerror):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shutil.py 210 def rmtree(path, ignore_errors=False, onerror=None):
213 If ignore_errors is set, errors are ignored; otherwise, if onerror
218 is false and onerror is None, an exception is raised.
222 def onerror(*args): function in function:rmtree
224 elif onerror is None:
225 def onerror(*args): function in function:rmtree
232 onerror(os.path.islink, path, sys.exc_info())
233 # can't continue even if onerror hook returns
239 onerror(os.listdir, path, sys.exc_info())
247 rmtree(fullname, ignore_errors, onerror)
    [all...]
pkgutil.py 71 def walk_packages(path=None, prefix='', onerror=None):
85 'onerror' is a function which gets called with one argument (the
87 occurs while trying to import a package. If no onerror function is
112 if onerror is not None:
113 onerror(name)
115 if onerror is not None:
116 onerror(name)
125 for item in walk_packages(path, name+'.', onerror):
  /external/openssh/regress/unittests/sshbuf/
test_sshbuf_getput_fuzz.c 74 onerror(void *fuzz) function
123 TEST_ONERROR(onerror, fuzz);
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
dependency_manager_util.py 27 shutil.rmtree(dir_path, onerror=_WinReadOnlyHandler)
  /external/syslinux/com32/include/
menu.h 168 const char *onerror; member in struct:menu
  /external/syslinux/com32/menu/
readconfig.c 188 m->onerror = refstr_get(parent->onerror);
735 } else if (looking_at(p, "onerror")) {
736 refstr_put(m->onerror);
737 m->onerror = refstrdup(skipspace(p + 7));
1168 if (m->onerror)
1169 m->onerror = unlabel(m->onerror);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
os.py 223 def walk(top, topdown=True, onerror=None, followlinks=False):
253 optional arg 'onerror' is specified, it should be a function; it
292 if onerror is not None:
293 onerror(err)
308 for x in walk(new_path, topdown, onerror, followlinks):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
os.py 236 def walk(top, topdown=True, onerror=None, followlinks=False):
267 optional arg 'onerror' is specified, it should be a function; it
307 if onerror is not None:
308 onerror(err)
323 for x in walk(new_path, topdown, onerror, followlinks):

Completed in 1577 milliseconds

1 2 3