Searched refs:errfunc (Results 1 – 9 of 9) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/glob/ |
A D | glob-susv3.c | 39 extern int __glob_match_in_dir(const char *d, const char *p, int flags, int (*errfunc)(const char *… 96 int __glob_match_in_dir(const char *d, const char *p, int flags, int (*errfunc)(const char *path, i… in __glob_match_in_dir() 131 if (errfunc(d, error) || (flags & GLOB_ERR)) in __glob_match_in_dir() 156 if ((error = __glob_match_in_dir(name, p2, flags, errfunc, tail))) { in __glob_match_in_dir() 178 if (error && (errfunc(d, error) || (flags & GLOB_ERR))) in __glob_match_in_dir() 213 int glob(const char *pat, int flags, int (*errfunc)(const char *path, int err), glob_t *g) in glob() 228 if (!errfunc) errfunc = __glob_ignore_err; in glob() 236 if (*p) error = __glob_match_in_dir(d, p, flags, errfunc, &tail); in glob()
|
A D | glob64-susv3.c | 14 #define glob(pattern, flags, errfunc, pglob) \ argument 15 glob64 (pattern, flags, errfunc, pglob)
|
A D | glob.c | 48 #define glob(pattern, flags, errfunc, pglob) glob64 (pattern, flags, errfunc, pglob) argument 257 int (*errfunc) (const char *, int), in glob_in_dir() 326 && ((errfunc != NULL && (*errfunc) (directory, errno)) in glob_in_dir() 483 int (*errfunc) (const char *, int), in glob() 552 return glob (pattern, flags & ~GLOB_BRACE, errfunc, pglob); in glob() 563 return glob (pattern, flags & ~GLOB_BRACE, errfunc, pglob); in glob() 595 | GLOB_APPEND), errfunc, pglob); in glob() 670 int val = glob (dirname, flags | GLOB_MARK, errfunc, pglob); in glob() 895 errfunc, &dirs); in glob() 910 errfunc, pglob); in glob() [all …]
|
/l4re-core-master/lua/lib/contrib/src/ |
A D | ldebug.c | 766 if (L->errfunc != 0) { /* is there an error handling function? */ in luaG_errormsg() 767 StkId errfunc = restorestack(L, L->errfunc); in luaG_errormsg() local 768 lua_assert(ttisfunction(s2v(errfunc))); in luaG_errormsg() 770 setobjs2s(L, L->top - 1, errfunc); /* push function */ in luaG_errormsg()
|
A D | ldo.c | 629 L->errfunc = ci->u.c.old_errfunc; in finishpcallk() 890 ptrdiff_t old_errfunc = L->errfunc; in luaD_pcall() 891 L->errfunc = ef; in luaD_pcall() 900 L->errfunc = old_errfunc; in luaD_pcall() 954 status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc); in luaD_protectedparser()
|
A D | lapi.c | 1036 LUA_API int lua_pcallk (lua_State *L, int nargs, int nresults, int errfunc, in lua_pcallk() argument 1047 if (errfunc == 0) in lua_pcallk() 1050 StkId o = index2stack(L, errfunc); in lua_pcallk() 1065 ci->u.c.old_errfunc = L->errfunc; in lua_pcallk() 1066 L->errfunc = func; in lua_pcallk() 1071 L->errfunc = ci->u.c.old_errfunc; in lua_pcallk()
|
A D | lstate.h | 321 ptrdiff_t errfunc; /* current error handling function (stack index) */ member
|
A D | lstate.c | 264 L->errfunc = 0; in preinit_thread()
|
A D | lua.h | 285 LUA_API int (lua_pcallk) (lua_State *L, int nargs, int nresults, int errfunc,
|
Completed in 21 milliseconds