/base/security/permission_lite/services/pms/src/ |
H A D | pms_impl.c | 49 char *rst = (char *)HalMalloc(allocSize);
in ConcatString() local 50 if (rst == NULL) {
in ConcatString() 53 if (memset_s(rst, allocSize, 0x0, allocSize) != EOK) {
in ConcatString() 54 HalFree((void *)rst);
in ConcatString() 57 if (strcpy_s(rst, allocSize, s1) != EOK) {
in ConcatString() 58 HalFree((void *)rst);
in ConcatString() 61 if (strcat_s(rst, allocSize, s2) != EOK) {
in ConcatString() 62 HalFree((void *)rst);
in ConcatString() 65 return rst;
in ConcatString() 97 char *rst in ReadString() local [all...] |
/base/telephony/ril_adapter/services/vendor/include/ |
H A D | vendor_adapter.h | 29 int32_t SetRadioState(HRilRadioState newState, int32_t rst);
|
/base/telephony/ril_adapter/interfaces/innerkits/include/ |
H A D | hril_vendor_modem_defs.h | 68 void (*SetRadioState)(const ReqDataInfo *requestInfo, int32_t fun, int32_t rst);
|
/base/telephony/core_service/interfaces/innerkits/satellite/ |
H A D | i_satellite_service.h | 81 * @param rst whether to enable automatic reset of the modem 84 virtual int32_t SetRadioState(int32_t slotId, int32_t isRadioOn, int32_t rst) = 0;
|
H A D | satellite_service_proxy.h | 31 int32_t SetRadioState(int32_t slotId, int32_t isRadioOn, int32_t rst) override;
|
H A D | satellite_service_client.h | 40 int32_t SetRadioState(int32_t slotId, int32_t isRadioOn, int32_t rst);
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | i_network_search.h | 61 virtual void SetRadioState(int32_t slotId, bool isOn, int32_t rst) = 0; 62 virtual int32_t SetRadioState(int32_t slotId, bool isOn, int32_t rst, NSCALLBACK &callback) = 0;
|
H A D | core_manager_inner.h | 57 int32_t slotId, int32_t eventId, int fun, int rst, const std::shared_ptr<AppExecFwk::EventHandler> &handler); 206 int32_t SetRadioState(int32_t slotId, bool isOn, int32_t rst, const sptr<INetworkSearchCallback> &callback);
|
H A D | i_tel_ril_manager.h | 41 int32_t slotId, int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response) = 0;
|
/base/telephony/core_service/services/satellite_service_interaction/src/ |
H A D | satellite_service_client.cpp | 251 int32_t SatelliteServiceClient::SetRadioState(int32_t slotId, int32_t isRadioOn, int32_t rst) in SetRadioState() argument 258 return proxy->SetRadioState(slotId, isRadioOn, rst); in SetRadioState()
|
H A D | satellite_service_proxy.cpp | 174 int32_t SatelliteServiceProxy::SetRadioState(int32_t slotId, int32_t isRadioOn, int32_t rst) in SetRadioState() argument 190 if (!data.WriteInt32(rst)) { in SetRadioState()
|
/base/telephony/cellular_data/test/mock/ |
H A D | mock_network_search.h | 41 MOCK_METHOD3(SetRadioState, void(int32_t slotId, bool isOn, int32_t rst)); 42 MOCK_METHOD4(SetRadioState, int32_t(int32_t slotId, bool isOn, int32_t rst, NSCALLBACK &callback));
|
/base/security/appverify/interfaces/innerkits/appverify_lite/src/ |
H A D | app_verify_hap.c | 113 int32_t rst = V_ERR; in ComputeDigestsWithOptionalBlock() local 119 return rst; in ComputeDigestsWithOptionalBlock() 150 rst = V_OK; in ComputeDigestsWithOptionalBlock() 156 return rst; in ComputeDigestsWithOptionalBlock()
|
/base/telephony/core_service/services/tel_ril/include/ |
H A D | tel_ril_modem.h | 40 int32_t SetRadioState(int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response);
|
H A D | tel_ril_manager.h | 48 int32_t slotId, int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response) override;
|
/base/telephony/ril_adapter/services/hril/include/ |
H A D | hril_modem.h | 29 int32_t SetRadioState(int32_t serialId, int32_t fun, int32_t rst);
|
H A D | hril_manager.h | 135 int32_t SetRadioState(int32_t slotId, int32_t serialId, int32_t fun, int32_t rst);
|
/base/telephony/core_service/services/tel_ril/src/ |
H A D | tel_ril_modem.cpp | 59 int32_t TelRilModem::SetRadioState(int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response) in SetRadioState() argument 61 return Request(TELEPHONY_LOG_FUNC_NAME, response, &HDI::Ril::V1_1::IRil::SetRadioState, fun, rst); in SetRadioState()
|
/base/telephony/ril_adapter/services/vendor/src/ |
H A D | vendor_adapter.c | 198 int32_t SetRadioState(HRilRadioState newState, int32_t rst) in SetRadioState() argument 224 (void)sprintf_s(cmd, MAX_CMD_LENGTH, "AT+CFUN=%u,%d", newState, rst); in SetRadioState()
|
/base/telephony/ril_adapter/services/hril/src/ |
H A D | hril_modem.cpp | 33 int32_t HRilModem::SetRadioState(int32_t serialId, int32_t fun, int32_t rst) in SetRadioState() argument 35 return RequestVendor(serialId, HREQ_MODEM_SET_RADIO_STATUS, modemFuncs_, &HRilModemReq::SetRadioState, fun, rst); in SetRadioState()
|
H A D | hril_manager.cpp | 659 int32_t HRilManager::SetRadioState(int32_t slotId, int32_t serialId, int32_t fun, int32_t rst) in SetRadioState() argument 661 return TaskSchedule(MODULE_HRIL_MODEM, hrilModem_[slotId], &HRilModem::SetRadioState, serialId, fun, rst); in SetRadioState()
|
/base/telephony/core_service/services/network_search/include/ |
H A D | network_search_manager.h | 154 void SetRadioState(int32_t slotId, bool isOn, int32_t rst) override; 155 int32_t SetRadioState(int32_t slotId, bool isOn, int32_t rst, NSCALLBACK &callback) override;
|
/base/telephony/core_service/services/network_search/src/ |
H A D | network_utils.cpp | 282 [](ITelRilManager *rilManager, int32_t slotId, int32_t fun, int32_t rst, 284 return rilManager->SetRadioState(slotId, fun, rst, response);
|
H A D | network_search_manager.cpp | 246 void NetworkSearchManager::SetRadioState(int32_t slotId, bool isOn, int32_t rst) in SetRadioState() argument 254 eventSender_->SendBase(slotId, RadioEvent::RADIO_SET_STATUS, fun, rst); in SetRadioState() 257 int32_t NetworkSearchManager::SetRadioState(int32_t slotId, bool isOn, int32_t rst, NSCALLBACK &callback) in SetRadioState() argument 265 if (!eventSender_->SendCallback(slotId, RadioEvent::RADIO_SET_STATUS, &callback, fun, rst)) { in SetRadioState()
|
/base/telephony/core_service/frameworks/native/src/ |
H A D | core_manager_inner.cpp | 758 int32_t slotId, int32_t eventId, int fun, int rst, const std::shared_ptr<AppExecFwk::EventHandler> &handler) in SetRadioState() 770 return telRilManager_->SetRadioState(slotId, fun, rst, response); in SetRadioState() 1453 int32_t slotId, bool isOn, int32_t rst, const sptr<INetworkSearchCallback> &callback) in SetRadioState() 1459 return networkSearchManager_->SetRadioState(slotId, isOn, rst, callback); in SetRadioState() 757 SetRadioState( int32_t slotId, int32_t eventId, int fun, int rst, const std::shared_ptr<AppExecFwk::EventHandler> &handler) SetRadioState() argument 1452 SetRadioState( int32_t slotId, bool isOn, int32_t rst, const sptr<INetworkSearchCallback> &callback) SetRadioState() argument
|