Searched refs:buildId (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/test/fuzztest/setruntimeinfo_fuzzer/ |
H A D | setruntimeinfo_fuzzer.cpp | 36 virtual bool TestGetRuntimeBuildId(char *buildId, int length) const in TestGetRuntimeBuildId() argument 38 return GetRuntimeBuildId(buildId, length); in TestGetRuntimeBuildId() 91 char buildId[PATH_MAX] = {'\0'}; in GetRuntimeBuildIdFuzzTest() local 94 runtimeInfoTest.TestGetRuntimeBuildId(buildId, buildIdLength); in GetRuntimeBuildIdFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/ohos/tests/mock/ |
H A D | mock_aot_runtime_info.cpp | 23 bool MockAotRuntimeInfo::GetRuntimeBuildId(char *buildId, int length) const in GetRuntimeBuildId() argument 26 if (strcpy_s(buildId, length, tmp) != 0) { in GetRuntimeBuildId()
|
H A D | mock_aot_runtime_info.h | 30 bool GetRuntimeBuildId(char *buildId, int length) const override;
|
/arkcompiler/ets_runtime/ecmascript/ohos/ |
H A D | aot_runtime_info.h | 76 LOG_ECMA(INFO) << "can't get so buildId."; in BuildCompileRuntimeInfo() 203 virtual bool GetRuntimeBuildId(char *buildId, int length) const in GetRuntimeBuildId() argument 219 ParseELFSectionsForBuildId(fileMap, buildId, length); in GetRuntimeBuildId() 391 void ParseELFSectionsForBuildId(ecmascript::MemMap &fileMap, char *buildId, int length) const in ParseELFSectionsForBuildId() argument 430 GetReadableBuildId(curShNameValueForNhdr, buildId, length); in ParseELFSectionsForBuildId() 433 void GetReadableBuildId(char *buildIdHex, char *buildId, int length) const in GetReadableBuildId() argument 449 buildId[lowHexExpand - 1] = HEXTABLE[(n >> 4) % HEXLENGTH]; // 4 : higher 4 bit of uint8 in GetReadableBuildId() 450 buildId[lowHexExpand] = HEXTABLE[n % HEXLENGTH]; in GetReadableBuildId()
|
Completed in 3 milliseconds