Lines Matching refs:errorCode
70 PrebuiltComputepipeRunner_ErrorCode errorCode = in handleConfigPhase() local
72 if (errorCode != PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in handleConfigPhase()
73 return static_cast<Status>(static_cast<int>(errorCode)); in handleConfigPhase()
82 PrebuiltComputepipeRunner_ErrorCode errorCode = in handleConfigPhase() local
84 if (errorCode != PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in handleConfigPhase()
85 return static_cast<Status>(static_cast<int>(errorCode)); in handleConfigPhase()
93 errorCode = streamCallbackFn(LocalPrebuiltGraph::OutputStreamCallbackFunction); in handleConfigPhase()
94 if (errorCode != PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in handleConfigPhase()
95 return static_cast<Status>(static_cast<int>(errorCode)); in handleConfigPhase()
102 errorCode = terminationCallback(LocalPrebuiltGraph::GraphTerminationCallbackFunction); in handleConfigPhase()
103 if (errorCode != PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in handleConfigPhase()
104 return static_cast<Status>(static_cast<int>(errorCode)); in handleConfigPhase()
125 PrebuiltComputepipeRunner_ErrorCode errorCode = mappedFn(reinterpret_cast<void*>(this)); in handleExecutionPhase() local
126 if (errorCode == PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in handleExecutionPhase()
129 return static_cast<Status>(static_cast<int>(errorCode)); in handleExecutionPhase()
268 PrebuiltComputepipeRunner_ErrorCode errorCode = mappedFn(); in GetStatus() local
269 return static_cast<Status>(static_cast<int>(errorCode)); in GetStatus()
280 PrebuiltComputepipeRunner_ErrorCode errorCode = mappedFn(nullptr, 0, &errorMessageSize); in GetErrorMessage() local
283 errorCode = mappedFn(&errorMessage[0], errorMessage.size(), &errorMessageSize); in GetErrorMessage()
284 if (errorCode != PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in GetErrorMessage()
299 PrebuiltComputepipeRunner_ErrorCode errorCode = in SetInputStreamData() local
303 return static_cast<Status>(static_cast<int>(errorCode)); in SetInputStreamData()
316 PrebuiltComputepipeRunner_ErrorCode errorCode = in SetInputStreamPixelData() local
322 return static_cast<Status>(static_cast<int>(errorCode)); in SetInputStreamPixelData()
327 PrebuiltComputepipeRunner_ErrorCode errorCode = mappedFn(flushOutputFrames); in StopGraphExecution() local
328 if (errorCode == PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in StopGraphExecution()
332 return static_cast<Status>(static_cast<int>(errorCode)); in StopGraphExecution()
337 PrebuiltComputepipeRunner_ErrorCode errorCode = mappedFn(); in StartGraphProfiling() local
338 return static_cast<Status>(static_cast<int>(errorCode)); in StartGraphProfiling()
343 PrebuiltComputepipeRunner_ErrorCode errorCode = mappedFn(); in StopGraphProfiling() local
344 return static_cast<Status>(static_cast<int>(errorCode)); in StopGraphProfiling()
355 PrebuiltComputepipeRunner_ErrorCode errorCode = mappedFn(nullptr, 0, &debugInfoSize); in GetDebugInfo() local
358 errorCode = mappedFn(&debugInfo[0], debugInfo.size(), &debugInfoSize); in GetDebugInfo()
359 if (errorCode != PrebuiltComputepipeRunner_ErrorCode::SUCCESS) { in GetDebugInfo()