Lines Matching refs:mExecution
585 NNAPI_CALL(ANeuralNetworksExecution_create(compilation->getHandle(), &mExecution));
592 if (mExecution) {
593 NNAPI_CALL(ANeuralNetworksExecution_free(mExecution));
609 if (mExecution) {
610 NNAPI_CALL(ANeuralNetworksExecution_free(mExecution));
612 mExecution = other.mExecution;
613 other.mExecution = nullptr;
621 ANeuralNetworksExecution_setInput(mExecution, index, type, buffer, length)));
627 mExecution, index, type, memory->get(), offset, length)));
633 ANeuralNetworksExecution_setOutput(mExecution, index, type, buffer, length)));
639 mExecution, index, type, memory->get(), offset, length)));
645 ANeuralNetworksExecution_enableInputAndOutputPadding(mExecution, enable)));
654 NNAPI_CALL(ANeuralNetworksExecution_setReusable(mExecution, reusable)));
664 NNAPI_CALL(ANeuralNetworksExecution_startCompute(mExecution, &ev)));
677 mExecution, deps.data(), deps.size(), duration, &ev)));
684 return static_cast<Result>(NNAPI_CALL(ANeuralNetworksExecution_compute(mExecution)));
690 ANeuralNetworksExecution_getOutputOperandRank(mExecution, index, &rank)));
697 mExecution, index, dimensions->data())));
705 ANeuralNetworksExecution* mExecution = nullptr; variable