Lines Matching refs:mExecution
367 int result = ANeuralNetworksExecution_create(compilation->getHandle(), &mExecution); in Execution()
373 ~Execution() { ANeuralNetworksExecution_free(mExecution); } in ~Execution()
387 ANeuralNetworksExecution_free(mExecution);
390 mExecution = other.mExecution;
391 other.mExecution = nullptr;
399 ANeuralNetworksExecution_setInput(mExecution, index, type, buffer, length));
412 mExecution, index, type, memory->get(), offset, length));
418 ANeuralNetworksExecution_setOutput(mExecution, index, type, buffer, length));
430 mExecution, index, type, memory->get(), offset, length));
434 return static_cast<Result>(ANeuralNetworksExecution_setLoopTimeout(mExecution, duration)); in setLoopTimeout()
440 ANeuralNetworksExecution_enableInputAndOutputPadding(mExecution, enable)); in enableInputAndOutputPadding()
449 NNAPI_CALL(ANeuralNetworksExecution_setReusable(mExecution, reusable))); in setReusable()
457 Result result = static_cast<Result>(ANeuralNetworksExecution_startCompute(mExecution, &ev)); in startCompute()
469 mExecution, deps.data(), deps.size(), duration, &ev)); in startComputeWithDependencies()
492 return static_cast<Result>(ANeuralNetworksExecution_compute(mExecution));
497 ANeuralNetworksExecution_startCompute(mExecution, &event));
515 ANeuralNetworksExecution_burstCompute(mExecution, burst));
523 mExecution, nullptr, 0, 0, &event));
538 ANeuralNetworksExecution_getOutputOperandRank(mExecution, index, &rank)); in getOutputOperandDimensions()
545 mExecution, index, dimensions->data())); in getOutputOperandDimensions()
549 ANeuralNetworksExecution* getHandle() { return mExecution; }; in getHandle()
553 ANeuralNetworksExecution* mExecution = nullptr; variable