/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
H A D | neural_network_runtime_compat.cpp | 45 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetInput(OH_NNExecutor *executor, in OH_NNExecutor_SetInput() argument 48 if (executor == nullptr) { in OH_NNExecutor_SetInput() 49 LOGE("OH_NNExecutor_SetInput failed, executor is nullptr."); in OH_NNExecutor_SetInput() 65 NNExecutor *executorImpl = reinterpret_cast<NNExecutor *>(executor); in OH_NNExecutor_SetInput() 69 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetOutput(OH_NNExecutor *executor, in OH_NNExecutor_SetOutput() argument 72 if (executor == nullptr) { in OH_NNExecutor_SetOutput() 73 LOGE("OH_NNExecutor_SetOutput failed, passed nullptr to executor."); in OH_NNExecutor_SetOutput() 85 NNExecutor *executorImpl = reinterpret_cast<NNExecutor *>(executor); in OH_NNExecutor_SetOutput() 89 NNRT_API OH_NN_ReturnCode OH_NNExecutor_Run(OH_NNExecutor *executor) in OH_NNExecutor_Run() argument 91 if (executor in OH_NNExecutor_Run() 100 OH_NNExecutor_AllocateInputMemory(OH_NNExecutor *executor, uint32_t inputIndex, size_t length) OH_NNExecutor_AllocateInputMemory() argument 122 OH_NNExecutor_AllocateOutputMemory(OH_NNExecutor *executor, uint32_t outputIndex, size_t length) OH_NNExecutor_AllocateOutputMemory() argument 144 OH_NNExecutor_DestroyInputMemory(OH_NNExecutor *executor, uint32_t inputIndex, OH_NN_Memory **memory) OH_NNExecutor_DestroyInputMemory() argument 169 OH_NNExecutor_DestroyOutputMemory(OH_NNExecutor *executor, uint32_t outputIndex, OH_NN_Memory **memory) OH_NNExecutor_DestroyOutputMemory() argument 194 OH_NNExecutor_SetInputWithMemory(OH_NNExecutor *executor, uint32_t inputIndex, const OH_NN_Tensor *tensor, const OH_NN_Memory *memory) OH_NNExecutor_SetInputWithMemory() argument 214 OH_NNExecutor_SetOutputWithMemory(OH_NNExecutor *executor, uint32_t outputIndex, const OH_NN_Memory *memory) OH_NNExecutor_SetOutputWithMemory() argument [all...] |
/foundation/communication/dsoftbus/core/connection/wifi_direct_cpp/ |
H A D | wifi_direct_scheduler.cpp | 38 std::shared_ptr<WifiDirectExecutor> executor; in ConnectDevice() local 40 auto ret = ScheduleActiveCommand(command, executor); in ConnectDevice() 42 if (executor != nullptr) { in ConnectDevice() 44 executor->SendEvent(command); in ConnectDevice() 78 std::shared_ptr<WifiDirectExecutor> executor; in DisconnectDevice() local 80 auto ret = ScheduleActiveCommand(command, executor); in DisconnectDevice() 82 if (executor != nullptr) { in DisconnectDevice() 84 executor->SendEvent(command); in DisconnectDevice() 98 std::shared_ptr<WifiDirectExecutor> executor; in ForceDisconnectDevice() local 100 auto ret = ScheduleActiveCommand(command, executor); in ForceDisconnectDevice() 110 ProcessNextCommand(WifiDirectExecutor *executor, std::shared_ptr<WifiDirectProcessor> &processor) ProcessNextCommand() argument 159 ScheduleActiveCommand(const std::shared_ptr<WifiDirectCommand> &command, std::shared_ptr<WifiDirectExecutor> &executor) ScheduleActiveCommand() argument [all...] |
H A D | wifi_direct_executor_factory.h | 39 std::shared_ptr<WifiDirectExecutor> executor = (executorGenerator_ == nullptr) ? in NewExecutor() local 42 executor->Start(); in NewExecutor() 43 return executor; in NewExecutor()
|
/foundation/ai/neural_network_runtime/example/deep_learning_framework/tflite/nnrt/ |
H A D | nnrt_implementation.h | 63 OH_NN_ReturnCode (*OH_NNExecutor_SetInput)(OH_NNExecutor* executor, uint32_t inputIndex, 65 OH_NN_ReturnCode (*OH_NNExecutor_SetOutput)(const OH_NNExecutor* executor, uint32_t outputIndex, void* buffer, 67 OH_NN_ReturnCode (*OH_NNExecutor_GetOutputShape)(const OH_NNExecutor* executor, uint32_t outputIndex, 69 OH_NN_ReturnCode (*OH_NNExecutor_Run)(OH_NNExecutor* executor); 70 OH_NN_Memory* (*OH_NNExecutor_AllocateInputMemory)(OH_NNExecutor* executor, uint32_t inputIndex, size_t length); 71 OH_NN_Memory* (*OH_NNExecutor_AllocateOutputMemory)(OH_NNExecutor* executor, uint32_t outputIndex, size_t length); 72 void (*OH_NNExecutor_DestroyOutputMemory)(OH_NNExecutor* executor, uint32_t outputIndex, OH_NN_Memory** memory); 73 void (*OH_NNExecutor_DestroyInputMemory)(OH_NNExecutor* executor, uint32_t inputIndex, OH_NN_Memory** memory); 74 OH_NN_ReturnCode (*OH_NNExecutor_SetInputWithMemory)(OH_NNExecutor* executor, uint32_t inputIndex, 76 OH_NN_ReturnCode (*OH_NNExecutor_SetOutputWithMemory)(OH_NNExecutor* executor, uint32_ [all...] |
/foundation/ai/neural_network_runtime/interfaces/kits/c/neural_network_runtime/ |
H A D | neural_network_core.h | 799 * @brief Creates an executor instance of the {@link OH_NNExecutor} type. 801 * This method constructs a model inference executor associated with the device based on the passed compilation. \n 826 * You do not need to release the memory of <b>shape</b>. It will be released when <b>executor</b> is destroied.\n 828 * @param executor Pointer to the {@link OH_NNExecutor} instance. 844 OH_NN_ReturnCode OH_NNExecutor_GetOutputShape(OH_NNExecutor *executor, 850 * @brief Destroys an executor instance to release the memory occupied by the executor. 852 * This method needs to be called to release the executor instance created by calling 855 * If <b>executor</b> or <b>*executor</ [all...] |
H A D | neural_network_runtime.h | 406 * @param executor Pointer to the {@link OH_NNExecutor} instance. 423 OH_NN_ReturnCode OH_NNExecutor_SetInput(OH_NNExecutor *executor, 444 * @param executor Pointer to the {@link OH_NNExecutor} instance. 460 OH_NN_ReturnCode OH_NNExecutor_SetOutput(OH_NNExecutor *executor, 468 * Performs end-to-end inference and computing of the model on the device associated with the executor.\n 470 * @param executor Pointer to the {@link OH_NNExecutor} instance. 479 OH_NN_ReturnCode OH_NNExecutor_Run(OH_NNExecutor *executor); 485 * By specifying the executor and input index value, this method allocates shared memory whose size is specified by 489 * @param executor Pointer to the {@link OH_NNExecutor} instance. 502 OH_NN_Memory *OH_NNExecutor_AllocateInputMemory(OH_NNExecutor *executor, uint32_ [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_clipboard.cpp | 44 auto executor = container->GetTaskExecutor(); in Get() local 45 auto clipboard = ClipboardProxy::GetInstance()->GetClipboard(executor); in Get() 67 auto executor = container->GetTaskExecutor(); in Set() local 68 auto clipboard = ClipboardProxy::GetInstance()->GetClipboard(executor); in Set() 81 auto executor = container->GetTaskExecutor(); in Clear() local 82 auto clipboard = ClipboardProxy::GetInstance()->GetClipboard(executor); in Clear()
|
/foundation/ai/intelligent_voice_framework/utils/ |
H A D | task_executor.cpp | 59 TaskExecutor *executor = static_cast<TaskExecutor *>(arg); in ExecuteInThread() local 60 if (executor == nullptr) { in ExecuteInThread() 61 INTELL_VOICE_LOG_ERROR("executor is nullptr"); in ExecuteInThread() 64 prctl(PR_SET_NAME, reinterpret_cast<unsigned long>(executor->threadName_.c_str()), 0, 0, 0); in ExecuteInThread() 67 if (!executor->Pop(task)) { in ExecuteInThread()
|
/foundation/communication/netstack/frameworks/js/napi/socket/task_queue/src/ |
H A D | task_queue.cpp | 27 Task() : executor(nullptr), callback(nullptr), data(nullptr), priority_(TaskPriority::CLOSE) {} in Task() 30 : executor(exec), callback(call), data(d), priority_(priority) in Task() 41 AsyncWorkExecutor executor; member in OHOS::NetStack::Socket::Task::Task 73 if (task.executor && task.data) { in Executor() 74 task.executor(env, task.data); in Executor() 111 void PushTask(TaskPriority priority, AsyncWorkExecutor executor, AsyncWorkCallback callback, void *data) in PushTask() argument 115 g_taskExecutorQueue.push(Task(priority, executor, callback, data)); in PushTask()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_context_menu_ffi.cpp | 35 auto executor = container->GetTaskExecutor(); in FfiOHOSAceFrameworkContextMenuClose() local 36 if (!executor) { in FfiOHOSAceFrameworkContextMenuClose() 39 executor->PostTask( in FfiOHOSAceFrameworkContextMenuClose()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/concurrency/ |
H A D | cj_concurrency_ffi.cpp | 32 auto executor = currentObj->GetTaskExecutor(); in FfiOHOSAceFrameworkPostTaskToMainThread() local 33 if (!executor) { in FfiOHOSAceFrameworkPostTaskToMainThread() 34 LOGE("can not get executor."); in FfiOHOSAceFrameworkPostTaskToMainThread() 37 executor->PostTask( in FfiOHOSAceFrameworkPostTaskToMainThread()
|
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_core/ |
H A D | neural_network_core.cpp | 26 #include "executor.h" 1301 OH_NN_ReturnCode ExecutorPrepare(Executor** executor, Compilation** compilation) in ExecutorPrepare() argument 1303 if (executor == nullptr) { in ExecutorPrepare() 1304 LOGE("ExecutorPrepare failed, executor is nullptr."); in ExecutorPrepare() 1313 Executor* executorImpl = *executor; in ExecutorPrepare() 1315 LOGE("ExecutorPrepare failed, executor implementation is nullptr."); in ExecutorPrepare() 1336 LOGE("ExecutorPrepare failed, failed to create executor."); in ExecutorPrepare() 1351 LOGE("ExecutorPrepare failed, failed to set config to executor."); in ExecutorPrepare() 1375 LOGE("OH_NNExecutor_Construct failed, failed to create executor."); in OH_NNExecutor_Construct() 1388 LOGE("OH_NNExecutor_Construct failed, failed to prepare executor in OH_NNExecutor_Construct() 1393 OH_NNExecutor *executor = reinterpret_cast<OH_NNExecutor *>(executorImpl); OH_NNExecutor_Construct() local 1425 OH_NNExecutor_Destroy(OH_NNExecutor **executor) OH_NNExecutor_Destroy() argument 1459 OH_NNExecutor_GetOutputShape(OH_NNExecutor *executor, uint32_t outputIndex, int32_t **shape, uint32_t *shapeLength) OH_NNExecutor_GetOutputShape() argument 1485 OH_NNExecutor_GetInputCount(const OH_NNExecutor *executor, size_t *inputCount) OH_NNExecutor_GetInputCount() argument 1501 OH_NNExecutor_GetOutputCount(const OH_NNExecutor *executor, size_t *outputCount) OH_NNExecutor_GetOutputCount() argument 1517 OH_NNExecutor_CreateInputTensorDesc(const OH_NNExecutor *executor, size_t index) OH_NNExecutor_CreateInputTensorDesc() argument 1528 OH_NNExecutor_CreateOutputTensorDesc(const OH_NNExecutor *executor, size_t index) OH_NNExecutor_CreateOutputTensorDesc() argument 1539 OH_NNExecutor_GetInputDimRange(const OH_NNExecutor *executor, size_t index, size_t **minInputDims, size_t **maxInputDims, size_t *shapeLength) OH_NNExecutor_GetInputDimRange() argument 1566 OH_NNExecutor_SetOnRunDone(OH_NNExecutor *executor, NN_OnRunDone onRunDone) OH_NNExecutor_SetOnRunDone() argument 1581 OH_NNExecutor_SetOnServiceDied(OH_NNExecutor *executor, NN_OnServiceDied onServiceDied) OH_NNExecutor_SetOnServiceDied() argument 1626 RunSync(Executor *executor, NN_Tensor *inputTensor[], size_t inputCount, NN_Tensor *outputTensor[], size_t outputCount) RunSync() argument 1673 OH_NNExecutor_RunSync(OH_NNExecutor *executor, NN_Tensor *inputTensor[], size_t inputCount, NN_Tensor *outputTensor[], size_t outputCount) OH_NNExecutor_RunSync() argument 1704 OH_NNExecutor_RunAsync(OH_NNExecutor *executor, NN_Tensor* inputTensor[], size_t inputCount, NN_Tensor* outputTensor[], size_t outputCount, int32_t timeout, void* userData) OH_NNExecutor_RunAsync() argument [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | alert_dialog_model_impl.cpp | 43 auto executor = container->GetTaskExecutor(); in SetShowDialog() local 44 if (executor) { in SetShowDialog() 45 executor->PostTask( in SetShowDialog()
|
H A D | action_sheet_model_impl.cpp | 28 auto executor = container->GetTaskExecutor(); in ShowActionSheet() local 29 if (executor) { in ShowActionSheet() 30 executor->PostTask( in ShowActionSheet()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/menu/ |
H A D | js_context_menu.cpp | 46 auto executor = container->GetTaskExecutor(); in Close() local 47 if (executor) { in Close() 48 executor->PostTask( in Close()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/ |
H A D | sync_engine.cpp | 147 RemoteExecutor *executor = GetAndIncRemoteExector(); in Close() local 148 if (executor != nullptr) { in Close() 149 executor->Close(); in Close() 150 RefObject::DecObjRef(executor); in Close() 151 executor = nullptr; in Close() 240 auto executor = new (std::nothrow) RemoteExecutor(); in InitInnerSource() local 241 if (executor == nullptr) { in InitInnerSource() 262 errCode = executor->Initialize(syncInterface, communicator_); in InitInnerSource() 267 delete executor; in InitInnerSource() 268 executor in InitInnerSource() 821 RemoteExecutor *executor = GetAndIncRemoteExector(); OfflineHandleByDevice() local 1104 RemoteExecutor *executor = GetAndIncRemoteExector(); RemoteQuery() local 1116 RemoteExecutor *executor = GetAndIncRemoteExector(); NotifyConnectionClosed() local 1127 RemoteExecutor *executor = GetAndIncRemoteExector(); NotifyUserChange() local 1143 SetRemoteExector(RemoteExecutor *executor) SetRemoteExector() argument 1210 RemoteExecutor *executor = GetAndIncRemoteExector(); HandleRemoteExecutorMsg() local [all...] |
/foundation/multimedia/media_foundation/engine/scene/recorder/internal/ |
H A D | error_state.h | 30 explicit ErrorState(StateId stateId, RecorderExecutor& executor) : State(stateId, "ErrorState", executor) in ErrorState() argument
|
H A D | state_machine.cpp | 25 StateMachine::StateMachine(RecorderExecutor& executor) in StateMachine() argument 28 curState_(std::make_shared<InitState>(StateId::INIT, executor)), in StateMachine() 32 AddState(std::make_shared<ErrorState>(StateId::ERROR, executor)); in StateMachine() 33 AddState(std::make_shared<RecordingSettingState>(StateId::RECORDING_SETTING, executor)); in StateMachine() 34 AddState(std::make_shared<ReadyState>(StateId::READY, executor)); in StateMachine() 35 AddState(std::make_shared<RecordingState>(StateId::RECORDING, executor)); in StateMachine() 36 AddState(std::make_shared<PauseState>(StateId::PAUSE, executor)); in StateMachine()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/ |
H A D | kv_store_manager.cpp | 25 KvStoreExecutor *&executor) in GetKvStore() 27 if (executor != nullptr) { in GetKvStore() 66 executor = sqliteExecutor; in GetKvStore() 24 GetKvStore(const std::string &path, const DBConfig &config, bool isFirstOpen, KvStoreExecutor *&executor) GetKvStore() argument
|
/foundation/multimedia/media_foundation/engine/scene/player/internal/ |
H A D | state_machine.cpp | 32 StateMachine::StateMachine(PlayExecutor& executor) in StateMachine() argument 35 curState_(std::make_shared<IdleState>(StateId::IDLE, executor)), in StateMachine() 39 AddState(std::make_shared<InitState>(StateId::INIT, executor)); in StateMachine() 40 AddState(std::make_shared<PreparingState>(StateId::PREPARING, executor)); in StateMachine() 41 AddState(std::make_shared<ReadyState>(StateId::READY, executor)); in StateMachine() 42 AddState(std::make_shared<PlayingState>(StateId::PLAYING, executor)); in StateMachine() 43 AddState(std::make_shared<PauseState>(StateId::PAUSE, executor)); in StateMachine() 44 AddState(std::make_shared<StoppedState>(StateId::STOPPED, executor)); in StateMachine() 45 AddState(std::make_shared<EosState>(StateId::EOS, executor)); in StateMachine()
|
H A D | stopped_state.h | 23 explicit StoppedState(StateId stateId, PlayExecutor& executor) : State(stateId, "StoppedState", executor) {} in StoppedState() argument
|
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/src/ |
H A D | task_executor.cpp | 39 void TaskExecutor::SetExecutor(std::shared_ptr<TaskExecutor::ExecutorPool> executor) in SetExecutor() argument 41 pool_ = executor; in SetExecutor()
|
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/src/ |
H A D | napi_stream_player.cpp | 725 auto executor = [napiAsyntask]() { in SetSurface() local 747 return NapiAsyncWork::Enqueue(env, napiAsyntask, "SetStreamSurface", executor, complete); in SetSurface() 775 auto executor = [napiAsyntask]() { in Load() local 795 return NapiAsyncWork::Enqueue(env, napiAsyntask, "Load", executor, complete); in Load() 823 auto executor = [napiAsyntask]() { in Start() local 843 return NapiAsyncWork::Enqueue(env, napiAsyntask, "Start", executor, complete); in Start() 873 auto executor = [napiAsyntask]() { in Play() local 893 return NapiAsyncWork::Enqueue(env, napiAsyntask, "Play", executor, complete); in Play() 906 auto executor = [napiAsyntask]() { in Pause() local 926 return NapiAsyncWork::Enqueue(env, napiAsyntask, "Pause", executor, complet in Pause() 939 auto executor = [napiAsyntask]() { Stop() local 972 auto executor = [napiAsyntask]() { Next() local 1005 auto executor = [napiAsyntask]() { Previous() local 1051 auto executor = [napiAsyntask]() { Seek() local 1099 auto executor = [napiAsyntask]() { FastForward() local 1147 auto executor = [napiAsyntask]() { FastRewind() local 1195 auto executor = [napiAsyntask]() { SetVolume() local 1243 auto executor = [napiAsyntask]() { SetLoopMode() local 1291 auto executor = [napiAsyntask]() { SetSpeed() local 1339 auto executor = [napiAsyntask]() { SetMute() local 1375 auto executor = [napiAsyntask]() { GetPlayerStatus() local 1414 auto executor = [napiAsyntask]() { GetPosition() local 1454 auto executor = [napiAsyntask]() { GetVolume() local 1493 auto executor = [napiAsyntask]() { GetMute() local 1532 auto executor = [napiAsyntask]() { GetLoopMode() local 1571 auto executor = [napiAsyntask]() { GetPlaySpeed() local 1610 auto executor = [napiAsyntask]() { GetMediaInfoHolder() local 1645 auto executor = [napiAsyntask]() { Release() local [all...] |
/foundation/multimedia/audio_framework/frameworks/js/napi/audiomanager/ |
H A D | napi_audio_manager.cpp | 361 auto executor = [context]() { in SetVolume() local 378 return NapiAsyncWork::Enqueue(env, context, "SetVolume", executor, complete); in SetVolume() 399 auto executor = [context]() { in GetVolume() local 413 return NapiAsyncWork::Enqueue(env, context, "GetVolume", executor, complete); in GetVolume() 434 auto executor = [context]() { in GetMaxVolume() local 448 return NapiAsyncWork::Enqueue(env, context, "GetMaxVolume", executor, complete); in GetMaxVolume() 469 auto executor = [context]() { in GetMinVolume() local 483 return NapiAsyncWork::Enqueue(env, context, "GetMinVolume", executor, complete); in GetMinVolume() 505 auto executor = [context]() { in GetDevices() local 519 return NapiAsyncWork::Enqueue(env, context, "GetDevices", executor, complet in GetDevices() 543 auto executor = [context]() { SetStreamMute() local 580 auto executor = [context]() { IsStreamMute() local 616 auto executor = [context]() { IsStreamActive() local 652 auto executor = [context]() { SetRingerMode() local 680 auto executor = [context]() { GetRingerMode() local 713 auto executor = [context]() { SetAudioScene() local 741 auto executor = [context]() { GetAudioScene() local 803 auto executor = [context]() { SetDeviceActive() local 841 auto executor = [context]() { IsDeviceActive() local 878 auto executor = [context]() { SetAudioParameter() local 911 auto executor = [context]() { GetAudioParameter() local 962 auto executor = [context]() { SetExtraParameters() local 1024 auto executor = [context]() { GetExtraParameters() local 1062 auto executor = [context]() { SetMicrophoneMute() local 1091 auto executor = [context]() { IsMicrophoneMute() local 1124 auto executor = [context]() { RequestIndependentInterrupt() local 1158 auto executor = [context]() { AbandonIndependentInterrupt() local 1186 auto executor = [context]() { DisableSafeMediaVolume() local [all...] |
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/neural_network_core_test/ |
H A D | neural_network_core_test.cpp | 1733 OH_NNExecutor* executor = nullptr; in HWTEST_F() local 1737 OH_NN_ReturnCode ret = OH_NNExecutor_GetOutputShape(executor, outputIndex, &shape, shapeLength); in HWTEST_F() 1753 NNExecutor* executor = new (std::nothrow) NNExecutor( in HWTEST_F() local 1756 OH_NNExecutor* nnExecutor = reinterpret_cast<OH_NNExecutor*>(&executor); in HWTEST_F() 1761 delete executor; in HWTEST_F() 1773 const OH_NNExecutor* executor = nullptr; in HWTEST_F() local 1775 OH_NN_ReturnCode ret = OH_NNExecutor_GetInputCount(executor, inputCount); in HWTEST_F() 1791 NNExecutor* executor = new (std::nothrow) NNExecutor( in HWTEST_F() local 1794 OH_NNExecutor* nnExecutor = reinterpret_cast<OH_NNExecutor*>(&executor); in HWTEST_F() 1797 delete executor; in HWTEST_F() 1809 const OH_NNExecutor* executor = nullptr; HWTEST_F() local 1827 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 1845 const OH_NNExecutor* executor = nullptr; HWTEST_F() local 1858 const OH_NNExecutor* executor = nullptr; HWTEST_F() local 1871 const OH_NNExecutor* executor = nullptr; HWTEST_F() local 1896 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 1924 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 1942 OH_NNExecutor* executor = nullptr; HWTEST_F() local 1960 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 1977 OH_NNExecutor* executor = nullptr; HWTEST_F() local 1995 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2012 OH_NNExecutor* executor = nullptr; HWTEST_F() local 2033 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2058 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2083 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2108 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2128 OH_NNExecutor* executor = nullptr; HWTEST_F() local 2152 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2180 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2208 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2236 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2264 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local 2292 NNExecutor* executor = new (std::nothrow) NNExecutor( HWTEST_F() local [all...] |