Lines Matching refs:shareStateMachine
197 std::shared_ptr<CellularDataStateMachine> shareStateMachine = stateMachine_.lock();
198 if (shareStateMachine == nullptr) {
199 TELEPHONY_LOGE("shareStateMachine is null");
205 shareStateMachine->SetConnectionBandwidth(upBandwidth, downBandwidth);
207 shareStateMachine->UpdateNetworkInfo();
263 std::shared_ptr<CellularDataStateMachine> shareStateMachine = stateMachine_.lock();
264 if (shareStateMachine == nullptr) {
265 TELEPHONY_LOGE("shareStateMachine is null");
268 resultInfo->flag = shareStateMachine->apnId_;
270 if (shareStateMachine->stateMachineEventHandler_ == nullptr) {
274 shareStateMachine->stateMachineEventHandler_->RemoveEvent(CellularDataEventCode::MSG_CONNECT_TIMEOUT_CHECK);
275 if (shareStateMachine->cellularDataHandler_ != nullptr) {
276 shareStateMachine->cellularDataHandler_->SendEvent(
287 std::shared_ptr<CellularDataStateMachine> shareStateMachine = stateMachine_.lock();
288 if (shareStateMachine == nullptr) {
289 TELEPHONY_LOGE("shareStateMachine is null");
295 shareStateMachine->UpdateNetworkInfo();
301 std::shared_ptr<CellularDataStateMachine> shareStateMachine = stateMachine_.lock();
302 if (shareStateMachine == nullptr) {
303 TELEPHONY_LOGE("shareStateMachine is null");
308 shareStateMachine->UpdateNetworkInfo();
314 std::shared_ptr<CellularDataStateMachine> shareStateMachine = stateMachine_.lock();
315 if (shareStateMachine == nullptr) {
316 TELEPHONY_LOGE("shareStateMachine is null");
319 int32_t slotId = shareStateMachine->GetSlotId();
322 if (shareStateMachine->cdConnectionManager_ == nullptr) {
326 std::string tcpBuffer = shareStateMachine->cdConnectionManager_->GetTcpBufferByRadioTech(radioTech);
328 shareStateMachine->SetConnectionTcpBuffer(tcpBuffer);
333 std::shared_ptr<CellularDataStateMachine> shareStateMachine = stateMachine_.lock();
334 if (shareStateMachine == nullptr) {
335 TELEPHONY_LOGE("shareStateMachine is null");
338 int32_t slotId = shareStateMachine->GetSlotId();
341 if (shareStateMachine->cdConnectionManager_ == nullptr) {
345 LinkBandwidthInfo linkBandwidthInfo = shareStateMachine->cdConnectionManager_->GetBandwidthsByRadioTech(radioTech);
348 shareStateMachine->SetConnectionBandwidth(linkBandwidthInfo.upBandwidth, linkBandwidthInfo.downBandwidth);