Home
last modified time | relevance | path

Searched refs:ret (Results 1401 - 1425 of 18157) sorted by relevance

1...<<51525354555657585960>>...727

/third_party/mbedtls/library/
H A Dasn1parse.c84 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; in mbedtls_asn1_get_bool() local
87 if ((ret = mbedtls_asn1_get_tag(p, end, &len, MBEDTLS_ASN1_BOOLEAN)) != 0) { in mbedtls_asn1_get_bool()
88 return ret; in mbedtls_asn1_get_bool()
105 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; in asn1_get_tagged_int() local
108 if ((ret = mbedtls_asn1_get_tag(p, end, &len, tag)) != 0) { in asn1_get_tagged_int()
109 return ret; in asn1_get_tagged_int()
167 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; in mbedtls_asn1_get_mpi() local
170 if ((ret = mbedtls_asn1_get_tag(p, end, &len, MBEDTLS_ASN1_INTEGER)) != 0) { in mbedtls_asn1_get_mpi()
171 return ret; in mbedtls_asn1_get_mpi()
174 ret in mbedtls_asn1_get_mpi()
185 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; mbedtls_asn1_get_bitstring() local
229 int ret; mbedtls_asn1_traverse_sequence_of() local
274 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; mbedtls_asn1_get_bitstring_null() local
355 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; mbedtls_asn1_get_alg() local
403 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; mbedtls_asn1_get_alg_null() local
[all...]
H A Dpkcs12.c39 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; in pkcs12_parse_pbe_params() local
55 if ((ret = mbedtls_asn1_get_tag(p, end, &salt->len, MBEDTLS_ASN1_OCTET_STRING)) != 0) { in pkcs12_parse_pbe_params()
56 return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT, ret); in pkcs12_parse_pbe_params()
62 if ((ret = mbedtls_asn1_get_int(p, end, iterations)) != 0) { in pkcs12_parse_pbe_params()
63 return MBEDTLS_ERROR_ADD(MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT, ret); in pkcs12_parse_pbe_params()
81 int ret, iterations = 0; in pkcs12_pbe_derive_key_iv() local
93 if ((ret = pkcs12_parse_pbe_params(pbe_params, &salt, in pkcs12_pbe_derive_key_iv()
95 return ret; in pkcs12_pbe_derive_key_iv()
102 if ((ret = mbedtls_pkcs12_derivation(key, keylen, unipwd, pwdlen * 2 + 2, in pkcs12_pbe_derive_key_iv()
105 return ret; in pkcs12_pbe_derive_key_iv()
157 int ret, keylen = 0; mbedtls_pkcs12_pbe_ext() local
273 int ret = -1; calculate_hashes() local
331 int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED; mbedtls_pkcs12_derivation() local
[all...]
/third_party/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_core.c229 struct rbug_proto_noop *ret; in rbug_demarshal_noop() local
236 ret = MALLOC(sizeof(*ret)); in rbug_demarshal_noop()
237 if (!ret) in rbug_demarshal_noop()
240 ret->header.__message = header; in rbug_demarshal_noop()
241 ret->header.opcode = header->opcode; in rbug_demarshal_noop()
243 return ret; in rbug_demarshal_noop()
248 struct rbug_proto_ping *ret; in rbug_demarshal_ping() local
255 ret = MALLOC(sizeof(*ret)); in rbug_demarshal_ping()
270 struct rbug_proto_error *ret; rbug_demarshal_error() local
297 struct rbug_proto_ping_reply *ret; rbug_demarshal_ping_reply() local
324 struct rbug_proto_error_reply *ret; rbug_demarshal_error_reply() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbss_mem.c84 BIO *ret; in BIO_new_mem_buf() local
94 if ((ret = BIO_new(BIO_s_mem())) == NULL) in BIO_new_mem_buf()
96 bb = (BIO_BUF_MEM *)ret->ptr; in BIO_new_mem_buf()
103 ret->flags |= BIO_FLAGS_MEM_RDONLY; in BIO_new_mem_buf()
105 ret->num = 0; in BIO_new_mem_buf()
106 return ret; in BIO_new_mem_buf()
193 int ret = -1; in mem_read() local
200 ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl; in mem_read()
201 if ((out != NULL) && (ret > 0)) { in mem_read()
202 memcpy(out, bm->data, ret); in mem_read()
216 int ret = -1; mem_write() local
244 long ret = 1; mem_ctrl() local
344 int ret = -1; mem_gets() local
381 int n, ret; mem_puts() local
[all...]
/third_party/openssl/crypto/dh/
H A Ddh_check.c48 int DH_check_params(const DH *dh, int *ret) in DH_check_params() argument
52 *ret = 0; in DH_check_params()
66 FFC_PARAM_TYPE_DH, ret, NULL); in DH_check_params()
69 int DH_check_params(const DH *dh, int *ret) in DH_check_params() argument
75 *ret = 0; in DH_check_params()
85 *ret |= DH_CHECK_P_NOT_PRIME; in DH_check_params()
89 *ret |= DH_NOT_SUITABLE_GENERATOR; in DH_check_params()
93 *ret |= DH_NOT_SUITABLE_GENERATOR; in DH_check_params()
95 *ret |= DH_MODULUS_TOO_SMALL; in DH_check_params()
97 *ret | in DH_check_params()
141 DH_check(const DH *dh, int *ret) DH_check() argument
249 DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *ret) DH_check_pub_key() argument
271 ossl_dh_check_pub_key_partial(const DH *dh, const BIGNUM *pub_key, int *ret) ossl_dh_check_pub_key_partial() argument
276 ossl_dh_check_priv_key(const DH *dh, const BIGNUM *priv_key, int *ret) ossl_dh_check_priv_key() argument
332 int ret = 0; ossl_dh_check_pairwise() local
[all...]
/third_party/openssl/crypto/bio/
H A Dbss_mem.c84 BIO *ret; in BIO_new_mem_buf() local
94 if ((ret = BIO_new(BIO_s_mem())) == NULL) in BIO_new_mem_buf()
96 bb = (BIO_BUF_MEM *)ret->ptr; in BIO_new_mem_buf()
103 ret->flags |= BIO_FLAGS_MEM_RDONLY; in BIO_new_mem_buf()
105 ret->num = 0; in BIO_new_mem_buf()
106 return ret; in BIO_new_mem_buf()
193 int ret = -1; in mem_read() local
200 ret = (outl >= 0 && (size_t)outl > bm->length) ? (int)bm->length : outl; in mem_read()
201 if ((out != NULL) && (ret > 0)) { in mem_read()
202 memcpy(out, bm->data, ret); in mem_read()
216 int ret = -1; mem_write() local
244 long ret = 1; mem_ctrl() local
344 int ret = -1; mem_gets() local
381 int n, ret; mem_puts() local
[all...]
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_host.cpp626 bool ret = GetApplicationInfo(name, flag, userId, info); in HandleGetApplicationInfo() local
627 if (!reply.WriteBool(ret)) { in HandleGetApplicationInfo()
631 if (ret) { in HandleGetApplicationInfo()
649 bool ret = GetApplicationInfo(name, flags, userId, info); in HandleGetApplicationInfoWithIntFlags() local
650 if (!reply.WriteBool(ret)) { in HandleGetApplicationInfoWithIntFlags()
654 if (ret) { in HandleGetApplicationInfoWithIntFlags()
672 auto ret = GetApplicationInfoV9(name, flags, userId, info); in HandleGetApplicationInfoWithIntFlagsV9() local
673 if (!reply.WriteInt32(ret)) { in HandleGetApplicationInfoWithIntFlagsV9()
677 if (ret == ERR_OK) { in HandleGetApplicationInfoWithIntFlagsV9()
692 bool ret in HandleGetApplicationInfos() local
712 bool ret = GetApplicationInfos(flags, userId, infos); HandleGetApplicationInfosWithIntFlags() local
732 auto ret = GetApplicationInfosV9(flags, userId, infos); HandleGetApplicationInfosWithIntFlagsV9() local
754 bool ret = GetBundleInfo(name, flag, info, userId); HandleGetBundleInfo() local
770 auto ret = GetBundleInfoForSelf(flags, info); HandleGetBundleInfoForSelf() local
790 auto ret = GetDependentBundleInfo(name, info, flag); HandleGetDependentBundleInfo() local
811 bool ret = GetBundleInfo(name, flags, info, userId); HandleGetBundleInfoWithIntFlags() local
833 auto ret = GetBundleInfoV9(name, flags, info, userId); HandleGetBundleInfoWithIntFlagsV9() local
866 auto ret = BatchGetBundleInfo(bundleNames, flags, bundleInfos, userId); HandleBatchGetBundleInfo() local
888 ErrCode ret = GetBundlePackInfo(name, flag, info, userId); HandleGetBundlePackInfo() local
910 ErrCode ret = GetBundlePackInfo(name, flags, info, userId); HandleGetBundlePackInfoWithIntFlags() local
932 bool ret = GetBundleInfos(flag, infos, userId); HandleGetBundleInfos() local
955 bool ret = GetBundleInfos(flags, infos, userId); HandleGetBundleInfosWithIntFlags() local
977 auto ret = GetBundleInfosV9(flags, infos, userId); HandleGetBundleInfosWithIntFlagsV9() local
997 bool ret = GetBundleNameForUid(uid, name); HandleGetBundleNameForUid() local
1016 bool ret = GetBundlesForUid(uid, names); HandleGetBundlesForUid() local
1035 ErrCode ret = GetNameForUid(uid, name); HandleGetNameForUid() local
1055 ErrCode ret = GetNameAndIndexForUid(uid, bundleName, appIndex); HandleGetNameAndIndexForUid() local
1079 bool ret = GetBundleGids(name, gids); HandleGetBundleGids() local
1100 bool ret = GetBundleGidsByUid(name, uid, gids); HandleGetBundleGidsByUid() local
1120 bool ret = GetBundleInfosByMetaData(metaData, infos); HandleGetBundleInfosByMetaData() local
1144 bool ret = QueryAbilityInfo(*want, info); HandleQueryAbilityInfo() local
1169 bool ret = QueryAbilityInfo(*want, flags, userId, info); HandleQueryAbilityInfoMutiparam() local
1193 bool ret = QueryAbilityInfos(*want, abilityInfos); HandleQueryAbilityInfos() local
1218 bool ret = QueryAbilityInfos(*want, flags, userId, abilityInfos); HandleQueryAbilityInfosMutiparam() local
1243 ErrCode ret = QueryAbilityInfosV9(*want, flags, userId, abilityInfos); HandleQueryAbilityInfosV9() local
1278 ErrCode ret = BatchQueryAbilityInfos(wants, flags, userId, abilityInfos); HandleBatchQueryAbilityInfos() local
1301 ErrCode ret = QueryLauncherAbilityInfos(*want, userId, abilityInfos); HandleQueryLauncherAbilityInfos() local
1325 bool ret = QueryAllAbilityInfos(*want, userId, abilityInfos); HandleQueryAllAbilityInfos() local
1344 bool ret = QueryAbilityInfoByUri(abilityUri, info); HandleQueryAbilityInfoByUri() local
1363 bool ret = QueryAbilityInfosByUri(abilityUri, abilityInfos); HandleQueryAbilityInfosByUri() local
1382 bool ret = QueryAbilityInfoByUri(abilityUri, userId, info); HandleQueryAbilityInfoByUriForUserId() local
1400 bool ret = QueryKeepAliveBundleInfos(infos); HandleQueryKeepAliveBundleInfos() local
1443 ErrCode ret = GetAbilityLabel(bundleName, moduleName, abilityName, label); HandleGetAbilityLabelWithModuleName() local
1458 bool ret = CheckIsSystemAppByUid(uid); HandleCheckIsSystemAppByUid() local
1474 bool ret = GetBundleArchiveInfo(hapFilePath, flag, info); HandleGetBundleArchiveInfo() local
1496 bool ret = GetBundleArchiveInfo(hapFilePath, flags, info); HandleGetBundleArchiveInfoWithIntFlags() local
1518 ErrCode ret = GetBundleArchiveInfoV9(hapFilePath, flags, info); HandleGetBundleArchiveInfoWithIntFlagsV9() local
1542 bool ret = GetHapModuleInfo(*abilityInfo, info); HandleGetHapModuleInfo() local
1567 bool ret = GetHapModuleInfo(*abilityInfo, userId, info); HandleGetHapModuleInfoWithUserId() local
1589 ErrCode ret = GetLaunchWantForBundle(bundleName, want, userId); HandleGetLaunchWantForBundle() local
1610 ErrCode ret = GetPermissionDef(permissionName, permissionDef); HandleGetPermissionDef() local
1629 ErrCode ret = CleanBundleCacheFilesAutomatic(cacheSize); HandleCleanBundleCacheFilesAutomatic() local
1651 ErrCode ret = CleanBundleCacheFiles(bundleName, cleanCacheCallback, userId, appIndex); HandleCleanBundleCacheFiles() local
1666 bool ret = CleanBundleDataFiles(bundleName, userId, appIndex); HandleCleanBundleDataFiles() local
1686 bool ret = false; HandleRegisterBundleStatusCallback() local
1714 bool ret = RegisterBundleEventCallback(bundleEventCallback); HandleRegisterBundleEventCallback() local
1732 bool ret = UnregisterBundleEventCallback(bundleEventCallback); HandleUnregisterBundleEventCallback() local
1750 bool ret = ClearBundleStatusCallback(BundleStatusCallback); HandleClearBundleStatusCallback() local
1761 bool ret = UnregisterBundleStatusCallback(); HandleUnregisterBundleStatusCallback() local
1778 ErrCode ret = CompileProcessAOT(bundleName, compileMode, isAllBundle, compileResults); HandleCompileProcessAOT() local
1800 ErrCode ret = CompileReset(bundleName, isAllBundle); HandleCompileReset() local
1815 ErrCode ret = CopyAp(bundleName, isAllBundle, results); HandleCopyAp() local
1837 bool ret = DumpInfos(flag, bundleName, userId, result); HandleDumpInfos() local
1862 ErrCode ret = IsApplicationEnabled(bundleName, isEnable); HandleIsApplicationEnabled() local
1884 ErrCode ret = IsCloneApplicationEnabled(bundleName, appIndex, isEnable); HandleIsCloneApplicationEnabled() local
1904 ErrCode ret = SetApplicationEnabled(bundleName, isEnable, userId); HandleSetApplicationEnabled() local
1923 ErrCode ret = SetCloneApplicationEnabled(bundleName, appIndex, isEnable, userId); HandleSetCloneApplicationEnabled() local
1939 ErrCode ret = IsAbilityEnabled(*abilityInfo, isEnable); HandleIsAbilityEnabled() local
1961 ErrCode ret = IsCloneAbilityEnabled(*abilityInfo, appIndex, isEnable); HandleIsCloneAbilityEnabled() local
1981 ErrCode ret = SetAbilityEnabled(*abilityInfo, isEnabled, userId); HandleSetAbilityEnabled() local
2000 ErrCode ret = SetCloneAbilityEnabled(*abilityInfo, appIndex, isEnabled, userId); HandleSetCloneAbilityEnabled() local
2013 bool ret = GetAbilityInfo(bundleName, abilityName, info); HandleGetAbilityInfo() local
2034 bool ret = GetAbilityInfo(bundleName, moduleName, abilityName, info); HandleGetAbilityInfoWithModuleName() local
2116 bool ret = GetAllFormsInfo(infos); HandleGetAllFormsInfo() local
2136 bool ret = GetFormsInfoByApp(bundlename, infos); HandleGetFormsInfoByApp() local
2157 bool ret = GetFormsInfoByModule(bundlename, modulename, infos); HandleGetFormsInfoByModule() local
2177 bool ret = GetShortcutInfos(bundlename, infos); HandleGetShortcutInfos() local
2198 ErrCode ret = GetShortcutInfoV9(bundlename, infos, userId); HandleGetShortcutInfoV9() local
2215 bool ret = GetAllCommonEventInfo(eventKey, infos); HandleGetAllCommonEventInfo() local
2239 bool ret = GetDistributedBundleInfo(networkId, bundleName, distributedBundleInfo); HandleGetDistributedBundleInfo() local
2257 auto ret = GetAppPrivilegeLevel(bundleName, userId); HandleGetAppPrivilegeLevel() local
2276 bool ret = QueryExtensionAbilityInfos(*want, flag, userId, infos); HandleQueryExtAbilityInfosWithoutType() local
2301 ErrCode ret = QueryExtensionAbilityInfosV9(*want, flags, userId, infos); HandleQueryExtAbilityInfosWithoutTypeV9() local
2325 bool ret = QueryExtensionAbilityInfos(*want, type, flag, userId, infos); HandleQueryExtAbilityInfos() local
2350 ErrCode ret = QueryExtensionAbilityInfosV9(*want, type, flags, userId, infos); HandleQueryExtAbilityInfosV9() local
2368 bool ret = QueryExtensionAbilityInfos(type, userId, infos); HandleQueryExtAbilityInfosByType() local
2384 bool ret = VerifyCallingPermission(permission); HandleVerifyCallingPermission() local
2398 bool ret = QueryExtensionAbilityInfoByUri(uri, userId, extensionAbilityInfo); HandleQueryExtensionAbilityInfoByUri() local
2476 ErrCode ret = IsModuleRemovable(bundleName, moduleName, isRemovable); HandleIsModuleRemovable() local
2495 bool ret = SetModuleRemovable(bundleName, moduleName, isEnable); HandleSetModuleRemovable() local
2510 bool ret = GetModuleUpgradeFlag(bundleName, moduleName); HandleGetModuleUpgradeFlag() local
2525 ErrCode ret = SetModuleUpgradeFlag(bundleName, moduleName, upgradeFlag); HandleSetModuleUpgradeFlag() local
2545 bool ret = ImplicitQueryInfoByPriority(*want, flags, userId, abilityInfo, extensionInfo); HandleImplicitQueryInfoByPriority() local
2577 bool ret = ImplicitQueryInfos(*want, flags, userId, withDefault, abilityInfos, extensionInfos, findDefaultApp); HandleImplicitQueryInfos() local
2605 bool ret = GetAllDependentModuleNames(bundleName, moduleName, dependentModuleNames); HandleGetAllDependentModuleNames() local
2640 auto ret = ObtainCallingBundleName(bundleName); HandleObtainCallingBundleName() local
2664 auto ret = CheckAbilityEnableInstall(*want, missionId, userId, object); HandleCheckAbilityEnableInstall() local
2846 bool ret = VerifySystemApi(beginApiVersion); HandleVerifySystemApi() local
2921 bool ret = QueryAbilityInfo(*want, flags, userId, info, object); HandleQueryAbilityInfoWithCallback() local
2945 bool ret = SilentInstall(*want, userId, object); HandleSilentInstall() local
2973 bool ret = GetBundleStats(bundleName, userId, bundleStats, appIndex); HandleGetBundleStats() local
2990 bool ret = GetAllBundleStats(userId, bundleStats); HandleGetAllBundleStats() local
3013 ErrCode ret = GetMediaData(bundleName, moduleName, abilityName, mediaDataPtr, len, userId); HandleGetMediaData() local
3056 auto ret = SetDebugMode(enable); HandleSetDebugMode() local
3092 auto ret = ProcessPreload(*want); HandleProcessPreload() local
3106 ErrCode ret = GetAppProvisionInfo(bundleName, userId, appProvisionInfo); HandleGetAppProvisionInfo() local
3126 ErrCode ret = GetProvisionMetadata(bundleName, userId, provisionMetadatas); HandleGetProvisionMetadata() local
3151 ErrCode ret = GetBaseSharedBundleInfos(bundleName, infos, flag); HandleGetBaseSharedBundleInfos() local
3170 ErrCode ret = GetAllSharedBundleInfo(infos); HandleGetAllSharedBundleInfo() local
3188 ErrCode ret = GetSharedBundleInfo(bundleName, moduleName, infos); HandleGetSharedBundleInfo() local
3205 ErrCode ret = GetSharedBundleInfoBySelf(bundleName, shareBundleInfo); HandleGetSharedBundleInfoBySelf() local
3223 ErrCode ret = GetSharedDependencies(bundleName, moduleName, dependencies); HandleGetSharedDependencies() local
3242 ErrCode ret = GetProxyDataInfos(bundleName, moduleName, proxyDatas, userId); HandleGetProxyDataInfos() local
3259 ErrCode ret = GetAllProxyDataInfos(proxyDatas, userId); HandleGetAllProxyDataInfos() local
3276 ErrCode ret = GetSpecifiedDistributionType(bundleName, specifiedDistributedType); HandleGetSpecifiedDistributionType() local
3293 ErrCode ret = GetAdditionalInfo(bundleName, additionalInfo); HandleGetAdditionalInfo() local
3313 ErrCode ret = SetExtNameOrMIMEToApp(bundleName, moduleName, abilityName, extName, mimeType); HandleSetExtNameOrMIMEToApp() local
3329 ErrCode ret = DelExtNameOrMIMEToApp(bundleName, moduleName, abilityName, extName, mimeType); HandleDelExtNameOrMIMEToApp() local
3344 bool ret = QueryDataGroupInfos(bundleName, userId, infos); HandleQueryDataGroupInfos() local
3361 bool ret = GetGroupDir(dataGroupId, dir); HandleGetPreferenceDirByGroupId() local
3380 bool ret = QueryAppGalleryBundleName(bundleName); HandleQueryAppGalleryBundleName() local
3407 ErrCode ret = HandleQueryExtensionAbilityInfosWithTypeName() local
3427 ErrCode ret = HandleQueryExtensionAbilityInfosOnlyWithTypeName() local
3448 ErrCode ret = ResetAOTCompileStatus(bundleName, moduleName, triggerMode); HandleResetAOTCompileStatus() local
3465 ErrCode ret = GetJsonProfile(profileType, bundleName, moduleName, profile, userId); HandleGetJsonProfile() local
3497 ErrCode ret = GetRecoverableApplicationInfo(infos); HandleGetRecoverableApplicationInfo() local
3519 auto ret = GetUninstalledBundleInfo(name, info); HandleGetUninstalledBundleInfo() local
3536 ErrCode ret = SetAdditionalInfo(bundleName, additionalInfo); HandleSetAdditionalInfo() local
3549 ErrCode ret = CreateBundleDataDir(userId); HandleCreateBundleDataDir() local
3591 bool ret = ashmem->MapReadAndWriteAshmem(); WriteParcelableIntoAshmem() local
3722 ErrCode ret = CanOpenLink(link, canOpen); HandleCanOpenLink() local
3738 auto ret = GetOdid(odid); HandleGetOdid() local
3756 ErrCode ret = GetAllPreinstalledApplicationInfos(preinstalledApplicationInfos); HandleGetAllPreinstalledApplicationInfos() local
3787 auto ret = GetAllBundleInfoByDeveloperId(developerId, infos, userId); HandleGetAllBundleInfoByDeveloperId() local
3807 auto ret = GetDeveloperIds(appDistributionType, developerIdList, userId); HandleGetDeveloperIds() local
3827 ErrCode ret = SwitchUninstallState(bundleName, state, isNeedSendNotify); HandleSwitchUninstallState() local
3842 auto ret = QueryAbilityInfoByContinueType(bundleName, continueType, abilityInfo, userId); HandleQueryAbilityInfoByContinueType() local
3869 auto ret = QueryCloneAbilityInfo(*elementNamePtr, flags, appIndex, abilityInfo, userId); HandleQueryCloneAbilityInfo() local
3890 auto ret = GetCloneBundleInfo(bundleName, flags, appIndex, bundleInfo, userId); HandleGetCloneBundleInfo() local
3909 auto ret = GetCloneAppIndexes(bundleName, appIndexes, userId); HandleGetCloneAppIndexes() local
3925 ErrCode ret = GetLaunchWant(want); HandleGetLaunchWant() local
3951 auto ret = QueryCloneExtensionAbilityInfoWithAppIndex(*element, flag, appIndex, extensionAbilityInfo, userId); HandleQueryCloneExtensionAbilityInfoWithAppIndex() local
3967 ErrCode ret = GetSignatureInfoByBundleName(name, info); HandleGetSignatureInfoByBundleName() local
3983 ErrCode ret = UpdateAppEncryptedStatus(name, isExisted, appIndex); HandleUpdateAppEncryptedStatus() local
3995 auto ret = ReadParcelInfoIntelligent(data, shortcutInfo); HandleAddDesktopShortcutInfo() local
4013 auto ret = ReadParcelInfoIntelligent(data, shortcutInfo); HandleDeleteDesktopShortcutInfo() local
4032 auto ret = GetAllDesktopShortcutInfo(userId, infos); HandleGetAllDesktopShortcutInfo() local
4049 auto ret = GetOdidByBundleName(bundleName, odid); HandleGetOdidByBundleName() local
4070 bool ret = GetBundleInfosForContinuation(flags, infos, userId); HandleGetBundleInfosForContinuation() local
4093 auto ret = GetContinueBundleNames(continueBundleName, bundleNames, userId); HandleGetContinueBundleNames() local
4112 auto ret = IsBundleInstalled(bundleName, userId, apppIndex, isBundleInstalled); HandleIsBundleInstalled() local
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/regulator/
H A Dfan53555.c169 int ret; in fan53555_get_voltage() local
172 ret = regmap_read(di->regmap, RK860X_MAX_SET, &val); in fan53555_get_voltage()
173 if (ret < 0) { in fan53555_get_voltage()
174 return ret; in fan53555_get_voltage()
176 ret = regulator_get_voltage_sel_regmap(rdev); in fan53555_get_voltage()
177 if (ret > val) { in fan53555_get_voltage()
181 ret = regulator_get_voltage_sel_regmap(rdev); in fan53555_get_voltage()
184 return ret; in fan53555_get_voltage()
190 int ret; in fan53555_set_suspend_voltage() local
195 ret in fan53555_set_suspend_voltage()
252 int ret = 0; fan53555_is_enabled() local
294 int ret = 0; fan53555_get_mode() local
445 int ret = 0, val; fan53555_voltages_setup_rk() local
548 int ret = 0; fan53555_device_setup() local
634 int ret, flag, limit_volt; fan53555_parse_dt() local
704 int ret; fan53555_regulator_probe() local
789 int ret; fan53555_regulator_shutdown() local
[all...]
/foundation/distributeddatamgr/data_share/frameworks/native/provider/src/
H A Ddatashare_stub_impl.cpp51 std::vector<std::string> ret; in GetFileTypes() local
55 return ret; in GetFileTypes()
61 std::function<bool()> getRetFunc = [extension, &ret]() -> bool { in GetFileTypes()
66 extension->GetResult(ret); in GetFileTypes()
71 return ret; in GetFileTypes()
83 int ret = -1; in OpenFile() local
88 std::function<bool()> getRetFunc = [extension, &ret]() -> bool { in OpenFile()
93 extension->GetResult(ret); in OpenFile()
98 return ret; in OpenFile()
111 std::shared_ptr<int> ret in OpenRawFile() local
137 int ret = 0; Insert() local
172 int ret = 0; Update() local
203 std::shared_ptr<int> ret = std::make_shared<int>(0); BatchUpdate() local
238 int ret = 0; Delete() local
272 int ret = 0; InsertEx() local
307 int ret = 0; UpdateEx() local
341 int ret = 0; DeleteEx() local
399 std::string ret = ""; GetType() local
440 int ret = 0; BatchInsert() local
488 std::shared_ptr<bool> ret = std::make_shared<bool>(false); NotifyChange() local
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hdmi/src/mkp/hal/ctrl/hisiv100/
H A Dhdmi_hal_ddc.c60 hi_s32 ret = HI_SUCCESS; in ddc_access_enable_wait() local
69 ret = HI_FAILURE; in ddc_access_enable_wait()
73 return ret; in ddc_access_enable_wait()
78 hi_s32 ret = HI_SUCCESS; in ddc_access_disable_wait() local
87 ret = HI_FAILURE; in ddc_access_disable_wait()
91 return ret; in ddc_access_disable_wait()
96 hi_s32 ret = HI_SUCCESS; in ddc_scl_wait() local
103 ret = HI_FAILURE; in ddc_scl_wait()
107 return ret; in ddc_scl_wait()
113 hi_s32 ret in ddc_sda_wait() local
151 hi_s32 ret = HI_SUCCESS; ddc_in_prog_wait() local
344 hi_s32 ret = HI_SUCCESS; ddc_err_clean_check() local
397 hi_s32 ret = HI_SUCCESS; ddc_issue() local
480 hi_s32 ret; hal_hdmi_ddc_issue() local
555 hi_s32 ret = raw_len; edid_get_extern_blk() local
575 hi_s32 ret; hal_hdmi_ddc_edid_raw_get() local
[all...]
/device/soc/hisilicon/hi3751v350/sdk_linux/source/msp/drv/i2c/std_i2c/
H A Ddrv_i2c_intf.c160 hi_s32 ret; in i2c_proc_wr_read() local
166 ret = i2c_proc_wr_read_get_dev_msg(arg_count, argv, &i2c_dev_msg); in i2c_proc_wr_read()
167 if (ret != HI_SUCCESS) { in i2c_proc_wr_read()
169 return ret; in i2c_proc_wr_read()
172 HI_I2C_ERR_PRINT(i2c_dev_msg.data_len >= sizeof(p_data), ret, "data len is too long\n\n"); in i2c_proc_wr_read()
175 ret = hi_drv_i2c_read(i2c_dev_msg.i2c_no, (hi_u8)(i2c_dev_msg.dev_addr), \ in i2c_proc_wr_read()
178 HI_I2C_ERR_PRINT(ret != HI_SUCCESS, ret, "Read failed\n\n"); in i2c_proc_wr_read()
190 ret = osal_exportfunc_get(HI_ID_GPIO_I2C, (hi_void **)&g_pst_gpio_i2c_ext_funcs); in i2c_proc_wr_read()
191 b_temp = (ret ! in i2c_proc_wr_read()
279 hi_s32 ret; i2c_proc_wr_write() local
338 hi_s32 ret; i2c_open() local
399 hi_s32 ret; i2c_drv_mod_init() local
[all...]
/foundation/ability/dmsfwk/services/dtbschedmgr/src/softbus_adapter/transport/
H A Ddsched_transport_softbus_adapter.cpp77 int32_t ret = ERR_OK; in InitChannel() local
79 ret = DSchedAllConnectManager::GetInstance().InitAllConnectManager(); in InitChannel()
80 if (ret != ERR_OK) { in InitChannel()
81 HILOGE("Init all connect manager fail, ret: %{public}d.", ret); in InitChannel()
87 HILOGE("create socket failed, ret: %{public}d", serverSocket_); in InitChannel()
91 ret = Listen(serverSocket_, g_qosInfo, g_QosTV_Param_Index, &iSocketListener); in InitChannel()
92 if (ret != ERR_OK) { in InitChannel()
93 HILOGE("service listen failed, ret: %{public}d", ret); in InitChannel()
134 int32_t ret = ERR_OK; ConnectDevice() local
163 int32_t ret = ERR_OK; AddNewPeerSession() local
239 int32_t ret = DSchedAllConnectManager::GetInstance().PublishServiceState(peerDeviceId, "", SCM_CONNECTED); CreateSessionRecord() local
274 int32_t ret = DSchedAllConnectManager::GetInstance().PublishServiceState(peerDeviceId, "", SCM_IDLE); ShutdownSession() local
296 int32_t ret = CreateSessionRecord(sessionId, peerDeviceId, true); OnBind() local
354 int32_t ret = DSchedAllConnectManager::GetInstance().UninitAllConnectManager(); ReleaseChannel() local
398 int32_t ret = memcpy_s(buffer->Data(), buffer->Capacity(), data, dataLen); OnBytes() local
[all...]
/foundation/multimedia/camera_framework/interfaces/inner_api/native/test/
H A Dcamera_video.cpp184 int32_t ret = -1; in main() local
334 ret = captureSession->AddInput(captureInput); in main()
335 if (ret != 0) { in main()
336 MEDIA_DEBUG_LOG("Add input to session is failed, ret: %{public}d", ret); in main()
359 ret = captureSession->AddOutput(previewOutput); in main()
360 if (ret != 0) { in main()
361 MEDIA_DEBUG_LOG("Failed to Add output to session, ret: %{public}d", ret); in main()
404 ret in main()
[all...]
/foundation/communication/wifi/wifi/frameworks/js/napi/src/
H A Dwifi_napi_hotspot.cpp38 ErrCode ret = wifiHotspotPtr->EnableHotspot(); in EnableHotspot() local
39 if (ret != WIFI_OPT_SUCCESS) { in EnableHotspot()
40 WIFI_LOGE("Enable hotspot error: %{public}d", ret); in EnableHotspot()
42 WIFI_NAPI_RETURN(env, ret == WIFI_OPT_SUCCESS, ret, SYSCAP_WIFI_AP_CORE); in EnableHotspot()
49 ErrCode ret = wifiHotspotPtr->DisableHotspot(); in DisableHotspot() local
50 if (ret != WIFI_OPT_SUCCESS) { in DisableHotspot()
51 WIFI_LOGE("Disable hotspot error: %{public}d", ret); in DisableHotspot()
53 WIFI_NAPI_RETURN(env, ret == WIFI_OPT_SUCCESS, ret, SYSCAP_WIFI_AP_COR in DisableHotspot()
60 ErrCode ret = wifiHotspotPtr->IsHotspotActive(isActive); IsHotspotActive() local
71 ErrCode ret = wifiHotspotPtr->IsHotspotDualBandSupported(isSupported); IsHotspotDualBandSupported() local
175 ErrCode ret = wifiHotspotPtr->SetHotspotIdleTimeout(time); SetHotspotIdleTimeout() local
194 ErrCode ret = WIFI_OPT_FAILED; SetHotspotConfig() local
223 ErrCode ret = wifiHotspotPtr->GetHotspotConfig(config); GetHotspotConfig() local
255 ErrCode ret = wifiHotspotPtr->GetStationList(vecStationInfo); GetStations() local
293 ErrCode ret = wifiHotspotPtr->AddBlockList(stationInfo); AddHotspotBlockedList() local
314 ErrCode ret = wifiHotspotPtr->DelBlockList(stationInfo); DelHotspotBlockedList() local
326 ErrCode ret = wifiHotspotPtr->GetBlockLists(vecStationInfo); GetHotspotBlockedList() local
[all...]
/foundation/filemanagement/dfs_service/frameworks/native/cloudsync_kit_inner/src/
H A Dcloud_sync_manager_impl.cpp47 auto ret = CloudSyncServiceProxy->RegisterCallbackInner(sptr(new (std::nothrow) CloudSyncCallbackClient(callback)), in RegisterCallback() local
55 LOGI("RegisterCallback ret %{public}d", ret); in RegisterCallback()
56 return ret; in RegisterCallback()
67 auto ret = CloudSyncServiceProxy->UnRegisterCallbackInner(bundleName); in UnRegisterCallback() local
68 if (!ret) { in UnRegisterCallback()
76 LOGI("UnRegisterCallback ret %{public}d", ret); in UnRegisterCallback()
77 return ret; in UnRegisterCallback()
117 auto ret in StartSync() local
179 int32_t ret = CloudSyncServiceProxy->ChangeAppSwitch(accoutId, bundleName, status); ChangeAppSwitch() local
194 int32_t ret = CloudSyncServiceProxy->NotifyDataChange(accoutId, bundleName); NotifyDataChange() local
210 int32_t ret = CloudSyncServiceProxy->NotifyEventChange(userId, eventId, extraData); NotifyEventChange() local
224 int32_t ret = CloudSyncServiceProxy->StartDownloadFile(uri); StartDownloadFile() local
241 int32_t ret = CloudSyncServiceProxy->StartFileCache(uriVec, downloadId); StartFileCache() local
263 int32_t ret = CloudSyncServiceProxy->StartFileCache(uriVec, downloadId); StartFileCache() local
277 int32_t ret = CloudSyncServiceProxy->StopDownloadFile(uri, needClean); StopDownloadFile() local
291 int32_t ret = CloudSyncServiceProxy->StopFileCache(downloadId, needClean); StopFileCache() local
305 int32_t ret = CloudSyncServiceProxy->RegisterDownloadFileCallback( RegisterDownloadFileCallback() local
322 int32_t ret = CloudSyncServiceProxy->UnregisterDownloadFileCallback(); UnregisterDownloadFileCallback() local
410 auto ret = samgr->UnSubscribeSystemAbility(FILEMANAGEMENT_CLOUD_SYNC_SERVICE_SA_ID, listener_); SubscribeListener() local
415 auto ret = samgr->SubscribeSystemAbility(FILEMANAGEMENT_CLOUD_SYNC_SERVICE_SA_ID, listener_); SubscribeListener() local
437 auto ret = CloudSyncServiceProxy->RegisterDownloadFileCallback( OnAddSystemAbility() local
446 auto ret = CloudSyncServiceProxy->RegisterCallbackInner( OnAddSystemAbility() local
[all...]
/third_party/ltp/testcases/kernel/syscalls/nftw/
H A Dtest64.c48 int i, j, ret; in test1A() local
55 if ((ret = nftw64("./tmp/data/dirh", test_func1, MAX_FD, 0)) == -1) { in test1A()
61 if (ret == 999) { in test1A()
107 int i, ret; in test2A() local
116 if ((ret = nftw64("./tmp/data/dirl", test_func1, MAX_FD, FTW_PHYS)) in test2A()
123 if (ret == 999) { in test2A()
152 int ret; in test3A() local
161 if ((ret = nftw64("./tmp/data/dirl", test_func3, MAX_FD, 0)) == -1) { in test3A()
166 if (ret == 999) { in test3A()
302 int ret; in test7A() local
332 int ret; test8A() local
362 int ret; test9A() local
393 int ret; test10A() local
424 int i, ret; test11A() local
459 int ret; test12A() local
489 int i, ret; test13A() local
530 int ret; test14A() local
560 int ret; test15A() local
646 int ret; test17A() local
696 int ret; test18A() local
966 int ret; test23A() local
[all...]
H A Dtest.c49 int i, j, ret; in test1A() local
57 if ((ret = nftw("./tmp/data/dirh", test_func1, MAX_FD, 0)) == -1) { in test1A()
63 if (ret == 999) { in test1A()
109 int i, ret; in test2A() local
118 if ((ret = nftw("./tmp/data/dirl", test_func1, MAX_FD, FTW_PHYS)) in test2A()
125 if (ret == 999) { in test2A()
154 int ret; in test3A() local
162 if ((ret = nftw("./tmp/data/dirl", test_func3, MAX_FD, 0)) == -1) { in test3A()
167 if (ret == 999) { in test3A()
300 int ret; in test7A() local
328 int ret; test8A() local
357 int ret; test9A() local
386 int ret; test10A() local
416 int i, ret; test11A() local
450 int ret; test12A() local
480 int i, ret; test13A() local
520 int ret; test14A() local
549 int ret; test15A() local
634 int ret; test17A() local
683 int ret; test18A() local
948 int ret; test23A() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_mont.c23 static int bn_from_montgomery_word(BIGNUM *ret, BIGNUM *r, BN_MONT_CTX *mont);
29 int ret = bn_mul_mont_fixed_top(r, a, b, mont, ctx); in BN_mod_mul_montgomery() local
34 return ret; in BN_mod_mul_montgomery()
41 int ret = 0; in bn_mul_mont_fixed_top() local
81 ret = 1; in bn_mul_mont_fixed_top()
84 return ret; in bn_mul_mont_fixed_top()
88 static int bn_from_montgomery_word(BIGNUM *ret, BIGNUM *r, BN_MONT_CTX *mont) in bn_from_montgomery_word() argument
98 ret->top = 0; in bn_from_montgomery_word()
133 if (bn_wexpand(ret, nl) == NULL) in bn_from_montgomery_word()
135 ret in bn_from_montgomery_word()
162 BN_from_montgomery(BIGNUM *ret, const BIGNUM *a, BN_MONT_CTX *mont, BN_CTX *ctx) BN_from_montgomery() argument
174 bn_from_mont_fixed_top(BIGNUM *ret, const BIGNUM *a, BN_MONT_CTX *mont, BN_CTX *ctx) bn_from_mont_fixed_top() argument
230 BN_MONT_CTX *ret; BN_MONT_CTX_new() local
265 int i, ret = 0; BN_MONT_CTX_set() local
431 BN_MONT_CTX *ret; BN_MONT_CTX_set_locked() local
[all...]
/third_party/node/deps/openssl/openssl/ssl/
H A Dbio_ssl.c93 int ret = 1; in ssl_read() local
106 ret = ssl_read_internal(ssl, buf, size, readbytes); in ssl_read()
108 switch (SSL_get_error(ssl, ret)) { in ssl_read()
158 return ret; in ssl_read()
163 int ret, r = 0; in ssl_write() local
175 ret = ssl_write_internal(ssl, buf, size, written); in ssl_write()
177 switch (SSL_get_error(ssl, ret)) { in ssl_write()
220 return ret; in ssl_write()
228 long ret = 1; in ssl_ctrl() local
246 ret in ssl_ctrl()
397 long ret = 1; ssl_callback_ctrl() local
414 int n, ret; ssl_puts() local
424 BIO *ret = NULL, *buf = NULL, *ssl = NULL; BIO_new_buffer_ssl_connect() local
443 BIO *ret = NULL, *con = NULL, *ssl = NULL; BIO_new_ssl_connect() local
461 BIO *ret; BIO_new_ssl() local
[all...]
/third_party/openssl/crypto/bn/
H A Dbn_mont.c23 static int bn_from_montgomery_word(BIGNUM *ret, BIGNUM *r, BN_MONT_CTX *mont);
29 int ret = bn_mul_mont_fixed_top(r, a, b, mont, ctx); in BN_mod_mul_montgomery() local
34 return ret; in BN_mod_mul_montgomery()
41 int ret = 0; in bn_mul_mont_fixed_top() local
81 ret = 1; in bn_mul_mont_fixed_top()
84 return ret; in bn_mul_mont_fixed_top()
88 static int bn_from_montgomery_word(BIGNUM *ret, BIGNUM *r, BN_MONT_CTX *mont) in bn_from_montgomery_word() argument
98 ret->top = 0; in bn_from_montgomery_word()
133 if (bn_wexpand(ret, nl) == NULL) in bn_from_montgomery_word()
135 ret in bn_from_montgomery_word()
162 BN_from_montgomery(BIGNUM *ret, const BIGNUM *a, BN_MONT_CTX *mont, BN_CTX *ctx) BN_from_montgomery() argument
174 bn_from_mont_fixed_top(BIGNUM *ret, const BIGNUM *a, BN_MONT_CTX *mont, BN_CTX *ctx) bn_from_mont_fixed_top() argument
230 BN_MONT_CTX *ret; BN_MONT_CTX_new() local
265 int i, ret = 0; BN_MONT_CTX_set() local
431 BN_MONT_CTX *ret; BN_MONT_CTX_set_locked() local
[all...]
/third_party/openssl/ssl/
H A Dbio_ssl.c93 int ret = 1; in ssl_read() local
106 ret = ssl_read_internal(ssl, buf, size, readbytes); in ssl_read()
108 switch (SSL_get_error(ssl, ret)) { in ssl_read()
158 return ret; in ssl_read()
163 int ret, r = 0; in ssl_write() local
175 ret = ssl_write_internal(ssl, buf, size, written); in ssl_write()
177 switch (SSL_get_error(ssl, ret)) { in ssl_write()
220 return ret; in ssl_write()
228 long ret = 1; in ssl_ctrl() local
246 ret in ssl_ctrl()
397 long ret = 1; ssl_callback_ctrl() local
414 int n, ret; ssl_puts() local
424 BIO *ret = NULL, *buf = NULL, *ssl = NULL; BIO_new_buffer_ssl_connect() local
443 BIO *ret = NULL, *con = NULL, *ssl = NULL; BIO_new_ssl_connect() local
461 BIO *ret; BIO_new_ssl() local
[all...]
/foundation/multimedia/av_codec/services/media_engine/modules/media_codec/
H A Dmedia_codec.cpp118 auto ret = codecPlugin_->Init(); in Init() local
119 FALSE_RETURN_V_MSG_E(ret == Status::OK, (int32_t)ret, "pluign init failed"); in Init()
142 Status ret = codecPlugin_->Init(); in Init() local
143 FALSE_RETURN_V_MSG_E(ret == Status::OK, (int32_t)Status::ERROR_INVALID_PARAMETER, "pluign init failed"); in Init()
163 auto ret = codecPlugin_->SetParameter(meta); in Configure() local
164 FALSE_RETURN_V(ret == Status::OK, (int32_t)ret); in Configure()
165 ret = codecPlugin_->SetDataCallback(this); in Configure()
166 FALSE_RETURN_V(ret in Configure()
190 auto ret = codecPlugin_->SetDataCallback(this); SetCodecCallback() local
230 auto ret = (int32_t)PrepareInputBufferQueue(); Prepare() local
266 auto ret = codecPlugin_->Start(); Start() local
285 auto ret = codecPlugin_->Stop(); Stop() local
308 auto ret = codecPlugin_->Flush(); Flush() local
329 auto ret = codecPlugin_->Reset(); Reset() local
353 auto ret = codecPlugin_->Release(); Release() local
376 auto ret = codecPlugin_->SetParameter(parameter); SetParameter() local
398 auto ret = codecPlugin_->GetParameter(parameter); GetOutputFormat() local
421 auto ret = codecPlugin_->GetParameter(inputBufferConfig); AttachBufffer() local
478 Status ret = Status::OK; DrmAudioCencDecrypt() local
524 auto ret = codecPlugin_->GetInputBuffers(inputBuffers); PrepareInputBufferQueue() local
560 auto ret = codecPlugin_->GetOutputBuffers(outputBuffers); PrepareOutputBufferQueue() local
601 Status ret; ProcessInputBuffer() local
672 Status ret = Status::OK; ChangePlugin() local
705 Status ret = Status::OK; HandleOutputBuffer() local
737 Status ret = inputBufferQueueConsumer_->ReleaseBuffer(inputBuffer); OnInputBufferDone() local
749 Status ret = outputBufferQueueProducer_->PushBuffer(outputBuffer, true); OnOutputBufferDone() local
785 Status ret = Status::OK; ClearInputBuffer() local
825 int ret = write(fd, dumpString.c_str(), dumpString.size()); OnDumpInfo() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dqsvdec.c122 int ret = 0; in qsv_get_continuous_buffer() local
157 ret = ff_attach_decode_data(frame); in qsv_get_continuous_buffer()
158 if (ret < 0) in qsv_get_continuous_buffer()
159 return ret; in qsv_get_continuous_buffer()
167 int ret; in qsv_init_session() local
188 ret = ff_qsv_init_session_frames(avctx, &q->internal_qs.session, in qsv_init_session()
192 if (ret < 0) { in qsv_init_session()
194 return ret; in qsv_init_session()
204 ret = ff_qsv_init_session_device(avctx, &q->internal_qs.session, in qsv_init_session()
206 if (ret < in qsv_init_session()
243 int ret; qsv_decode_preinit() local
332 int ret; qsv_decode_init_context() local
360 int ret; qsv_decode_header() local
422 int ret; alloc_frame() local
487 int ret; get_surface() local
611 int ret; qsv_decode() local
778 int ret; qsv_process_data() local
893 int ret; qsv_decode_init() local
944 int ret; qsv_decode_frame() local
[all...]
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/
H A Dusbd_generic_ep0.c221 int ret; in generic_parse_descs() local
233 ret = generic_parse_single_desc(dev, desc_idx, data, len, priv); in generic_parse_descs()
234 if (ret < 0) in generic_parse_descs()
236 usb_debug("%s: parse single desc error %d\n", __FUNCTION__, ret); in generic_parse_descs()
237 return ret; in generic_parse_descs()
239 len -= ret; in generic_parse_descs()
240 data += ret; in generic_parse_descs()
252 int ret, i; in generic_got_descs() local
302 ret = generic_parse_descs(dev, i, counts[i], data, len, &helper); in generic_got_descs()
303 if (ret < in generic_got_descs()
351 int ret; generic_got_strings() local
482 int ret; generic_ep0_req_sync_complete() local
502 int ret = -1; generic_ep0_submit_sync() local
542 int ret; generic_ep0_complete() local
587 int ret; generic_ep0_submit_wait() local
617 int ret; generic_ep0_read_events() local
647 ssize_t ret; generic_ep0_write_descs() local
678 ssize_t ret; generic_ep0_write_strings() local
760 int ret; generic_ep0_cancel_pending_request() local
861 int ret; generic_ep0_handle_read() local
910 ssize_t ret; generic_ep0_handle_write() local
958 int ret = -1; generic_ep0_handle_ioctl() local
1009 int ret; generic_ep0_handle_ioctl() local
1092 uint32_t ret; generic_ep0_handle_poll() local
1167 int ret; generic_create_ep0() local
1227 int ret; generic_remove_ep0() local
[all...]
/third_party/ltp/lib/
H A Dtlibio.c541 int ret = 0; /* syscall return or used to get random method */ in lio_write_buffer() local
618 if ((ret = lseek(fd, 0, SEEK_CUR)) == -1) { in lio_write_buffer()
619 ret = 0; in lio_write_buffer()
650 poffset = (off64_t) ret; in lio_write_buffer()
652 aiocbp.aio_offset = ret; in lio_write_buffer()
735 if (((ret = write(fd, buffer, size)) == -1) in lio_write_buffer()
738 "%s/%d write(%d, buf, %d) ret:-1, errno=%d %s", in lio_write_buffer()
744 if (ret != -1) { in lio_write_buffer()
745 if (ret != size) { in lio_write_buffer()
749 fd, size, ret); in lio_write_buffer()
1116 int ret = 0; /* syscall return or used to get random method */ lio_read_buffer() local
2009 int ret; global() local
[all...]

Completed in 31 milliseconds

1...<<51525354555657585960>>...727