Home
last modified time | relevance | path

Searched refs:ret (Results 14801 - 14825 of 21727) sorted by relevance

1...<<591592593594595596597598599600>>...870

/third_party/pulseaudio/src/tests/
H A Dresampler-test.c302 int ret = 1, c; in main() local
345 ret = 0; in main()
354 ret = 0; in main()
359 ret = 0; in main()
395 ret = 0; in main()
406 ret = 0; in main()
478 return ret; in main()
/third_party/openssl/crypto/asn1/
H A Da_strex.c579 int ret; in X509_NAME_print_ex_fp() local
583 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp()
585 return ret; in X509_NAME_print_ex_fp()
611 int mbflag, type, ret; in ASN1_STRING_to_UTF8() local
624 ret = in ASN1_STRING_to_UTF8()
627 if (ret < 0) in ASN1_STRING_to_UTF8()
628 return ret; in ASN1_STRING_to_UTF8()
H A Da_time.c355 ASN1_GENERALIZEDTIME *ret = NULL; in ASN1_TIME_to_generalizedtime() local
362 ret = *out; in ASN1_TIME_to_generalizedtime()
364 ret = ossl_asn1_time_from_tm(ret, &tm, V_ASN1_GENERALIZEDTIME); in ASN1_TIME_to_generalizedtime()
366 if (out != NULL && ret != NULL) in ASN1_TIME_to_generalizedtime()
367 *out = ret; in ASN1_TIME_to_generalizedtime()
369 return ret; in ASN1_TIME_to_generalizedtime()
/third_party/openssl/crypto/bn/
H A Dbn_div.c21 int ret = 0;
82 ret = 1;
85 return ret;
212 int ret; in BN_div() local
229 ret = bn_div_fixed_top(dv, rm, num, divisor, ctx); in BN_div()
231 if (ret) { in BN_div()
238 return ret; in BN_div()
/third_party/openssl/apps/
H A Denc.c133 int ret = 1, inl, nopad = 0; in enc_main() local
165 ret = 0; in enc_main()
174 ret = 0; in enc_main()
370 ret = 1; in enc_main()
607 ret = 0; in enc_main()
631 ret = 0; in enc_main()
651 return ret; in enc_main()
/third_party/skia/src/core/
H A DSkTraceEventCommon.h196 #define TRACE_EVENT_CATEGORY_GROUP_ENABLED(category_group, ret) \
197 do { *ret = false; } while (0)
274 #define TRACE_EVENT_CATEGORY_GROUP_ENABLED(category_group, ret) \
275 do { *ret = false; } while (0)
370 #define TRACE_EVENT_CATEGORY_GROUP_ENABLED(category_group, ret) \
374 *ret = true; \
376 *ret = false; \
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DOutputASM.h203 Function(int label, const char *name, TIntermSequence *arg, TIntermTyped *ret) : label(label), name(name), arg(arg), ret(ret) in Function()
207 Function(int label, const TString &name, TIntermSequence *arg, TIntermTyped *ret) : label(label), name(name), arg(arg), ret(ret) in Function()
214 TIntermTyped *ret; member
/third_party/openssl/providers/implementations/signature/
H A Deddsa_sig.c93 int ret; in eddsa_digest_signverify_init() local
124 ret = WPACKET_init_der(&pkt, peddsactx->aid_buf, sizeof(peddsactx->aid_buf)); in eddsa_digest_signverify_init()
127 ret = ret && ossl_DER_w_algorithmIdentifier_ED25519(&pkt, -1, edkey); in eddsa_digest_signverify_init()
130 ret = ret && ossl_DER_w_algorithmIdentifier_ED448(&pkt, -1, edkey); in eddsa_digest_signverify_init()
138 if (ret && WPACKET_finish(&pkt)) { in eddsa_digest_signverify_init()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross_containers.hpp676 std::string ret; in str() local
681 ret.reserve(target_size); in str()
684 ret.insert(ret.end(), saved.buffer, saved.buffer + saved.offset); in str()
685 ret.insert(ret.end(), current_buffer.buffer, current_buffer.buffer + current_buffer.offset); in str()
686 return ret; in str()
/third_party/skia/third_party/externals/microhttpd/src/testcurl/
H A Dtest_process_headers.c92 int ret; in ahc_echo() local
103 ret = 0; in ahc_echo()
104 MHD_get_connection_values (connection, MHD_HEADER_KIND, &kv_cb, &ret); in ahc_echo()
105 if (ret != 1) in ahc_echo()
140 ret = MHD_queue_response (connection, MHD_HTTP_OK, response); in ahc_echo()
142 if (ret == MHD_NO) in ahc_echo()
144 return ret; in ahc_echo()
/third_party/toybox/scripts/
H A Dconfig2help.c32 void *ret = malloc(size); in xmalloc() local
33 if (!ret) { in xmalloc()
38 return ret; in xmalloc()
46 char *ret; in xmprintf() local
57 ret = xmalloc(len); in xmprintf()
58 vsnprintf(ret, len, format, va2); in xmprintf()
61 return ret; in xmprintf()
/third_party/python/Modules/
H A D_testinternalcapi.c301 int ret = -1; in check_edit_cost() local
342 ret = 0; in check_edit_cost()
346 return ret; in check_edit_cost()
425 int ret = _Py_EncodeLocaleEx(wstr, in encode_locale_ex() local
430 switch(ret) { in encode_locale_ex()
469 int ret = _Py_DecodeLocaleEx(str, in decode_locale_ex() local
473 switch(ret) { in decode_locale_ex()
H A Dmain.c236 int ret; in pymain_run_command() local
255 ret = PyRun_SimpleStringFlags(PyBytes_AsString(bytes), &cf); in pymain_run_command()
257 return (ret != 0); in pymain_run_command()
390 int ret; in pymain_run_startup() local
433 ret = 0; in pymain_run_startup()
437 return ret; in pymain_run_startup()
440 ret = pymain_err_print(exitcode); in pymain_run_startup()
/third_party/rust/crates/rustix/src/backend/libc/net/
H A Dsyscalls.rs4 use super::super::conv::{borrowed_fd, ret, ret_owned_fd, ret_send_recv, send_recv_len};
177 ret(c::bind(
188 ret(c::bind(
199 ret(c::bind(
210 ret(c::connect(
221 ret(c::connect(
232 ret(c::connect(
242 unsafe { ret(c::listen(borrowed_fd(sockfd), backlog)) }
337 unsafe { ret(c::shutdown(borrowed_fd(sockfd), how as c::c_int)) }
345 ret(
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/
H A Dp2p_utils.c346 int ret; in p2p_channels_dump() local
354 ret = os_snprintf(pos, end - pos, " %u:", c->reg_class); in p2p_channels_dump()
355 if (os_snprintf_error(end - pos, ret)) in p2p_channels_dump()
357 pos += ret; in p2p_channels_dump()
360 ret = os_snprintf(pos, end - pos, "%s%u", in p2p_channels_dump()
363 if (os_snprintf_error(end - pos, ret)) in p2p_channels_dump()
365 pos += ret; in p2p_channels_dump()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/
H A Dp2p_utils.c364 int ret; in p2p_channels_dump() local
372 ret = os_snprintf(pos, end - pos, " %u:", c->reg_class); in p2p_channels_dump()
373 if (os_snprintf_error(end - pos, ret)) in p2p_channels_dump()
375 pos += ret; in p2p_channels_dump()
378 ret = os_snprintf(pos, end - pos, "%s%u", in p2p_channels_dump()
381 if (os_snprintf_error(end - pos, ret)) in p2p_channels_dump()
383 pos += ret; in p2p_channels_dump()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dacs.c432 int ret = -1; in acs_survey_list_is_sufficient() local
437 ret = 1; in acs_survey_list_is_sufficient()
440 ret = 0; in acs_survey_list_is_sufficient()
443 if (ret == -1) in acs_survey_list_is_sufficient()
444 ret = 1; /* no survey list entries */ in acs_survey_list_is_sufficient()
446 if (!ret) { in acs_survey_list_is_sufficient()
452 return ret; in acs_survey_list_is_sufficient()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dability_manager_service.cpp291 bool ret = Publish(instance_); in OnStart() local
292 if (!ret) { in OnStart()
447 int ret = BackgroundTaskMgrHelper::UnsubscribeBackgroundTask(*bgtaskObserver_); in OnStop() local
448 if (ret != ERR_OK) { in OnStop()
449 TAG_LOGE(AAFwkTag::ABILITYMGR, "unsubscribe bgtask failed, err:%{public}d", ret); in OnStop()
456 bool ret = IN_PROCESS_CALL(bms->UnregisterBundleEventCallback(abilityBundleEventCallback_)); in OnStop() local
457 if (ret != ERR_OK) { in OnStop()
458 TAG_LOGE(AAFwkTag::ABILITYMGR, "unsubscribe bundle event failed, err:%{public}d", ret); in OnStop()
520 int32_t ret = StartAbilityWrap(want, nullptr, requestCode, false, userId); in StartAbility() local
521 AAFWK::ContinueRadar::GetInstance().ClickIconStartAbility("StartAbilityWrap", want.GetFlags(), ret); in StartAbility()
564 int32_t ret = StartAbilityWrap(want, callerToken, requestCode, false, userId); StartAbilityByFreeInstall() local
606 int32_t ret = StartAbilityWrap(want, callerToken, requestCode, isPendingWantCaller, userId, false, specifyTokenId); StartAbilityWithSpecifyTokenIdInner() local
749 int32_t ret = StartAbilityWrap(want, callerToken, DEFAULT_INVAL_VALUE, false, DEFAULT_INVAL_VALUE, false, specifyTokenId, false, false, true); StartAbilityOnlyUIAbility() local
798 int32_t ret = StartAbilityWrap(newWant, callerToken, requestCode, false, userId, true, StartAbilityAsCallerDetails() local
1139 int32_t ret = freeInstallManager_->StartFreeInstall(localWant, validUserId, requestCode, callerToken, false); StartAbilityInner() local
1554 auto ret = missionListManager->StartAbility(abilityRequest); StartAbilityDetails() local
1589 auto ret = CheckProcessOptions(want, options, userId); StartUIAbilityForOptionWrap() local
1938 auto ret = missionListManager->StartAbility(abilityRequest); StartAbilityForOptionInner() local
2424 auto ret = IN_PROCESS_CALL(DelayedSingleton<AppScheduler>::GetInstance()->GetApplicationInfoByProcessID(pid, ForceExitApp() local
2549 int ret = BackgroundTaskMgrHelper::SubscribeBackgroundTask(*bgtaskObserver_); SubscribeBackgroundTask() local
2589 bool ret = IN_PROCESS_CALL(bms->RegisterBundleEventCallback(abilityBundleEventCallback_)); SubscribeBundleEventCallback() local
2749 int ret = IN_PROCESS_CALL(GetTopAbility(token)); RequestModalUIExtensionInner() local
3000 auto ret = IN_PROCESS_CALL(bms->QueryExtensionAbilityInfosOnlyWithTypeName(pickerType, SetPickerElementName() local
3102 auto ret = CheckUIExtensionUsage(extensionSessionInfo->uiExtensionUsage, extensionType); StartUIExtensionAbility() local
5098 auto ret = wmsHandler_->MoveMissionsToForeground(missionIds, topMissionId); MoveMissionsToForeground() local
5120 auto ret = wmsHandler_->MoveMissionsToBackground(missionIds, result); MoveMissionsToBackground() local
5546 int ret = 0; DumpSysProcess() local
5591 auto ret = IN_PROCESS_CALL(appMgr->GetAllUIExtensionRootHostPid(pid, hostPids)); DumpUIExtensionRootHostRunningInfos() local
5620 auto ret = IN_PROCESS_CALL(appMgr->GetAllUIExtensionProviderPid(hostPid, providerPids)); DumpUIExtensionProviderRunningInfos() local
6523 int ret = DelayedSingleton<AppScheduler>::GetInstance()->KillApplication(bundleName, clearPageStack); KillProcess() local
6578 int ret = DelayedSingleton<AppScheduler>::GetInstance()->KillApplicationByUid(bundleName, uid, "UninstallApp"); UninstallAppInner() local
6626 bool ret = IN_PROCESS_CALL( PreLoadAppDataAbilitiesTask() local
6762 int32_t ret = GetShareDataPairAndReturnData(nullptr, ERR_TIMED_OUT, uniqueId, wantParam); HandleShareDataTimeOut() local
6787 auto ret = callback->AcquireShareDataDone(resultCode, wantParam); GetShareDataPairAndReturnData() local
7159 int ret = GetParameter(key, def, valueGet, len); GetAppMemorySize() local
7188 int ret = GetParameter(key, def, valueGet, len); IsRamConstrainedDevice() local
7484 auto ret = -1; StopUser() local
7509 auto ret = userController_->LogoutUser(userId); LogoutUser() local
7602 int ret = IN_PROCESS_CALL(GetTopAbility(token)); UpdateFocusState() local
7927 bool ret = IN_PROCESS_CALL( ScheduleRecoverAbility() local
8184 bool ret = abilityController_ != nullptr && controllerIsAStabilityTest_; IsRunningInStabilityTest() local
8411 int ret = MinimizeAbility(token); DoAbilityBackground() local
8742 int ret = IN_PROCESS_CALL(GetTopAbility(token)); GetTopAbility() local
8796 int ret = dprintf(fd, "%s\\n", result.c_str()); Dump() local
9426 auto ret = AAFwk::PermissionVerification::GetInstance()->VerifyCallingPermission( CheckCallerInfoQueryExtensionPermission() local
9438 auto ret = AAFwk::PermissionVerification::GetInstance()->VerifyCallingPermission( CheckFileAccessExtensionPermission() local
9507 auto ret = IsCallFromBackground(abilityRequest, isBackgroundCall); CheckUIExtensionCallerIsForeground() local
9585 auto ret = sceneSessionManager->CheckWindowId(hostWindowId, hostPid); CheckUIExtensionCallerPidByHostWindowId() local
9957 auto ret = GetTopAbility(token); CheckUIExtensionIsFocused() local
10047 int32_t ret = Security::AccessToken::AccessTokenKit::VerifyAccessToken(appInfo.accessTokenId, permission, false); VerifyPermission() local
10157 auto ret = Rosen::MockSessionManagerService::GetInstance().SetSessionManagerService(sessionManagerService); SetSessionManagerService() local
10389 auto ret = DelayedSingleton<AppExecFwk::OsAccountManagerWrapper>::GetInstance()-> CheckUserIdActive() local
10558 int32_t ret = DelayedSingleton<InsightIntentExecuteManager>::GetInstance()->CheckAndUpdateParam(key, callerToken, ExecuteIntent() local
10646 int32_t ret = StartAbilityWrap(want, nullptr, requestCode, false, userId); StartAbilityWithInsightIntent() local
10724 auto ret = DelayedSingleton<InsightIntentExecuteManager>::GetInstance()->GetBundleName(intentId, bundleNameStored); ExecuteInsightIntentDone() local
10980 auto ret = bundleMgr->GetBundleInfoForSelf(flags, bundleInfo); CheckDebugAssertPermission() local
11164 int32_t ret = GetParameter(BOOTEVENT_BOOT_ANIMATION_READY, "", value, WaitBootAnimationStart() local
11243 auto ret = connectManager->GetUIExtensionSessionInfo(token, uiExtensionSessionInfo); GetUIExtensionSessionInfo() local
11330 auto ret = IN_PROCESS_CALL(appMgr->SignRestartAppFlag(uid)); SignRestartAppFlag() local
11386 int32_t ret = freeInstallManager_->StartFreeInstall(want, GetUserId(), 0, callerToken, false); IsEmbeddedOpenAllowed() local
12256 int32_t ret = connectManager->UpdateKeepAliveEnableState(bundleName, moduleName, mainElement, updateEnable); UpdateKeepAliveEnableState() local
[all...]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Ddaemon.c511 int ret; in MHD_init_daemon_certificate() local
551 ret = gnutls_certificate_set_x509_key_mem2 (daemon->x509_cred, in MHD_init_daemon_certificate()
566 ret = gnutls_certificate_set_x509_key_mem (daemon->x509_cred, in MHD_init_daemon_certificate()
570 if (0 != ret) in MHD_init_daemon_certificate()
573 gnutls_strerror (ret)); in MHD_init_daemon_certificate()
575 return ret; in MHD_init_daemon_certificate()
1035 ssize_t ret; in recv_param_adapter() local
1043 ret = recv (connection->socket_fd, other, i, MSG_NOSIGNAL); in recv_param_adapter()
1045 if (ret < (ssize_t) i) in recv_param_adapter()
1051 return ret; in recv_param_adapter()
1068 ssize_t ret; send_param_adapter() local
1163 int ret; create_thread() local
1736 int ret; resume_suspended_connections() local
2980 MHD_socket ret; MHD_quiesce_daemon() local
3071 int ret; parse_options() local
3097 int ret; parse_options_va() local
[all...]
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_screen.c287 enum pipe_compute_cap param, void *ret) in zink_get_compute_param()
291 if (ret) \ in zink_get_compute_param()
292 memcpy(ret, x, sizeof(x)); \ in zink_get_compute_param()
301 if (ret) in zink_get_compute_param()
302 strcpy(ret, "nir"); in zink_get_compute_param()
1515 VkFormat ret = zink_pipe_format_to_vk_format(emulate_x8(format)); in zink_get_format() local
1524 ret = VK_FORMAT_D24_UNORM_S8_UINT; in zink_get_format()
1526 if (ret == VK_FORMAT_X8_D24_UNORM_PACK32 && in zink_get_format()
1532 if (ret == VK_FORMAT_D24_UNORM_S8_UINT && in zink_get_format()
1538 if ((ret in zink_get_format()
286 zink_get_compute_param(struct pipe_screen *pscreen, enum pipe_shader_ir ir_type, enum pipe_compute_cap param, void *ret) zink_get_compute_param() argument
1757 VkResult ret = VKSCR(GetPhysicalDeviceImageFormatProperties)(screen->pdev, VK_FORMAT_D32_SFLOAT, populate_format_props() local
2411 struct zink_screen *ret = zink_internal_create_screen(config); zink_create_screen() local
2422 struct zink_screen *ret = zink_internal_create_screen(config); zink_drm_create_screen() local
[all...]
/third_party/pulseaudio/src/pulsecore/
H A Dsource.c362 int ret = 0; in source_set_state() local
394 if ((ret = s->set_state_in_main_thread(s, state, suspend_cause)) < 0) { in source_set_state()
409 return ret; in source_set_state()
416 if ((ret = pa_asyncmsgq_send(s->asyncmsgq, PA_MSGOBJECT(s), PA_SOURCE_MESSAGE_SET_STATE, &data, 0, NULL)) < 0) { in source_set_state()
434 return ret; in source_set_state()
475 return ret; in source_set_state()
2009 unsigned ret; in pa_source_used_by() local
2015 ret = pa_idxset_size(s->outputs); in pa_source_used_by()
2016 pa_assert(ret >= s->n_corked); in pa_source_used_by()
2018 return ret in pa_source_used_by()
2023 unsigned ret; pa_source_check_suspend() local
2338 int ret = 0; pa_source_suspend_all() local
2830 bool ret = false; pa_source_volume_change_apply() local
2875 pa_idxset *ret; pa_source_get_formats() local
2898 bool ret = false; pa_source_check_format() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_ndis.c458 int ret; in ndis_get_oid() local
491 ret = written; in ndis_get_oid()
493 return ret; in ndis_get_oid()
497 int ret; in ndis_get_oid()
519 ret = o->Length; in ndis_get_oid()
521 return ret; in ndis_get_oid()
1191 int len, count, i, ret; in wpa_driver_ndis_set_pmkid() local
1217 ret = ndis_set_oid(drv, OID_802_11_PMKID, (char *) p, len); in wpa_driver_ndis_set_pmkid()
1219 return ret; in wpa_driver_ndis_set_pmkid()
1305 int prev_authmode, ret; in wpa_driver_ndis_flush_pmkid() local
2398 LONG ret; wpa_driver_ndis_set_wzc() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_ndis.c458 int ret; in ndis_get_oid() local
491 ret = written; in ndis_get_oid()
493 return ret; in ndis_get_oid()
497 int ret; in ndis_get_oid()
519 ret = o->Length; in ndis_get_oid()
521 return ret; in ndis_get_oid()
1203 int len, count, i, ret; in wpa_driver_ndis_set_pmkid() local
1229 ret = ndis_set_oid(drv, OID_802_11_PMKID, (char *) p, len); in wpa_driver_ndis_set_pmkid()
1231 return ret; in wpa_driver_ndis_set_pmkid()
1317 int prev_authmode, ret; in wpa_driver_ndis_flush_pmkid() local
2410 LONG ret; wpa_driver_ndis_set_wzc() local
[all...]
/base/msdp/device_status/intention/cooperate/plugin/src/
H A Dstate_machine.cpp50 auto ret = sender_.Send(CooperateEvent( in OnProcessDied() local
55 if (ret != Channel<CooperateEvent>::NO_ERROR) { in OnProcessDied()
56 FI_HILOGE("Failed to send event via channel, error:%{public}d", ret); in OnProcessDied()
352 auto ret = onlineBoards_.insert(onlineEvent.networkId); in OnBoardOnline() local
353 if (ret.second) { in OnBoardOnline()
599 auto ret = context.Sender().Send(CooperateEvent( in OnCommonEvent() local
604 if (ret != Channel<CooperateEvent>::NO_ERROR) { in OnCommonEvent()
605 FI_HILOGE("Failed to send event via channel, error:%{public}d", ret); in OnCommonEvent()
647 auto ret = context.Sender().Send(CooperateEvent( in AddMonitor()
658 if (ret ! in AddMonitor()
[all...]
/base/notification/common_event_service/services/src/
H A Dinner_common_event_manager.cpp114 bool ret = false; in GetJsonByFilePath() local
127 ret = true; in GetJsonByFilePath()
133 ret = GetJsonFromFile(filePath, localRoot); in GetJsonByFilePath()
134 if (ret) { in GetJsonByFilePath()
138 return ret; in GetJsonByFilePath()
147 bool ret = false; in GetConfigJson() local
149 [&keyCheck, &configJson, &ret](const nlohmann::json &json) { in GetConfigJson()
152 ret = true; in GetConfigJson()
159 ret = true; in GetConfigJson()
163 if (!ret) { in GetConfigJson()
[all...]

Completed in 59 milliseconds

1...<<591592593594595596597598599600>>...870