Home | History | Annotate | Download | only in task

Lines Matching refs:builtIn

52 // Allocate Buffers and Values to pass to builtin functions
144 // run builtin function by searching BuiltinProcessing::BUINTIN_FN_TABLE
145 TaskGeneric::ExecutionResult TaskProcess::doRun(bool builtIn)
148 if (builtIn) {
168 // This is for passing to builtin fns. Just void pts will be cleared in exit
176 // Value is created here. Builtin function just need to set it.
178 // Buffer itself should be allocated by the builtin function itself.
181 if (!prepareParams(mInput, builtIn ? info->mInputTypes : NULL, inputs, inputValues,
186 if (!prepareParams(mOutput, builtIn ? info->mOutputTypes : NULL, outputs, outputValues,
192 if (builtIn) {
218 LOGE("cannot register / update %d-th output Buffer for builtin fn %s",
228 LOGE("cannot register / update %d-th output Value for builtin fn %s",
307 if (StringUtil::compare(tokens->at(0), "builtin") == 0) {