/external/openssh/ |
D | sftp-glob.c | 138 int (*errfunc)(const char *, int), glob_t *pglob) in remote_glob() 149 return(glob(pattern, flags | GLOB_ALTDIRFUNC, errfunc, pglob)); in remote_glob()
|
/external/lua/src/ |
D | ldo.c | 527 L->errfunc = ci->u.c.old_errfunc; /* with the same error function */ in finishCcall() 593 L->errfunc = ci->u.c.old_errfunc; in recover() 727 ptrdiff_t old_errfunc = L->errfunc; in luaD_pcall() 728 L->errfunc = ef; in luaD_pcall() 739 L->errfunc = old_errfunc; in luaD_pcall() 793 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); in luaD_protectedparser()
|
D | ldebug.c | 641 if (L->errfunc != 0) { /* is there an error handling function? */ in luaG_errormsg() 642 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg() local 644 setobjs2s(L, L->top - 1, errfunc); /* push function */ in luaG_errormsg()
|
D | lapi.c | 948 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, in lua_pcallk() argument 959 if (errfunc == 0) in lua_pcallk() 962 StkId o = index2addr(L, errfunc); in lua_pcallk() 963 api_checkstackindex(L, errfunc, o); in lua_pcallk() 977 ci->u.c.old_errfunc = L->errfunc; in lua_pcallk() 978 L->errfunc = func; in lua_pcallk() 983 L->errfunc = ci->u.c.old_errfunc; in lua_pcallk()
|
D | lstate.h | 194 ptrdiff_t errfunc; /* current error handling function (stack index) */ member
|
D | lstate.c | 238 L->errfunc = 0; in preinit_thread()
|
D | lua.h | 276 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
|
/external/openssh/openbsd-compat/ |
D | glob.c | 178 glob(const char *pattern, int flags, int (*errfunc)(const char *, int), in glob() 198 pglob->gl_errfunc = errfunc; in glob()
|
/external/python/cpython2/Lib/test/ |
D | test_itertools.py | 20 def errfunc(*args): function 783 self.assertRaises(ValueError, imap(errfunc, [4], [5]).next) 797 self.assertRaises(ValueError, starmap(errfunc, [(4,5)]).next) 872 self.assertRaises(ValueError, takewhile(errfunc, [(4,5)]).next) 886 self.assertRaises(ValueError, dropwhile(errfunc, [(4,5)]).next)
|
/external/python/cpython3/Lib/test/ |
D | test_itertools.py | 24 def errfunc(*args): function 1147 self.assertRaises(ValueError, next, map(errfunc, [4], [5])) 1174 self.assertRaises(ValueError, next, starmap(errfunc, [(4,5)])) 1292 self.assertRaises(ValueError, next, takewhile(errfunc, [(4,5)])) 1312 self.assertRaises(ValueError, next, dropwhile(errfunc, [(4,5)]))
|
/external/libxml2/ |
D | testrecurse.c | 73 ATTRIBUTE_UNUSED int errfunc(const char *epath, int eerrno), in glob()
|
D | runtest.c | 124 ATTRIBUTE_UNUSED int errfunc(const char *epath, int eerrno), in glob()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 1869 int (*errfunc)(const char *epath, int eerrno), 1872 COMMON_INTERCEPTOR_ENTER(ctx, glob, pattern, flags, errfunc, pglob); 1884 int res = REAL(glob)(pattern, flags, errfunc, pglob); 1898 int (*errfunc)(const char *epath, int eerrno), 1901 COMMON_INTERCEPTOR_ENTER(ctx, glob64, pattern, flags, errfunc, pglob); 1913 int res = REAL(glob64)(pattern, flags, errfunc, pglob);
|