Lines Matching defs:meth
34 register Codexmeth_t* meth;
44 return CODEXERROR->meth;
46 meth = codexstate.first;
47 while (meth)
49 if (!codexcmp(name, meth->name))
50 return meth;
51 last = meth;
52 if (!(meth = meth->next) && !plugin)
67 if ((lib = (Codexlib_f)dlllook(dll, "codex_lib")) && (meth = (*lib)(name)))
68 last->next = meth;
74 return meth;