Home | History | Annotate | Download | only in src

Lines Matching defs:stat

310   int stat = ll_loadfunc(L, path, init);

311 if (stat == 0) /* no errors? */
316 lua_pushstring(L, (stat == ERRLIB) ? LIB_FAIL : "init");
398 static int checkload (lua_State *L, int stat, const char *filename) {
399 if (stat) { /* module loaded successfully? */
425 int stat;
428 stat = ll_loadfunc(L, filename, funcname);
429 if (stat != ERRFUNC) return stat;
449 int stat;
454 if ((stat = loadfunc(L, filename, name)) != 0) {
455 if (stat != ERRFUNC)