Lines Matching refs:ret
30 const auto ret = callback->notify(convertToV1_0(status), preparedModel); in notify() local
31 if (!ret.isOk()) { in notify()
32 LOG(ERROR) << "Error when calling IPreparedModelCallback::notify: " << ret.description(); in notify()
38 const auto ret = callback->notify_1_2(convertToV1_0(status), preparedModel); in notify() local
39 if (!ret.isOk()) { in notify()
41 << ret.description(); in notify()
47 const auto ret = callback->notify_1_3(status, preparedModel); in notify() local
48 if (!ret.isOk()) { in notify()
50 << ret.description(); in notify()
56 const auto ret = callback->notify(convertToV1_0(status)); in notify() local
57 if (!ret.isOk()) { in notify()
58 LOG(ERROR) << "Error when calling IExecutionCallback::notify: " << ret.description(); in notify()
64 const auto ret = callback->notify_1_2(convertToV1_0(status), outputShapes, timing); in notify() local
65 if (!ret.isOk()) { in notify()
66 LOG(ERROR) << "Error when calling IExecutionCallback::notify_1_2: " << ret.description(); in notify()
72 const auto ret = callback->notify_1_3(status, outputShapes, timing); in notify() local
73 if (!ret.isOk()) { in notify()
74 LOG(ERROR) << "Error when calling IExecutionCallback::notify_1_3" << ret.description(); in notify()