Lines Matching refs:LUA_OK
122 if (status != LUA_OK) { in report()
196 if (status == LUA_OK) status = docall(L, 0, 0); in dochunk()
226 if (status == LUA_OK) in dolibrary()
254 if (status == LUA_OK) { in handle_script()
353 if (status != LUA_OK) return 0; in runargs()
372 if (init == NULL) return LUA_OK; in handle_luainit()
525 if (status == LUA_OK) { in addreturn()
566 if ((status = addreturn(L)) != LUA_OK) /* 'return ...' did not work? */ in loadline()
583 if (lua_pcall(L, n, 0, 0) != LUA_OK) in l_print()
600 if (status == LUA_OK) in doREPL()
602 if (status == LUA_OK) l_print(L); in doREPL()
639 if (handle_luainit(L) != LUA_OK) /* run LUA_INIT */ in pmain()
645 if (handle_script(L, argv + script) != LUA_OK) in pmain()
677 return (result && status == LUA_OK) ? EXIT_SUCCESS : EXIT_FAILURE; in main()