Lines Matching refs:mt
97 Meth_t *list, *mt;
141 if(!(mt = (Meth_t*)malloc(sizeof(Meth_t)+strlen(args))) )
143 mt->vcmt = vcmt;
144 strcpy(mt->args,args);
146 mt->next = list; list = mt;
150 for(mt = list; mt; mt = mt->next)
151 { if(!(coder = vcopen(0, mt->vcmt, (Void_t*)mt->args, vc, type|VC_CLOSECODER)) )
159 done: for(; list; list = mt)
160 { mt = list->next;