Home
last modified time | relevance | path

Searched refs:dlret (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/cxx_api/model/
Dmodel_impl.cc52 Status dlret = DLSoPath(&dataengine_so_path); in Preprocess() local
53 …CHECK_FAIL_AND_RELEASE(dlret, nullptr, "Parse dataengine_so failed: " + dlret.GetErrDescription()); in Preprocess()
63 dlret = DLSoOpen(dataengine_so_path, "ExecuteRun_C", &handle, &function); in Preprocess()
64 CHECK_FAIL_AND_RELEASE(dlret, handle, "Parse ExecuteRun_C failed: " + dlret.GetErrDescription()); in Preprocess()
69 ExecuteRun(preprocessor, inputs, outputs, &dlret); in Preprocess()
70 CHECK_FAIL_AND_RELEASE(dlret, handle, "Run preprocess failed: " + dlret.GetErrDescription()); in Preprocess()
/third_party/mindspore/mindspore/ccsrc/cxx_api/
Dserialization.cc200 Status dlret = DLSoPath(&dataengine_so_path); in Load() local
201 …CHECK_FAIL_AND_RELEASE(dlret, nullptr, "Parse dataengine_so failed: " + dlret.GetErrDescription()); in Load()
205 dlret = DLSoOpen(dataengine_so_path, "ParseMindIRPreprocess_C", &handle, &function); in Load()
206 …CHECK_FAIL_AND_RELEASE(dlret, handle, "Parse ParseMindIRPreprocess_C failed: " + dlret.GetErrDescr… in Load()
213 ParseMindIRPreprocessFun(preprocessor, "image", &data_graph, &dlret); in Load()
214 CHECK_FAIL_AND_RELEASE(dlret, handle, "Load preprocess failed: " + dlret.GetErrDescription()); in Load()
281 Status dlret = DLSoPath(&dataengine_so_path); in Load() local
282 …CHECK_FAIL_AND_RELEASE(dlret, nullptr, "Parse dataengine_so failed: " + dlret.GetErrDescription()); in Load()
286 dlret = DLSoOpen(dataengine_so_path, "ParseMindIRPreprocess_C", &handle, &function); in Load()
287 …CHECK_FAIL_AND_RELEASE(dlret, handle, "Parse ParseMindIRPreprocess_C failed: " + dlret.GetErrDescr… in Load()
[all …]
/third_party/openssl/crypto/dso/
Ddso_dlfcn.c170 void *dlret; in dlfcn_bind_func() member
186 u.dlret = dlsym(ptr, symname); in dlfcn_bind_func()
187 if (u.dlret == NULL) { in dlfcn_bind_func()