Lines Matching refs:mExecution
296 int result = ANeuralNetworksExecution_create(compilation->getHandle(), &mExecution);
302 ~Execution() { ANeuralNetworksExecution_free(mExecution); }
316 ANeuralNetworksExecution_free(mExecution);
317 mExecution = other.mExecution;
318 other.mExecution = nullptr;
326 ANeuralNetworksExecution_setInput(mExecution, index, type, buffer, length));
332 mExecution, index, type, memory->get(), offset, length));
338 ANeuralNetworksExecution_setOutput(mExecution, index, type, buffer, length));
344 mExecution, index, type, memory->get(), offset, length));
349 Result result = static_cast<Result>(ANeuralNetworksExecution_startCompute(mExecution, &ev));
357 static_cast<Result>(ANeuralNetworksExecution_startCompute(mExecution, &event));
369 ANeuralNetworksExecution* mExecution = nullptr;