Lines Matching refs:common
116 picoos_emRaiseException(this->common->em,status,NULL,(picoos_char*)"problem (re-)initializing the engine");
274 picodata_disposeProcessingUnit(this->common->mm,&ctrl->procUnit[i]);
275 picodata_disposeCharBuffer(this->common->mm, &ctrl->procCbOut[i]);
278 picoos_deallocate(this->common->mm, (void *) &this->subObj);
325 ctrl->procCbOut[newPU] = picodata_newCharBuffer(this->common->mm,
326 this->common,bufSize);
339 ctrl->procUnit[newPU] = picotok_newTokenizeUnit(this->common->mm,
340 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
344 ctrl->procUnit[newPU] = picopr_newPreprocUnit(this->common->mm,
345 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
349 ctrl->procUnit[newPU] = picowa_newWordAnaUnit(this->common->mm,
350 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
354 ctrl->procUnit[newPU] = picosa_newSentAnaUnit(this->common->mm,
355 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
359 ctrl->procUnit[newPU] = picoacph_newAccPhrUnit(this->common->mm,
360 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
364 ctrl->procUnit[newPU] = picospho_newSentPhoUnit(this->common->mm,
365 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
369 ctrl->procUnit[newPU] = picopam_newPamUnit(this->common->mm,
370 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
374 ctrl->procUnit[newPU] = picocep_newCepUnit(this->common->mm,
375 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
380 ctrl->procUnit[newPU] = picosink_newSinkUnit(this->common->mm,
381 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
386 ctrl->procUnit[newPU] = picosig_newSigUnit(this->common->mm,
387 this->common, cbIn, ctrl->procCbOut[newPU], this->voice);
391 this->common->mm, this->common, cbIn,
396 picodata_disposeCharBuffer(this->common->mm,&ctrl->procCbOut[newPU]);
410 * @param common : the common object
421 picoos_Common common, picodata_CharBuffer cbIn,
425 picodata_ProcessingUnit this = picodata_newProcessingUnit(mm, common, cbIn,
469 picoctrl_disposeControl(this->common->mm,&this);
501 picoos_Common common;
531 picoos_emReset(this->common->em);
544 picoos_emRaiseException(this->common->em,status,NULL,(picoos_char*) "problem resetting engine");
591 this->common = NULL;
609 this->common = picoos_newCommon(engMM);
611 done = (NULL != this->common) && (NULL != engEM);
614 this->common->mm = engMM;
615 this->common->em = engEM;
622 this->cbIn = picodata_newCharBuffer(this->common->mm,
623 this->common, bSize);
626 this->cbOut = picodata_newCharBuffer(this->common->mm,
627 this->common, bSize);
632 this->control = picoctrl_newControl(this->common->mm, this->common,
671 picoctrl_disposeControl((*this)->common->mm,&((*this)->control));
692 picoos_emReset(this->common->em);
696 * returns the engine common pointer
699 * @return the engine common pointer
708 return this->common;