/test/xts/acts/security/huks/huks_napi_BasicTest/src/ |
H A D | huks_signverify_ecc_test_common.cpp | 28 OH_Huks_Result ret = OH_Huks_InitSession(keyAlias, paramSet, &handle, nullptr); in HksTestSignVerify() local 29 EXPECT_EQ(ret.errorCode, (int32_t)OH_HUKS_SUCCESS) << "Init failed."; in HksTestSignVerify() 30 if (ret.errorCode != (int32_t)OH_HUKS_SUCCESS) { in HksTestSignVerify() 31 return ret; in HksTestSignVerify() 35 ret = OH_Huks_GetParam(paramSet, OH_HUKS_TAG_PURPOSE, &tmpParam); in HksTestSignVerify() 36 if (ret.errorCode != (int32_t)OH_HUKS_SUCCESS) { in HksTestSignVerify() 37 return ret; in HksTestSignVerify() 40 ret = TestUpdateFinish(&handle, paramSet, tmpParam->uint32Param, inData, outData); in HksTestSignVerify() 41 EXPECT_EQ(ret.errorCode, (int32_t)OH_HUKS_SUCCESS) << "TestUpdateFinish failed."; in HksTestSignVerify() 42 if (ret in HksTestSignVerify() 56 OH_Huks_Result ret = OH_Huks_GenerateKeyItem(&keyAlias, genParamSet, nullptr); HksEccSignVerifyTestNormalCase() local [all...] |
H A D | huks_signverify_dsa_test.cpp | 67 OH_Huks_Result ret = OH_Huks_InitSession(keyAlias, paramSet, &handle, nullptr); in HksTestSignVerify() local 68 EXPECT_EQ(ret.errorCode, (int32_t)OH_HUKS_SUCCESS) << "Init failed."; in HksTestSignVerify() 69 if (ret.errorCode != (int32_t)OH_HUKS_SUCCESS) { in HksTestSignVerify() 70 return ret; in HksTestSignVerify() 74 ret = OH_Huks_GetParam(paramSet, OH_HUKS_TAG_PURPOSE, &tmpParam); in HksTestSignVerify() 75 if (ret.errorCode != (int32_t)OH_HUKS_SUCCESS) { in HksTestSignVerify() 76 return ret; in HksTestSignVerify() 79 ret = TestUpdateFinish(&handle, paramSet, tmpParam->uint32Param, inData, outData); in HksTestSignVerify() 80 EXPECT_EQ(ret.errorCode, (int32_t)OH_HUKS_SUCCESS) << "TestUpdateFinish failed."; in HksTestSignVerify() 81 if (ret in HksTestSignVerify() 95 OH_Huks_Result ret = OH_Huks_GenerateKeyItem(&keyAlias, genParamSet, nullptr); HksDsaSignVerifyTestNormalCase() local 141 OH_Huks_Result ret = HWTEST_F() local [all...] |
/third_party/NuttX/fs/dirent/ |
H A D | fs_opendir.c | 88 int ret; in opendir() local 92 ret = VnodeLookup(path, &vp, 0); in opendir() 93 if (vp == NULL || ret != OK) in opendir() 100 ret = -ENOTDIR; in opendir() 101 PRINT_ERR("opendir (%s) failed, err=%d\n", path, ret); in opendir() 114 ret = -ENOMEM; in opendir() 127 ret = vp->vop->Opendir(vp, dir); in opendir() 131 ret = -ENOSYS; in opendir() 133 if (ret < 0) in opendir() 150 set_errno(-ret); in opendir() 156 int ret; do_opendir() local [all...] |
/third_party/ltp/testcases/kernel/fs/doio/ |
H A D | dataascii.c | 118 int ret; in main() local 130 ret = dataasciichk(NULL, buffer, size, 0, &errmsg); in main() 132 size, ret, errmsg); in main() 134 if (ret == -1) in main() 137 printf("\tFAIL return value is %d, expected -1\n", ret); in main() 139 ret = dataasciichk(NULL, &buffer[1], size - 1, 1, &errmsg); in main() 141 size - 1, ret, errmsg); in main() 143 if (ret == -1) in main() 146 printf("\tFAIL return value is %d, expected -1\n", ret); in main() 151 ret in main() [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/ |
H A D | 2-2.c | 43 * UNRESOLVED(ret, descr); 44 * where descr is a description of the error and ret is an int (error code for example) 101 int ret; in main() local 116 ret = pthread_mutexattr_init(&ma[i]); in main() 117 if (ret != 0) { in main() 118 UNRESOLVED(ret, in main() 123 ret = pthread_mutexattr_settype(&ma[i], scenarii[i].m_type); in main() 124 if (ret != 0) { in main() 125 UNRESOLVED(ret, "[parent] Unable to set mutex type"); in main() 130 ret in main() [all...] |
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_exit/ |
H A D | 6-1.c | 57 * UNRESOLVED(ret, descr); 58 * where descr is a description of the error and ret is an int (error code for example) 111 int ret = 0; in threaded() local 130 ret = atexit(clnp); in threaded() 131 if (ret != 0) { in threaded() 132 UNRESOLVED(ret, in threaded() 138 pthread_exit(&ret); in threaded() 158 ret = WEXITSTATUS(status); in threaded() 163 if (ret != 0) { in threaded() 164 output("Exit status was: %i\n", ret); in threaded() 188 int ret = 0; main() local [all...] |
/base/hiviewdfx/hilog/frameworks/libhilog/ |
H A D | hilog.cpp | 24 #define HILOG_VA_ARGS_PROCESS(ret, level) \ 28 (ret) = ::HiLogPrintArgs(label.type, (level), label.domain, label.tag, fmt, args); \ 34 int ret; in Debug() local 35 HILOG_VA_ARGS_PROCESS(ret, LOG_DEBUG); in Debug() 36 return ret; in Debug() 41 int ret; in Info() local 42 HILOG_VA_ARGS_PROCESS(ret, LOG_INFO); in Info() 43 return ret; in Info() 48 int ret; in Warn() local 49 HILOG_VA_ARGS_PROCESS(ret, LOG_WAR in Warn() 55 int ret; Error() local 62 int ret; Fatal() local [all...] |
/base/hiviewdfx/hilog_lite/frameworks/featured/ |
H A D | hilog.cpp | 23 #define HILOG_VA_ARGS_PRORESS(ret, level) \ 27 (ret) = ::HiLogPrintArgs(label.type, (level), label.domain, label.tag, fmt, args); \ 33 int ret; in Debug() local 34 HILOG_VA_ARGS_PRORESS(ret, LOG_DEBUG); in Debug() 35 return ret; in Debug() 40 int ret; in Info() local 41 HILOG_VA_ARGS_PRORESS(ret, LOG_INFO); in Info() 42 return ret; in Info() 47 int ret; in Warn() local 48 HILOG_VA_ARGS_PRORESS(ret, LOG_WAR in Warn() 54 int ret; Error() local 61 int ret; Fatal() local [all...] |
/base/security/huks/interfaces/kits/c/src/ |
H A D | native_huks_api_adapter.c | 25 int32_t ret;
in HuksAttestAdapter() local 29 ret = HKS_ERROR_NULL_POINTER;
in HuksAttestAdapter() 32 ret = HksCheckParamSet((struct HksParamSet *)paramSet, paramSet->paramSetSize);
in HuksAttestAdapter() 33 if (ret != HKS_SUCCESS) {
in HuksAttestAdapter() 36 ret = HksInitParamSet(&newParamSet);
in HuksAttestAdapter() 37 if (ret != HKS_SUCCESS) {
in HuksAttestAdapter() 40 ret = HksFreshParamSet((struct HksParamSet *)paramSet, false);
in HuksAttestAdapter() 41 if (ret != HKS_SUCCESS) {
in HuksAttestAdapter() 44 ret = HksAddParams(newParamSet, (const struct HksParam *)paramSet->params, paramSet->paramsCnt);
in HuksAttestAdapter() 45 if (ret ! in HuksAttestAdapter() [all...] |
/base/telephony/call_manager/services/call/src/ |
H A D | call_control_manager.cpp | 125 int32_t ret = NumberLegalityCheck(accountNumber); in DialCall() local 126 if (ret != TELEPHONY_SUCCESS) { in DialCall() 128 return ret; in DialCall() 136 ret = DelayedSingleton<SatelliteCallControl>::GetInstance()->IsSatelliteSwitchEnable(); in DialCall() 137 if (ret == TELEPHONY_SUCCESS) { in DialCall() 138 ret = DelayedSingleton<SatelliteCallControl>::GetInstance()->IsAllowedSatelliteDialCall(); in DialCall() 139 if (ret != TELEPHONY_SUCCESS) { in DialCall() 140 return ret; in DialCall() 145 ret = CanDial(number, extras, isEcc); in DialCall() 146 if (ret ! in DialCall() 173 int32_t ret = DialPolicy(number, extras, isEcc); CanDial() local 238 int32_t ret = AnswerCallPolicy(callId, videoState); AnswerCall() local 307 int32_t ret = GetVoipCallList(voipCallIdList); CarrierAndVoipConflictProcess() local 350 int32_t ret = RejectCallPolicy(callId); RejectCall() local 394 int32_t ret = HangUpPolicy(callId); HangUpCall() local 432 int32_t ret = HoldCallPolicy(callId); HoldCall() local 451 int32_t ret = UnHoldCallPolicy(callId); UnHoldCall() local 471 int32_t ret = SwitchCallPolicy(callId); SwitchCall() local 615 int32_t ret = call->StartDtmf(str); StartDtmf() local 635 int32_t ret = call->StopDtmf(); StopDtmf() local 653 int32_t ret = call->PostDialProceed(proceed); PostDialProceed() local 662 int32_t ret = CallPolicy::GetCallWaitingPolicy(slotId); GetCallWaiting() local 677 int32_t ret = CallPolicy::SetCallWaitingPolicy(slotId); SetCallWaiting() local 692 int32_t ret = CallPolicy::GetCallRestrictionPolicy(slotId); GetCallRestriction() local 707 int32_t ret = CallPolicy::SetCallRestrictionPolicy(slotId); SetCallRestriction() local 723 int32_t ret = CallPolicy::SetCallRestrictionPolicy(slotId); SetCallRestrictionPassword() local 738 int32_t ret = CallPolicy::GetCallTransferInfoPolicy(slotId); GetCallTransferInfo() local 753 int32_t ret = CallPolicy::SetCallTransferInfoPolicy(slotId); SetCallTransferInfo() local 768 int32_t ret = CallPolicy::SetCallTransferInfoPolicy(slotId); CanSetCallTransferTime() local 783 int32_t ret = CallPolicy::SetCallPreferenceModePolicy(slotId); SetCallPreferenceMode() local 818 int32_t ret = mainCall->CanCombineConference(); CombineConference() local 841 int32_t ret = call->CanSeparateConference(); SeparateConference() local 865 int32_t ret = call->CanKickOutFromConference(); KickOutFromConference() local 914 int32_t ret = CallPolicy::GetImsConfigPolicy(slotId); GetImsConfig() local 929 int32_t ret = CallPolicy::SetImsConfigPolicy(slotId); SetImsConfig() local 944 int32_t ret = CallPolicy::GetImsFeatureValuePolicy(slotId); GetImsFeatureValue() local 959 int32_t ret = CallPolicy::SetImsFeatureValuePolicy(slotId); SetImsFeatureValue() local 974 int32_t ret = CallPolicy::EnableVoLtePolicy(slotId); EnableImsSwitch() local 989 int32_t ret = CallPolicy::DisableVoLtePolicy(slotId); DisableImsSwitch() local 1004 int32_t ret = CallPolicy::IsVoLteEnabledPolicy(slotId); IsImsSwitchEnabled() local 1019 int32_t ret = CallPolicy::VoNRStatePolicy(slotId, state); SetVoNRState() local 1034 int32_t ret = CallPolicy::IsValidSlotId(slotId); GetVoNRState() local 1058 int32_t ret = CallPolicy::StartRttPolicy(callId); StartRtt() local 1077 int32_t ret = CallPolicy::StopRttPolicy(callId); StopRtt() local 1104 int32_t ret = CallPolicy::InviteToConferencePolicy(callId, phoneNumberList); JoinConference() local 1191 int32_t ret = DelayedSingleton<CallNumberUtils>::GetInstance()->FormatPhoneNumber( FormatPhoneNumber() local 1201 int32_t ret = DelayedSingleton<CallNumberUtils>::GetInstance()->FormatPhoneNumberToE164( FormatPhoneNumberToE164() local 1209 int32_t ret = CallPolicy::CloseUnFinishedUssdPolicy(slotId); CloseUnFinishedUssd() local 1248 int ret = ffrt::skip(handle); cancel() local 1295 int32_t ret = DelayedSingleton<CallRecordsManager>::GetInstance()->RemoveMissedIncomingCallNotification(); RemoveMissedIncomingCallNotification() local 1315 int32_t ret = HangUpCall(call->GetCallID()); SetVoIPCallState() local 1344 int32_t ret = HangUpCall(call->GetCallID()); HangUpVoipCall() local 1565 int32_t ret = samgrProxy->SubscribeSystemAbility(COMMON_EVENT_SERVICE_ID, statusChangeListener_); BroadcastSubscriber() local [all...] |
/test/xts/hats/hdf/display/composer/unittest/ |
H A D | hdi_composer_ut.cpp | 64 int ret; in CreateTestLayer() local 86 ret = layer->SwapFrontToBackQ(); in CreateTestLayer() 87 DISPLAY_TEST_CHK_RETURN((ret != DISPLAY_SUCCESS), nullptr, DISPLAY_TEST_LOGE("SwapFrontToBackQ failed")); in CreateTestLayer() 96 int ret; in PrepareAndCommit() local 101 ret = display->PrepareDisplayLayers(); // 确定顶压策略(是否走GPU合成)、刷新layer列表 in PrepareAndCommit() 102 DISPLAY_TEST_CHK_RETURN((ret != DISPLAY_SUCCESS), DISPLAY_FAILURE, in PrepareAndCommit() 105 ret = display->Commit(); // 送显 in PrepareAndCommit() 106 DISPLAY_TEST_CHK_RETURN((ret != DISPLAY_SUCCESS), DISPLAY_FAILURE, DISPLAY_TEST_LOGE("Commit failed")); in PrepareAndCommit() 178 int ret = PrepareAndCommit(); in PresentAndCheck() local 179 ASSERT_TRUE((ret in PresentAndCheck() 190 auto ret = g_composerDevice->DestroyLayer(g_displayIds[0], layer->GetId()); DestroyLayer() local 200 int ret = HdiTestDevice::GetInstance().InitDevice(); SetUpTestCase() local 235 bool ret = false; WaitVblank() local 256 auto ret = g_composerDevice->SetClientBufferCacheCount(g_displayIds[0], CACHE_COUNT); HWTEST_F() local 270 auto ret = g_composerDevice->GetDisplayCapability(g_displayIds[0], info); HWTEST_F() local 284 auto ret = g_composerDevice->GetDisplaySupportedModes(g_displayIds[0], modes); HWTEST_F() local 298 auto ret = g_composerDevice->GetDisplayMode(g_displayIds[0], MODE); HWTEST_F() local 312 auto ret = g_composerDevice->SetDisplayMode(g_displayIds[0], MODE); HWTEST_F() local 326 auto ret = g_composerDevice->GetDisplayPowerStatus(g_displayIds[0], powerStatus); HWTEST_F() local 339 auto ret = g_composerDevice->SetDisplayPowerStatus(g_displayIds[0], HWTEST_F() local 359 auto ret = g_composerDevice->GetDisplayBacklight(g_displayIds[0], level); HWTEST_F() local 374 auto ret = g_composerDevice->SetDisplayBacklight(g_displayIds[0], LEVEL); HWTEST_F() local 389 auto ret = g_composerDevice->GetDisplayProperty(g_displayIds[0], PROPERTY_ID, propertyValue); HWTEST_F() local 412 auto ret = g_composerDevice->GetDisplayCompChange(g_displayIds[0], layers, type); HWTEST_F() local 428 auto ret = g_composerDevice->SetDisplayClientCrop(g_displayIds[0], rect); HWTEST_F() local 444 auto ret = g_composerDevice->GetDisplayReleaseFence(g_displayIds[0], layers, fences); HWTEST_F() local 473 auto ret = g_composerDevice->SetDisplayClientBuffer(g_displayIds[0], buffer, bufferSeq, -1); HWTEST_F() local 492 auto ret = g_composerDevice->SetDisplayClientDamage(g_displayIds[0], vRects); HWTEST_F() local 510 auto ret = g_composerDevice->CreateVirtualDisplay(WIDTH, HEIGHT, format, devId); HWTEST_F() local 525 auto ret = g_composerDevice->DestroyVirtualDisplay(devId); HWTEST_F() local 555 auto ret = g_composerDevice->SetVirtualDisplayBuffer(g_displayIds[0], *buffer, fence); HWTEST_F() local 572 auto ret = g_composerDevice->SetDisplayProperty(g_displayIds[0], PROPERTY_ID, PROPERTY_VALUE); HWTEST_F() local 679 auto ret = g_composerDevice->SetLayerPreMulti(g_displayIds[0], layer->GetId(), preMul); HWTEST_F() local 746 auto ret = g_composerDevice->SetLayerRegion(g_displayIds[0], layer->GetId(), rect); HWTEST_F() local 780 auto ret = g_composerDevice->SetLayerDirtyRegion(g_displayIds[0], layer->GetId(), vRects); HWTEST_F() local 814 auto ret = g_composerDevice->SetLayerTransformMode(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 856 auto ret = g_composerDevice->SetLayerVisibleRegion(g_displayIds[0], layer->GetId(), regions); HWTEST_F() local 886 int32_t ret = graphicBuffer->SetGraphicBuffer([&](const BufferHandle* buffer, uint32_t seqNo) -> int32_t { HWTEST_F() local 921 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 952 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 983 auto ret = g_composerDevice->SetLayerMaskInfo(g_displayIds[0], layer->GetId(), maskInfo); HWTEST_F() local 1024 auto ret = g_composerDevice->SetLayerColor(g_displayIds[0], layer->GetId(), layerColor); HWTEST_F() local 1055 auto ret = g_composerDevice->DestroyLayer(g_displayIds[0], layer->GetId()); HWTEST_F() local 1069 int ret; HWTEST_F() local 1120 auto ret = g_composerDevice->GetDisplaySupportedModesExt(g_displayIds[0], modes); HWTEST_F() local 1147 auto ret = g_composerDevice->RegDisplayVBlankCallback(g_displayIds[0], TestVBlankCallback, nullptr); HWTEST_F() local 1184 auto ret = g_composerDevice->GetDisplayVBlankPeriod(g_displayIds[0], period); HWTEST_F() local 1203 auto ret = g_composerDevice->RegSeamlessChangeCallback(OnSeamlessChange, nullptr); HWTEST_F() local 1239 auto ret = g_composerDevice->SetLayerPerFrameParameter(g_displayIds[0], layer->GetId(), key, value); HWTEST_F() local 1265 auto ret = g_composerDevice->GetSupportedLayerPerFrameParameterKey(keys); HWTEST_F() local 1283 auto ret = g_composerDevice->SetDisplayOverlayResolution(g_displayIds[0], mode.width, mode.height); HWTEST_F() local 1304 auto ret = g_composerDevice->RegRefreshCallback(TestRefreshCallback, nullptr); HWTEST_F() local 1322 auto ret = g_composerDevice->GetDisplaySupportedColorGamuts(g_displayIds[0], gamuts); HWTEST_F() local 1340 auto ret = g_composerDevice->GetHDRCapabilityInfos(g_displayIds[0], info); HWTEST_F() local 1372 auto ret = g_composerDevice->SetLayerTransformMode(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1408 auto ret = g_composerDevice->SetLayerTransformMode(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1444 auto ret = g_composerDevice->SetLayerTransformMode(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1460 auto ret = g_composerDevice->SetDisplayPowerStatus(g_displayIds[0], HWTEST_F() local 1492 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1522 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1552 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1582 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1612 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1642 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1672 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1702 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1732 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1762 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1792 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1822 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1852 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1882 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1912 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1942 auto ret = g_composerDevice->SetLayerBlendType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 1972 auto ret = g_composerDevice->SetLayerMaskInfo(g_displayIds[0], layer->GetId(), maskInfo); HWTEST_F() local 2003 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 2033 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 2063 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 2093 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 2123 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 2153 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 2183 auto ret = g_composerDevice->SetLayerCompositionType(g_displayIds[0], layer->GetId(), type); HWTEST_F() local 2215 auto ret = g_composerDevice->SetLayerTransformMode(g_displayIds[0], layer->GetId(), type); HWTEST_F() local [all...] |
/base/notification/distributed_notification_service/services/ans/src/ |
H A D | notification_rdb_data_mgr.cpp | 47 int ret = NativeRdb::E_OK; in OnCreate() local 49 return ret; in OnCreate() 53 ret = rdbStore.ExecuteSql(createTableSql); in OnCreate() 54 if (ret == NativeRdb::E_OK) { in OnCreate() 58 return ret; in OnCreate() 117 int32_t ret = NativeRdb::E_OK; in Init() local 119 rdbDataCallBack_, ret); in Init() 132 int32_t ret = absSharedResultSet->GoToFirstRow(); in InitCreatedTables() local 133 if (ret != NativeRdb::E_OK) { in InitCreatedTables() 140 ret in InitCreatedTables() 165 int32_t ret = NativeRdb::RdbHelper::DeleteRdbStore(notificationRdbConfig_.dbPath + notificationRdbConfig_.dbName); Destroy() local 179 int32_t ret = GetUserTableName(userId, tableName); InsertData() local 210 int32_t ret = GetUserTableName(userId, tableName); InsertData() local 242 int32_t ret = GetUserTableName(userId, tableName); InsertBatchData() local 281 int32_t ret = NativeRdb::E_OK; DeleteData() local 296 int32_t ret = rdbStore_->Delete(rowId, absRdbPredicates); DeleteData() local 322 int32_t ret = DeleteData(tableName, key, rowId); DeleteBathchData() local 341 int32_t ret = NativeRdb::E_OK; QueryData() local 361 int32_t ret = absSharedResultSet->GoToFirstRow(); QueryData() local 390 int32_t ret = NativeRdb::E_OK; QueryData() local 410 int32_t ret = absSharedResultSet->GoToFirstRow(); QueryData() local 439 int32_t ret = NativeRdb::E_OK; QueryDataBeginWithKey() local 463 int32_t ret = absSharedResultSet->GoToFirstRow(); QueryDataBeginWithKey() local 504 int32_t ret = NativeRdb::E_OK; QueryAllData() local 527 int32_t ret = absSharedResultSet->GoToFirstRow(); QueryAllData() local 565 int32_t ret = NativeRdb::E_OK; DropUserTable() local 602 int32_t ret = rdbStore_->ExecuteSql(createTableSql); GetUserTableName() local [all...] |
/base/security/access_token/services/accesstokenmanager/test/unittest/ |
H A D | short_grant_manager_test.cpp | 102 int32_t ret = AccessTokenInfoManager::GetInstance().CreateHapTokenInfo(g_infoParms, g_policyParams, tokenIdEx); in HWTEST_F() local 103 ASSERT_EQ(RET_SUCCESS, ret); in HWTEST_F() 109 ret = ShortGrantManager::GetInstance().RefreshPermission(tokenID, SHORT_TEMP_PERMISSION, onceTime); in HWTEST_F() 110 ASSERT_EQ(RET_SUCCESS, ret); in HWTEST_F() 119 ret = AccessTokenInfoManager::GetInstance().RemoveHapTokenInfo(tokenID); in HWTEST_F() 120 ASSERT_EQ(RET_SUCCESS, ret); in HWTEST_F() 135 int32_t ret = AccessTokenInfoManager::GetInstance().CreateHapTokenInfo(g_infoParms, g_policyParams, tokenIdEx); in HWTEST_F() local 136 ASSERT_EQ(RET_SUCCESS, ret); in HWTEST_F() 142 ret = ShortGrantManager::GetInstance().RefreshPermission(tokenID, SHORT_TEMP_PERMISSION, maxTime); in HWTEST_F() 143 ASSERT_EQ(RET_SUCCESS, ret); in HWTEST_F() 176 int32_t ret = AccessTokenInfoManager::GetInstance().CreateHapTokenInfo(g_infoParms, g_policyParams, tokenIdEx); HWTEST_F() local 232 int32_t ret = AccessTokenInfoManager::GetInstance().CreateHapTokenInfo(g_infoParms, g_policyParams, tokenIdEx); HWTEST_F() local [all...] |
/drivers/hdf_core/adapter/khdf/linux/platform/fwk/ |
H A D | platform_trace.c | 59 int ret; in PlatformTraceAddUintMsg() local 82 ret = snprintf_s(messages, PLATFORM_TRACE_MSG_MAX_LEN + 1, PLATFORM_TRACE_MSG_MAX_LEN, in PlatformTraceAddUintMsg() 84 if (ret < 0) { in PlatformTraceAddUintMsg() 85 HDF_LOGE("PlatformTraceAddUintMsg[%s][%s]: generate messages fail[%d]!", moduleMean, moduleFunMean, ret); in PlatformTraceAddUintMsg() 89 ret = snprintf_s(messages + strlen(messages), PLATFORM_TRACE_MSG_MAX_LEN + 1 - strlen(messages), in PlatformTraceAddUintMsg() 92 if ((ret < 0) || (strlen(messages) >= PLATFORM_TRACE_MSG_MAX_LEN)) { in PlatformTraceAddUintMsg() 94 moduleMean, moduleFunMean, ret, strlen(messages)); in PlatformTraceAddUintMsg() 114 ssize_t ret; in TraceFileWrite() local 132 ret = vfs_write(fp, string, length, &pos); in TraceFileWrite() 136 if (ret < in TraceFileWrite() 146 ssize_t ret; TraceFileRead() local 179 int32_t ret; TraceEventFileWrite() local 222 int32_t ret; PlatformTraceInfoDump() local [all...] |
/drivers/hdf_core/framework/core/manager/test/unittest/common/ |
H A D | hdf_pm_test.cpp | 58 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_ONE_DRIVER_ONCE, nullptr, nullptr); in HWTEST_F() local 59 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 72 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_ONE_DRIVER_TWICE, nullptr, nullptr); in HWTEST_F() local 73 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 86 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_ONE_DRIVER_TEN, nullptr, nullptr); in HWTEST_F() local 87 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 100 int32_t ret = ioService->dispatcher->Dispatch( in HWTEST_F() local 102 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 115 int32_t ret = ioService->dispatcher->Dispatch( in HWTEST_F() local 117 EXPECT_TRUE(ret in HWTEST_F() 130 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_TWO_DRIVER_ONCE, nullptr, nullptr); HWTEST_F() local 144 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_TWO_DRIVER_TWICE, nullptr, nullptr); HWTEST_F() local 158 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_TWO_DRIVER_TEN, nullptr, nullptr); HWTEST_F() local 172 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 187 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 202 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 217 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 232 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_THREE_DRIVER_TEN, nullptr, nullptr); HWTEST_F() local 246 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 261 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 276 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 291 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local [all...] |
/test/xts/hats/hdf/hdf_lite/manager/common/ |
H A D | hdf_pm_test.cpp | 65 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_ONE_DRIVER_ONCE, nullptr, nullptr); in HWTEST_F() local 66 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 79 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_ONE_DRIVER_TWICE, nullptr, nullptr); in HWTEST_F() local 80 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 93 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_ONE_DRIVER_TEN, nullptr, nullptr); in HWTEST_F() local 94 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 107 int32_t ret = ioService->dispatcher->Dispatch( in HWTEST_F() local 109 EXPECT_TRUE(ret == HDF_SUCCESS); in HWTEST_F() 122 int32_t ret = ioService->dispatcher->Dispatch( in HWTEST_F() local 124 EXPECT_TRUE(ret in HWTEST_F() 137 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_TWO_DRIVER_ONCE, nullptr, nullptr); HWTEST_F() local 151 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_TWO_DRIVER_TWICE, nullptr, nullptr); HWTEST_F() local 165 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_TWO_DRIVER_TEN, nullptr, nullptr); HWTEST_F() local 179 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 194 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 209 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 224 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 239 int32_t ret = ioService->dispatcher->Dispatch(&ioService->object, HDF_PM_TEST_THREE_DRIVER_TEN, nullptr, nullptr); HWTEST_F() local 253 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 268 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 283 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local 298 int32_t ret = ioService->dispatcher->Dispatch( HWTEST_F() local [all...] |
/test/xts/hats/kernel/syscalls/fileio/fcntl/ |
H A D | FcntlApiTest.cpp | 67 int ret; in HWTEST_F() local 72 ret = fcntl(fd, F_SETFD, FD_CLOEXEC); in HWTEST_F() 73 EXPECT_EQ(ret, 0); in HWTEST_F() 78 ret = fcntl(fd, F_SETFL, O_NONBLOCK); in HWTEST_F() 79 EXPECT_EQ(ret, 0); in HWTEST_F() 98 int ret; in HWTEST_F() local 110 ret = fcntl(fd, F_SETLK, &lock); in HWTEST_F() 111 EXPECT_EQ(ret, 0); in HWTEST_F() 113 ret = fcntl(fd, F_GETLK, &lockCheck); in HWTEST_F() 114 EXPECT_EQ(ret, in HWTEST_F() 134 int ret; HWTEST_F() local 152 int ret; HWTEST_F() local 175 int ret; HWTEST_F() local 200 int ret; HWTEST_F() local 228 int ret; HWTEST_F() local 257 int ret = pipe(fds); HWTEST_F() local [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_channelsplit.c | 64 int all = 0, ret = 0, i; in init() local 66 if ((ret = av_channel_layout_from_string(&s->channel_layout, s->channel_layout_str)) < 0) { in init() 69 ret = AVERROR(EINVAL); in init() 74 if ((ret = av_channel_layout_copy(&channel_layout, &s->channel_layout)) < 0) in init() 78 if ((ret = av_channel_layout_from_string(&channel_layout, s->channels_str)) < 0) in init() 96 ret = AVERROR(ENOMEM); in init() 103 if ((ret = av_channel_layout_index_from_channel(&s->channel_layout, channel)) < 0) { in init() 110 s->map[i] = ret; in init() 113 if ((ret = ff_append_outpad(ctx, &pad)) < 0) in init() 119 return ret; in init() 133 int i, ret; query_formats() local 163 int ret; filter_frame() local 187 int status, ret; activate() local [all...] |
/third_party/ffmpeg/libswresample/ |
H A D | swresample_frame.c | 30 int ret; in swr_config_frame() local 44 if ((ret = av_channel_layout_copy(&ch_layout, &in->ch_layout)) < 0) in swr_config_frame() 46 if ((ret = av_opt_set_chlayout(s, "ichl", &ch_layout, 0)) < 0) in swr_config_frame() 48 if ((ret = av_opt_set_int(s, "isf", in->format, 0)) < 0) in swr_config_frame() 50 if ((ret = av_opt_set_int(s, "isr", in->sample_rate, 0)) < 0) in swr_config_frame() 65 if ((ret = av_channel_layout_copy(&ch_layout, &out->ch_layout)) < 0) in swr_config_frame() 67 if ((ret = av_opt_set_chlayout(s, "ochl", &ch_layout, 0)) < 0) in swr_config_frame() 69 if ((ret = av_opt_set_int(s, "osf", out->format, 0)) < 0) in swr_config_frame() 71 if ((ret = av_opt_set_int(s, "osr", out->sample_rate, 0)) < 0) in swr_config_frame() 75 ret in swr_config_frame() 87 int ret = 0; config_changed() local 135 int ret; convert_frame() local 187 int ret, setup = 0; swr_convert_frame() local [all...] |
/base/msdp/device_status/test/unittest/intention/ipc/src/ |
H A D | socket_session_test.cpp | 84 int32_t ret = g_client->Connect(); in HWTEST_F() local 85 EXPECT_TRUE(ret); in HWTEST_F() 86 ret = g_client->Connect(); in HWTEST_F() 87 EXPECT_TRUE(ret); in HWTEST_F() 101 int32_t ret = g_client->Socket(); in HWTEST_F() local 105 EXPECT_GT(ret, -1); in HWTEST_F() 118 int32_t ret = g_client->Connect(); in HWTEST_F() local 119 EXPECT_TRUE(ret); in HWTEST_F() 135 bool ret = param.Unmarshalling(data); in HWTEST_F() local 136 EXPECT_FALSE(ret); in HWTEST_F() 150 bool ret = param.Marshalling(data); HWTEST_F() local 165 bool ret = replyData.Marshalling(data); HWTEST_F() local 180 bool ret = replyData.Unmarshalling(data); HWTEST_F() local 201 int32_t ret = g_socketServer->Enable(context, datas, reply); HWTEST_F() local 222 int32_t ret = g_socketServer->Disable(context, datas, reply); HWTEST_F() local 243 int32_t ret = g_socketServer->Start(context, datas, reply); HWTEST_F() local 265 int32_t ret = g_socketServer->Stop(context, datas, reply); HWTEST_F() local 286 int32_t ret = g_socketServer->AddWatch(context, 1, datas, reply); HWTEST_F() local 307 int32_t ret = g_socketServer->RemoveWatch(context, 1, datas, reply); HWTEST_F() local 328 int32_t ret = g_socketServer->SetParam(context, 1, datas, reply); HWTEST_F() local 349 int32_t ret = g_socketServer->GetParam(context, 1, datas, reply); HWTEST_F() local 370 int32_t ret = g_socketServer->Control(context, 1, datas, reply); HWTEST_F() local 391 int32_t ret = g_socketServer->Control(context, -1, datas, reply); HWTEST_F() local 405 int32_t ret = g_socketSessionManager->Enable(); HWTEST_F() local 419 int32_t ret = g_socketSessionManager->AllocSocketFd("", 1, 1, 1, 1, clientFd); HWTEST_F() local 442 int32_t ret = g_socketSessionManager->SetBufferSize(sockFd, bufSize); HWTEST_F() local 456 bool ret = g_socketSessionManager->AddSession(g_session); HWTEST_F() local 473 bool ret = g_session->SendMsg(pkt); HWTEST_F() local 512 bool ret = g_session->SendMsg(buf, size); HWTEST_F() local 528 bool ret = g_socketSessionManager->AddSession(nullptr); HWTEST_F() local 542 int32_t ret = g_client->Connect(); HWTEST_F() local 562 bool ret = g_session->SendMsg(buf, size); HWTEST_F() local 576 bool ret = g_socketSessionManager->AddSession(g_session); HWTEST_F() local 596 bool ret = g_socketSessionManager->AddSession(g_session); HWTEST_F() local 613 bool ret = g_sessionOne->SendMsg(buf, size); HWTEST_F() local [all...] |
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/ |
H A D | cert_manager_query.c | 60 int32_t ret = CM_SUCCESS;
in ConstrutPathList() local 78 ret = CM_FAILURE;
in ConstrutPathList() 82 ret = MallocCertPath(&cPathList[i], pathBuf); /* uniformly free memory by caller */
in ConstrutPathList() 83 if (ret != CM_SUCCESS) {
in ConstrutPathList() 88 ret = CM_FAILURE;
in ConstrutPathList() 96 ret = CM_FAILURE;
in ConstrutPathList() 98 return ret;
in ConstrutPathList() 126 int32_t ret = ConstrutPathList(useridPath, cPathList, (uint32_t)uidCount);
in CreateCertPathList() local 127 if (ret != CM_SUCCESS) {
in CreateCertPathList() 130 return ret;
in CreateCertPathList() 143 int32_t ret = ConstructUserIdPath(context, store, userIdPath, MAX_PATH_LEN); CmGetCertPathList() local 169 int32_t ret = MallocCertPath(&cPathList[0], SYSTEM_CA_STORE); CmGetSysCertPathList() local 230 int32_t ret = MallocCertNameAndPath(certFile, path, fileName); /* uniformly free memory by caller */ GetCertNameAndPath() local 273 int32_t ret; CreateCertFile() local 314 int32_t ret = CM_SUCCESS; CreateCertFileList() local 364 int32_t ret = CM_SUCCESS; GetUserCertAlias() local 431 int32_t ret; CmGetCertAlias() local 473 int32_t ret = CM_SUCCESS; CmGetCertListInfo() local [all...] |
/base/sensors/medical_sensor/interfaces/plugin/test/unittest/ |
H A D | medical_js_test.cpp | 94 bool ret = IsMatchType(napiValue, napi_number, env);
in HWTEST_F() local 95 ASSERT_EQ(ret, true);
in HWTEST_F() 114 bool ret = IsMatchType(napiValue, napi_string, env);
in HWTEST_F() local 115 ASSERT_EQ(ret, true);
in HWTEST_F() 135 bool ret = IsMatchType(symbolVal, napi_symbol, env);
in HWTEST_F() local 136 ASSERT_EQ(ret, true);
in HWTEST_F() 158 bool ret = IsMatchType(getTimeFunc, napi_function, env);
in HWTEST_F() local 159 ASSERT_EQ(ret, true);
in HWTEST_F() 176 bool ret = IsMatchType(result, napi_boolean, env);
in HWTEST_F() local 177 ASSERT_EQ(ret, tru in HWTEST_F() 194 napi_valuetype ret; HWTEST_F() local 213 napi_valuetype ret; HWTEST_F() local 232 napi_valuetype ret; HWTEST_F() local 251 napi_valuetype ret; HWTEST_F() local 270 napi_valuetype ret; HWTEST_F() local 293 napi_valuetype ret; HWTEST_F() local 320 napi_valuetype ret; HWTEST_F() local 347 napi_valuetype ret; HWTEST_F() local 374 napi_valuetype ret; HWTEST_F() local 403 napi_valuetype ret; HWTEST_F() local 422 int32_t ret = GetCppInt32(value, env); HWTEST_F() local 441 int32_t ret = GetCppInt32(value, env); HWTEST_F() local 460 int32_t ret = GetCppInt32(value, env); HWTEST_F() local 479 int32_t ret = GetCppInt32(value, env); HWTEST_F() local 497 int32_t ret = GetCppInt32(value, env); HWTEST_F() local 517 int64_t ret = GetCppInt64(value, env); HWTEST_F() local 536 int64_t ret = GetCppInt64(value, env); HWTEST_F() local 556 int64_t ret = GetCppInt64(value, env); HWTEST_F() local 575 int64_t ret = GetCppInt64(value, env); HWTEST_F() local 593 int64_t ret = GetCppInt64(value, env); HWTEST_F() local [all...] |
/base/startup/init/services/param/manager/ |
H A D | param_server.c | 61 int ret = 0;
in CommonDealFun() local 63 ret = CheckParamName(name, 0);
in CommonDealFun() 64 PARAM_CHECK(ret == 0, return ret, "Invalid param name %s", name);
in CommonDealFun() 66 ret = WriteParam(name, value, NULL, 0);
in CommonDealFun() 67 PARAM_CHECK(ret == 0, return ret, "Failed to write param %s %s", name, value);
in CommonDealFun() 68 return ret;
in CommonDealFun() 89 int ret = WriteParam(name, data, NULL, 0);
in ReadSnFromFile() local 91 PARAM_CHECK(ret in ReadSnFromFile() 99 int ret = CheckParamName(name, 0); SnDealFun() local 124 int ret = snprintf_s(fullName, sizeof(fullName), sizeof(fullName) - 1, Common2ConstDealFun() local 140 int ret = 0; MatchReserverCmdline() local 235 int ret = ReadSnFromFile(OHOS_CMDLINE_PARA_PREFIX "sn", snFileList[i]); GenerateSnByDefault() local 289 int ret = CheckParamName(name, 0); LoadOneParam_() local 348 int ret = GetParamValue(target, strlen(target), tmpParamValue, PARAM_VALUE_LEN_MAX); LoadParamFromImport_() local 404 int ret = SplitParamString(buffer, exclude, count, loadOneParam, &mode); LoadDefaultParam_() local 424 int ret = LoadDefaultParam_(fileName, mode, exclude, ARRAY_LENGTH(exclude), LoadOneParam_); ProcessParamFile() local 500 int ret = snprintf_s(buffer, sizeof(buffer), sizeof(buffer) - 1, "u:object_r:%s:s0", name); LoadOneParamAreaSize_() local [all...] |
/base/startup/appspawn/modules/common/ |
H A D | appspawn_common.c | 221 int ret = InitXpm(jitfortEnable, idType, ownerId); in SetXpmConfig() local 222 APPSPAWN_CHECK(ret == 0, return ret, "set xpm region failed: %{public}d", ret); in SetXpmConfig() 234 int ret = setgroups(dacInfo->gidCount, (const gid_t *)(&dacInfo->gidTable[0])); in SetUidGid() local 235 APPSPAWN_CHECK(ret == 0, return errno, in SetUidGid() 245 ret = setresgid(dacInfo->gid, dacInfo->gid, dacInfo->gid); in SetUidGid() 247 ret = setresgid(dacInfo->gid, dacInfo->gid, dacInfo->gid); in SetUidGid() 249 APPSPAWN_CHECK(ret == 0, return errno, in SetUidGid() 252 ret in SetUidGid() 359 int ret = SetProcessName(content, property); SpawnInitSpawningEnv() local 374 int ret = SetEnvInfo(content, property); SpawnSetAppEnv() local 382 int ret = SetInternetPermission(property); SpawnSetIntPermission() local 399 int ret = SetKeepCapabilities(content, property); SpawnSetProperties() local 432 int ret = SetUidGidFilter(content); PreLoadSetSeccompFilter() local 446 int ret = GetParameter(param, "", tmp, sizeof(tmp)); CheckEnabled() local 528 int ret = setenv(keyBuffer, value, 1); SetFdEnv() local [all...] |
/base/telephony/state_registry/services/src/ |
H A D | telephony_state_registry_stub.cpp | 88 int ret = IPCObjectStub::OnRemoteRequest(code, data, reply, option); in OnRemoteRequest() local 89 TELEPHONY_LOGI("TelephonyStateRegistryStub::OnRemoteRequest end##ret=%{public}d", ret); in OnRemoteRequest() 90 return ret; in OnRemoteRequest() 133 int32_t ret = UpdateCallState(callState, phoneNumber); in OnUpdateCallState() local 134 TELEPHONY_LOGI("TelephonyStateRegistryStub::OnUpdateCallState end##ret=%{public}d", ret); in OnUpdateCallState() 135 reply.WriteInt32(ret); in OnUpdateCallState() 145 int32_t ret = UpdateSimState(slotId, type, state, reason); in OnUpdateSimState() local 146 TELEPHONY_LOGI("TelephonyStateRegistryStub::OnUpdateSimState end##ret in OnUpdateSimState() 156 int32_t ret = UpdateCallStateForSlotId(slotId, callState, incomingNumber); OnUpdateCallStateForSlotId() local 167 int32_t ret = UpdateCellularDataConnectState(slotId, dataState, networkType); OnUpdateCellularDataConnectState() local 179 int32_t ret = UpdateCellularDataFlow(slotId, flowData); OnUpdateCellularDataFlow() local 189 int32_t ret = TELEPHONY_SUCCESS; OnUpdateSignalInfo() local 284 int32_t ret = TELEPHONY_SUCCESS; OnUpdateCellInfo() local 335 int32_t ret = TELEPHONY_SUCCESS; OnUpdateNetworkState() local 351 int32_t ret = TELEPHONY_SUCCESS; OnRegisterStateChange() local 374 int32_t ret = UnregisterStateChange(slotId, mask); OnUnregisterStateChange() local 407 int32_t ret = UpdateCfuIndicator(slotId, cfuResult); OnUpdateCfuIndicator() local 417 int32_t ret = UpdateVoiceMailMsgIndicator(slotId, voiceMailMsgResult); OnUpdateVoiceMailMsgIndicator() local 425 int32_t ret = UpdateIccAccount(); OnIccAccountUpdated() local [all...] |