Lines Matching refs:mExecution
369 int result = ANeuralNetworksExecution_create(compilation->getHandle(), &mExecution); in Execution()
375 ~Execution() { ANeuralNetworksExecution_free(mExecution); } in ~Execution()
389 ANeuralNetworksExecution_free(mExecution);
392 mExecution = other.mExecution;
393 other.mExecution = nullptr;
401 ANeuralNetworksExecution_setInput(mExecution, index, type, buffer, length));
414 mExecution, index, type, memory->get(), offset, length));
420 ANeuralNetworksExecution_setOutput(mExecution, index, type, buffer, length));
432 mExecution, index, type, memory->get(), offset, length));
436 return static_cast<Result>(ANeuralNetworksExecution_setLoopTimeout(mExecution, duration)); in setLoopTimeout()
442 ANeuralNetworksExecution_enableInputAndOutputPadding(mExecution, enable)); in enableInputAndOutputPadding()
451 NNAPI_CALL(ANeuralNetworksExecution_setReusable(mExecution, reusable))); in setReusable()
459 Result result = static_cast<Result>(ANeuralNetworksExecution_startCompute(mExecution, &ev)); in startCompute()
471 mExecution, deps.data(), deps.size(), duration, &ev)); in startComputeWithDependencies()
494 return static_cast<Result>(ANeuralNetworksExecution_compute(mExecution));
499 ANeuralNetworksExecution_startCompute(mExecution, &event));
517 ANeuralNetworksExecution_burstCompute(mExecution, burst));
525 mExecution, nullptr, 0, 0, &event));
540 ANeuralNetworksExecution_getOutputOperandRank(mExecution, index, &rank)); in getOutputOperandDimensions()
547 mExecution, index, dimensions->data())); in getOutputOperandDimensions()
551 ANeuralNetworksExecution* getHandle() { return mExecution; }; in getHandle()
555 ANeuralNetworksExecution* mExecution = nullptr; variable