Home
last modified time | relevance | path

Searched refs:functionType (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/update/updateservice/napi/include/
H A Dnapi_auto_register.h37 bool RegisterType(uint32_t functionType, FuncType type) in RegisterType() argument
39 if (createMap_.find(functionType) != createMap_.end()) { in RegisterType()
42 return createMap_.emplace(functionType, type).second; in RegisterType()
45 std::shared_ptr<INTERFACE> GetPtr(uint32_t functionType) in GetPtr() argument
47 if (createMap_.find(functionType) == createMap_.end()) { in GetPtr()
50 FuncType function = createMap_[functionType]; in GetPtr()
/ohos5.0/base/global/resource_management/interfaces/js/innerkits/core/src/
H A Dresource_manager_napi_context.cpp29 const std::string &methodName, FunctionType functionType) in ContextGetResource() argument
32 if (functionType == FunctionType::SYNC) { in ContextGetResource()
/ohos5.0/base/global/resource_management/interfaces/js/innerkits/core/include/
H A Dresource_manager_napi_context.h39 FunctionType functionType);
/ohos5.0/drivers/hdf_core/framework/include/bluetooth/
H A Dhdf_chip.h114 uint8_t functionType; member
/ohos5.0/base/location/frameworks/native/fence_extension_ability/src/
H A Djs_fence_extension.cpp377 ::napi_valuetype functionType = ::napi_valuetype::napi_function; in GetMethod()
378 ::napi_status retType = ::napi_typeof(env, method, &functionType); in GetMethod()
/ohos5.0/drivers/peripheral/display/hdi_service/device/src/server/
H A Ddisplay_device_host_driver.cpp157 uint32_t functionType = (cmdId >> 16) & 0xF; in OnRemoteRequest() local
159 …if (functionType >= HDF_DISPLAY_DRIVER_FUNC_TYPE_MAX || functionNum >= HDF_DISPLAY_DRIVER_FUNC_NUM… in OnRemoteRequest()
163 … DisplayDeviceServerStubFunc functionPtr = g_displayDeviceServerFuncTbl[functionType][functionNum]; in OnRemoteRequest()