/base/inputmethod/imf/frameworks/cj/src/ |
H A D | input_method_ffi.cpp | 29 auto ctrl = InputMethodController::GetInstance(); in FfiInputMethodGetDefaultInputMethod() local 30 if (ctrl == nullptr) { in FfiInputMethodGetDefaultInputMethod() 34 int32_t ret = ctrl->GetDefaultInputMethod(property); in FfiInputMethodGetDefaultInputMethod() 45 auto ctrl = InputMethodController::GetInstance(); in FfiInputMethodGetCurrentInputMethod() local 46 if (ctrl == nullptr) { in FfiInputMethodGetCurrentInputMethod() 49 std::shared_ptr<Property> property = ctrl->GetCurrentInputMethod(); in FfiInputMethodGetCurrentInputMethod() 61 auto ctrl = InputMethodController::GetInstance(); in FfiInputMethodSwitchInputMethod() local 62 if (ctrl == nullptr) { in FfiInputMethodSwitchInputMethod() 66 ctrl->SwitchInputMethod(SwitchTrigger::CURRENT_IME, std::string(props.name), std::string(props.id)); in FfiInputMethodSwitchInputMethod() 76 auto ctrl in FfiInputMethodSwitchCurrentInputMethodSubtype() local 90 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodGetCurrentInputMethodSubtype() local 107 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodSwitchCurrentInputMethodAndSubtype() local 122 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodGetSystemInputMethodConfigAbility() local 142 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodSettingListInputMethodSubtype() local 174 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodSettingListCurrentInputMethodSubtype() local 206 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodSettingGetInputMethods() local 237 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodSettingGetAllInputMethods() local 284 auto ctrl = InputMethodController::GetInstance(); FfiInputMethodSettingShowOptionalInputMethods() local [all...] |
/base/usb/usb_manager/interfaces/innerkits/native/src/ |
H A D | usb_device_pipe.cpp | 58 int32_t USBDevicePipe::ControlTransfer(const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &bufferData) in ControlTransfer() argument 60 return UsbSrvClient::GetInstance().ControlTransfer(*this, ctrl, bufferData); in ControlTransfer()
|
H A D | usb_srv_client.cpp | 314 USBDevicePipe &pipe, const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &bufferData) in ControlTransfer() 318 int32_t ret = proxy_->ControlTransfer(dev, ctrl, bufferData); in ControlTransfer() 313 ControlTransfer( USBDevicePipe &pipe, const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &bufferData) ControlTransfer() argument
|
/base/usb/usb_manager/interfaces/innerkits/native/include/ |
H A D | usb_device_pipe.h | 32 int32_t ControlTransfer(const HDI::Usb::V1_0::UsbCtrlTransfer &ctrl, std::vector<uint8_t> &bufferData);
|
H A D | usb_srv_client.h | 65 int32_t ControlTransfer(USBDevicePipe &pip, const HDI::Usb::V1_0::UsbCtrlTransfer &ctrl,
|
H A D | iusb_srv.h | 53 virtual int32_t ControlTransfer(const HDI::Usb::V1_0::UsbDev &dev, const HDI::Usb::V1_0::UsbCtrlTransfer &ctrl,
|
/base/usb/usb_manager/test/native/mock/include/ |
H A D | usb_impl_mock.h | 76 ControlTransferRead, int32_t(const UsbDev &dev, const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &data)); 78 int32_t(const UsbDev &dev, const UsbCtrlTransfer &ctrl, const std::vector<uint8_t> &data));
|
/base/telephony/core_service/services/sim/include/ |
H A D | usim_dialling_numbers_service.h | 54 std::shared_ptr<IccFileController> &ctrl, std::shared_ptr<IccDiallingNumbersHandler> handler);
|
/base/telephony/core_service/services/sim/src/ |
H A D | usim_dialling_numbers_service.cpp | 250 std::shared_ptr<IccFileController> &ctrl, std::shared_ptr<IccDiallingNumbersHandler> handler) in SetFileControllerAndDiallingNumberHandler() 252 fileController_ = ctrl; in SetFileControllerAndDiallingNumberHandler() 249 SetFileControllerAndDiallingNumberHandler( std::shared_ptr<IccFileController> &ctrl, std::shared_ptr<IccDiallingNumbersHandler> handler) SetFileControllerAndDiallingNumberHandler() argument
|
/base/usb/usb_manager/services/zidl/src/ |
H A D | usb_srv_proxy.cpp | 797 const UsbDev &dev, const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &bufferData) in ControlTransfer() 809 WRITE_PARCEL_WITH_RET(data, Int32, ctrl.requestType, UEC_SERVICE_WRITE_PARCEL_ERROR); in ControlTransfer() 810 WRITE_PARCEL_WITH_RET(data, Int32, ctrl.requestCmd, UEC_SERVICE_WRITE_PARCEL_ERROR); in ControlTransfer() 811 WRITE_PARCEL_WITH_RET(data, Int32, ctrl.value, UEC_SERVICE_WRITE_PARCEL_ERROR); in ControlTransfer() 812 WRITE_PARCEL_WITH_RET(data, Int32, ctrl.index, UEC_SERVICE_WRITE_PARCEL_ERROR); in ControlTransfer() 813 WRITE_PARCEL_WITH_RET(data, Int32, ctrl.timeout, UEC_SERVICE_WRITE_PARCEL_ERROR); in ControlTransfer() 820 uint32_t reqType = static_cast<uint32_t>(ctrl.requestType); in ControlTransfer() 796 ControlTransfer( const UsbDev &dev, const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &bufferData) ControlTransfer() argument
|
/base/usb/usb_manager/services/zidl/include/ |
H A D | usb_server_proxy.h | 61 int32_t ControlTransfer(const HDI::Usb::V1_0::UsbDev &dev, const HDI::Usb::V1_0::UsbCtrlTransfer &ctrl,
|
/base/usb/usb_manager/services/native/src/ |
H A D | usb_service.cpp | 813 int32_t UsbService::ControlTransfer(const UsbDev &dev, const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &bufferData) in ControlTransfer() argument 825 if (((uint32_t)ctrl.requestType & USB_ENDPOINT_DIR_MASK) == USB_ENDPOINT_DIR_OUT) { in ControlTransfer() 826 ret = usbd_->ControlTransferWrite(dev, ctrl, bufferData); in ControlTransfer() 832 ret = usbd_->ControlTransferRead(dev, ctrl, bufferData); in ControlTransfer() 856 UsbCtrlTransfer ctrl = { in UsbControlTransfer() local 859 ret = usbd_->ControlTransferWrite(dev, ctrl, bufferData); in UsbControlTransfer()
|
/base/usb/usb_manager/services/native/include/ |
H A D | usb_service.h | 93 int32_t ControlTransfer(const HDI::Usb::V1_0::UsbDev &dev, const HDI::Usb::V1_0::UsbCtrlTransfer &ctrl,
|