Home
last modified time | relevance | path

Searched defs:executor (Results 1 – 25 of 104) sorted by relevance

12345

/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/
Dneural_network_runtime_compat.cpp45 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetInput(OH_NNExecutor *executor, in OH_NNExecutor_SetInput()
69 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetOutput(OH_NNExecutor *executor, in OH_NNExecutor_SetOutput()
89 NNRT_API OH_NN_ReturnCode OH_NNExecutor_Run(OH_NNExecutor *executor) in OH_NNExecutor_Run()
100 NNRT_API OH_NN_Memory *OH_NNExecutor_AllocateInputMemory(OH_NNExecutor *executor, uint32_t inputInd… in OH_NNExecutor_AllocateInputMemory()
122 NNRT_API OH_NN_Memory *OH_NNExecutor_AllocateOutputMemory(OH_NNExecutor *executor, uint32_t outputI… in OH_NNExecutor_AllocateOutputMemory()
144 NNRT_API void OH_NNExecutor_DestroyInputMemory(OH_NNExecutor *executor, uint32_t inputIndex, OH_NN_… in OH_NNExecutor_DestroyInputMemory()
169 NNRT_API void OH_NNExecutor_DestroyOutputMemory(OH_NNExecutor *executor, uint32_t outputIndex, OH_N… in OH_NNExecutor_DestroyOutputMemory()
194 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetInputWithMemory(OH_NNExecutor *executor, in OH_NNExecutor_SetInputWithMemory()
214 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetOutputWithMemory(OH_NNExecutor *executor, in OH_NNExecutor_SetOutputWithMemory()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
Djs_clipboard.cpp44 auto executor = container->GetTaskExecutor(); in Get() local
67 auto executor = container->GetTaskExecutor(); in Set() local
81 auto executor = container->GetTaskExecutor(); in Clear() local
Djs_persistent.cpp73 auto executor = container->GetTaskExecutor(); in Set() local
102 auto executor = container->GetTaskExecutor(); in Get() local
128 auto executor = container->GetTaskExecutor(); in Delete() local
143 auto executor = container->GetTaskExecutor(); in Clear() local
/foundation/ai/neural_network_runtime/test/unittest/components/v2_0/neural_network_runtime_test/
Dneural_network_runtime_test.cpp268 void NeuralNetworkRuntimeTest::SetInputAndOutput(Executor& executor) in SetInputAndOutput()
1166 OH_NNExecutor* executor = OH_NNExecutor_Construct(nnCompilation); variable
1181 OH_NNExecutor * executor = OH_NNExecutor_Construct(nnCompilation); variable
1204 OH_NNExecutor * executor = OH_NNExecutor_Construct(nnCompilation); variable
1234 Executor executor(&innerCompilation); variable
1254 Executor executor(&innerCompilation); variable
1275 Executor executor(&innerCompilation); variable
1297 Executor executor(&innerCompilation); variable
1335 Executor executor(&innerCompilation); variable
1354 Executor executor(&innerCompilation); variable
[all …]
/foundation/ai/neural_network_runtime/test/unittest/components/v1_0/neural_network_runtime_test/
Dneural_network_runtime_test.cpp268 void NeuralNetworkRuntimeTest::SetInputAndOutput(Executor& executor) in SetInputAndOutput()
1166 OH_NNExecutor* executor = OH_NNExecutor_Construct(nnCompilation); variable
1181 OH_NNExecutor * executor = OH_NNExecutor_Construct(nnCompilation); variable
1204 OH_NNExecutor * executor = OH_NNExecutor_Construct(nnCompilation); variable
1234 Executor executor(&innerCompilation); variable
1254 Executor executor(&innerCompilation); variable
1275 Executor executor(&innerCompilation); variable
1297 Executor executor(&innerCompilation); variable
1335 Executor executor(&innerCompilation); variable
1354 Executor executor(&innerCompilation); variable
[all …]
/foundation/multimedia/media_foundation/engine/scene/recorder/internal/
Derror_state.h30 …explicit ErrorState(StateId stateId, RecorderExecutor& executor) : State(stateId, "ErrorState", ex… in ErrorState()
Dready_state.h29 …explicit ReadyState(StateId stateId, RecorderExecutor& executor) : State(stateId, "ReadyState", ex… in ReadyState()
/foundation/multimedia/media_foundation/engine/scene/player/internal/
Dstopped_state.h23 …explicit StoppedState(StateId stateId, PlayExecutor& executor) : State(stateId, "StoppedState", ex… in StoppedState()
Dpreparing_state.h29 …explicit PreparingState(StateId stateId, PlayExecutor& executor) : State(stateId, "PreparingState"… in PreparingState()
Dinit_state.h31 …explicit InitState(StateId stateId, PlayExecutor &executor) : State(stateId, "InitState", executor… in InitState()
Didle_state.h24 …explicit IdleState(StateId stateId, PlayExecutor& executor) : State(stateId, "IdleState", executor… in IdleState()
Deos_state.h25 …explicit EosState(StateId stateId, PlayExecutor& executor) : State(stateId, "EosState", executor) … in EosState()
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_core/
Dneural_network_core.cpp1003 OH_NNExecutor *executor = reinterpret_cast<OH_NNExecutor *>(executorImpl); in OH_NNExecutor_Construct() local
1007 NNRT_API void OH_NNExecutor_Destroy(OH_NNExecutor **executor) in OH_NNExecutor_Destroy()
1035 NNRT_API OH_NN_ReturnCode OH_NNExecutor_GetOutputShape(OH_NNExecutor *executor, in OH_NNExecutor_GetOutputShape()
1061 NNRT_API OH_NN_ReturnCode OH_NNExecutor_GetInputCount(const OH_NNExecutor *executor, size_t *inputC… in OH_NNExecutor_GetInputCount()
1077 NNRT_API OH_NN_ReturnCode OH_NNExecutor_GetOutputCount(const OH_NNExecutor *executor, size_t *outpu… in OH_NNExecutor_GetOutputCount()
1093 NNRT_API NN_TensorDesc* OH_NNExecutor_CreateInputTensorDesc(const OH_NNExecutor *executor, size_t i… in OH_NNExecutor_CreateInputTensorDesc()
1104 NNRT_API NN_TensorDesc* OH_NNExecutor_CreateOutputTensorDesc(const OH_NNExecutor *executor, size_t … in OH_NNExecutor_CreateOutputTensorDesc()
1115 NNRT_API OH_NN_ReturnCode OH_NNExecutor_GetInputDimRange(const OH_NNExecutor *executor, in OH_NNExecutor_GetInputDimRange()
1142 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetOnRunDone(OH_NNExecutor *executor, NN_OnRunDone onRunDon… in OH_NNExecutor_SetOnRunDone()
1157 NNRT_API OH_NN_ReturnCode OH_NNExecutor_SetOnServiceDied(OH_NNExecutor *executor, NN_OnServiceDied … in OH_NNExecutor_SetOnServiceDied()
[all …]
/foundation/multimedia/audio_framework/frameworks/js/napi/audiomanager/
Dnapi_audio_manager.cpp330 auto executor = [context]() { in SetVolume() local
368 auto executor = [context]() { in GetVolume() local
403 auto executor = [context]() { in GetMaxVolume() local
438 auto executor = [context]() { in GetMinVolume() local
474 auto executor = [context]() { in GetDevices() local
512 auto executor = [context]() { in SetStreamMute() local
549 auto executor = [context]() { in IsStreamMute() local
585 auto executor = [context]() { in IsStreamActive() local
621 auto executor = [context]() { in SetRingerMode() local
649 auto executor = [context]() { in GetRingerMode() local
[all …]
Dnapi_audio_volume_group_manager.cpp228 auto executor = [context]() { in GetVolume() local
296 auto executor = [context]() { in SetVolume() local
334 auto executor = [context]() { in GetMaxVolume() local
399 auto executor = [context]() { in GetMinVolume() local
466 auto executor = [context]() { in SetMute() local
503 auto executor = [context]() { in IsStreamMute() local
572 auto executor = [context]() { in SetRingerMode() local
602 auto executor = [context]() { in GetRingerMode() local
650 auto executor = [context]() { in SetMicrophoneMute() local
680 auto executor = [context]() { in IsMicrophoneMute() local
[all …]
/foundation/multimedia/av_session/frameworks/js/napi/session/src/
Dnapi_avsession_manager.cpp141 auto executor = [context]() { in CreateAVSession() local
168 auto executor = [context]() { in GetAllSessionDescriptors() local
215 auto executor = [context]() { in GetHistoricalSessionDescriptors() local
264 auto executor = [context]() { in GetHistoricalAVQueueInfos() local
312 auto executor = [context]() { in StartAVPlayback() local
345 auto executor = [context]() { in CreateController() local
399 auto executor = [context]() { in GetAVCastController() local
463 auto executor = [context]() { in CastAudio() local
649 auto executor = [context]() { in SendSystemAVKeyEvent() local
684 auto executor = [context]() { in SendSystemControlCommand() local
[all …]
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/src/
Dnapi_stream_player.cpp725 auto executor = [napiAsyntask]() { in SetSurface() local
775 auto executor = [napiAsyntask]() { in Load() local
823 auto executor = [napiAsyntask]() { in Start() local
873 auto executor = [napiAsyntask]() { in Play() local
906 auto executor = [napiAsyntask]() { in Pause() local
939 auto executor = [napiAsyntask]() { in Stop() local
972 auto executor = [napiAsyntask]() { in Next() local
1005 auto executor = [napiAsyntask]() { in Previous() local
1051 auto executor = [napiAsyntask]() { in Seek() local
1099 auto executor = [napiAsyntask]() { in FastForward() local
[all …]
Dnapi_mirror_player.cpp143 auto executor = [napiAsyntask]() { in Play() local
189 auto executor = [napiAsyntask]() { in Pause() local
235 auto executor = [napiAsyntask]() { in SetSurface() local
284 auto executor = [napiAsyntask]() { in SetAppInfo() local
318 auto executor = [napiAsyntask]() { in Release() local
367 auto executor = [napiAsyntask]() { in ResizeVirtualScreen() local
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/mock/src/
Dtask_executor.cpp39 void TaskExecutor::SetExecutor(std::shared_ptr<TaskExecutor::ExecutorPool> executor) in SetExecutor()
/foundation/communication/netstack/utils/napi_utils/include/
Dmodule_template.h43 bool (*Work)(napi_env, napi_value, Context *), AsyncWorkExecutor executor, in Interface()
86 AsyncWorkExecutor executor, AsyncWorkCallback callback) in InterfaceWithOutAsyncWork()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
Dtask_executor.cpp41 void TaskExecutor::SetExecutor(std::shared_ptr<ExecutorPool> executor) in SetExecutor()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
Dkv_store_manager.cpp25 KvStoreExecutor *&executor) in GetKvStore()
/foundation/filemanagement/dfs_service/utils/system/include/
Ddfsu_thread_safe_queue.h79 void ForEach(std::function<void(const std::unique_ptr<T> &)> executor) in ForEach()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/menu/
Djs_context_menu.cpp44 auto executor = container->GetTaskExecutor(); in Close() local
/foundation/multimedia/audio_framework/frameworks/js/napi/audiorenderer/
Dnapi_audio_renderer.cpp334 auto executor = [context]() { in SetRenderRate() local
369 auto executor = [context]() { in GetRenderRate() local
416 auto executor = [context]() { in SetRendererSamplingRate() local
451 auto executor = [context]() { in GetRendererSamplingRate() local
479 auto executor = [context]() { in Start() local
517 auto executor = [context]() { in Write() local
574 auto executor = [context]() { in GetAudioTime() local
628 auto executor = [context]() { in Drain() local
657 auto executor = [context]() { in Flush() local
686 auto executor = [context]() { in Pause() local
[all …]

12345