Lines Matching refs:mExecution
598 NNAPI_CALL(ANeuralNetworksExecution_create(compilation->getHandle(), &mExecution));
605 if (mExecution) {
606 NNAPI_CALL(ANeuralNetworksExecution_free(mExecution));
622 if (mExecution) {
623 NNAPI_CALL(ANeuralNetworksExecution_free(mExecution));
625 mExecution = other.mExecution;
626 other.mExecution = nullptr;
634 ANeuralNetworksExecution_setInput(mExecution, index, type, buffer, length)));
640 mExecution, index, type, memory->get(), offset, length)));
646 ANeuralNetworksExecution_setOutput(mExecution, index, type, buffer, length)));
652 mExecution, index, type, memory->get(), offset, length)));
658 ANeuralNetworksExecution_enableInputAndOutputPadding(mExecution, enable)));
667 NNAPI_CALL(ANeuralNetworksExecution_setReusable(mExecution, reusable)));
677 NNAPI_CALL(ANeuralNetworksExecution_startCompute(mExecution, &ev)));
690 mExecution, deps.data(), deps.size(), duration, &ev)));
697 return static_cast<Result>(NNAPI_CALL(ANeuralNetworksExecution_compute(mExecution)));
703 ANeuralNetworksExecution_getOutputOperandRank(mExecution, index, &rank)));
710 mExecution, index, dimensions->data())));
718 ANeuralNetworksExecution* mExecution = nullptr; variable