Home
last modified time | relevance | path

Searched refs:old_function (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/cronet/base/debug/
H A Dhandle_hooks_win.cc128 void** old_function) { in EATPatch() argument
140 if (!(*old_function)) in EATPatch()
141 *old_function = pe.RVAToAddr(*eat_entry); in EATPatch()
158 void** old_function) { in IATPatch() argument
179 if (!(*old_function)) { in IATPatch()
182 *old_function = patch->original_function(); in IATPatch()
/aosp_15_r20/external/cronet/base/win/
H A Diat_patch_function.cc24 RAW_PTR_EXCLUSION void** old_function; member
69 if (intercept_information->old_function) { in InterceptEnumCallback()
70 *(intercept_information->old_function) = GetIATFunction(iat); in InterceptEnumCallback()
113 void** old_function, in InterceptImportedFunction() argument
131 old_function, in InterceptImportedFunction()
/aosp_15_r20/external/pytorch/test/quantization/ao_migration/
H A Dcommon.py26 old_function = getattr(old_location, fn_name)
28 assert old_function == new_function, f"Functions don't match: {fn_name}"
29 assert hash(old_function) == hash(new_function), (
/aosp_15_r20/development/vndk/tools/header-checker/src/diff/
H A Dabi_diff_wrappers.cpp84 repr::FunctionIR old_function = *oldp_; in DumpDiff() local
86 ReplaceTypeIdsWithTypeNames(old_types_, &old_function); in DumpDiff()
88 repr::FunctionDiffIR function_diff_ir(&old_function, &new_function, in DumpDiff()
/aosp_15_r20/system/libbase/
H A Dlogging_test.cpp654 android::base::LogFunction old_function; in TEST() local
655 EXPECT_FALSE(old_function); in TEST()
656 old_function = android::base::SetLogger(android::base::StdioLogger); in TEST()
657 EXPECT_TRUE(old_function); in TEST()
/aosp_15_r20/development/vndk/tools/header-checker/src/repr/protobuf/
H A Dir_diff_dumper.cpp274 abi_dump::FunctionDecl *old_function = function_diff.mutable_old(); in ConvertFunctionDiffIR() local
276 if (old_function == nullptr || new_function == nullptr) { in ConvertFunctionDiffIR()
280 *old_function = ConvertFunctionIR(function_diff_ir->GetOldFunction()); in ConvertFunctionDiffIR()
/aosp_15_r20/development/vndk/tools/header-checker/src/repr/
H A Dir_diff_representation.h344 FunctionDiffIR(const FunctionIR *old_function, const FunctionIR *new_function, in FunctionDiffIR() argument
346 : old_function_(old_function), in FunctionDiffIR()