HomeSort by relevance Sort by last modified time
    Searched refs:onerror (Results 1 - 25 of 62) 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/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):
os.py 209 def walk(top, topdown=True, onerror=None, followlinks=False):
239 optional arg 'onerror' is specified, it should be a function; it
278 if onerror is not None:
279 onerror(err)
294 for x in walk(new_path, topdown, onerror, followlinks):
  /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/python/cpython3/Lib/
os.py 277 def walk(top, topdown=True, onerror=None, followlinks=False):
308 optional arg 'onerror' is specified, it should be a function; it
350 if onerror is not None:
351 onerror(error)
362 if onerror is not None:
363 onerror(error)
409 yield from walk(new_path, topdown, onerror, followlinks)
413 yield from walk(new_path, topdown, onerror, followlinks)
421 def fwalk(top=".", topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None):
463 yield from _fwalk(topfd, top, topdown, onerror, follow_symlinks
    [all...]
pkgutil.py 53 def walk_packages(path=None, prefix='', onerror=None):
67 'onerror' is a function which gets called with one argument (the
69 occurs while trying to import a package. If no onerror function is
94 if onerror is not None:
95 onerror(info.name)
97 if onerror is not None:
98 onerror(info.name)
107 yield from walk_packages(path, info.name+'.', onerror)
  /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 2441 milliseconds

1 2 3