/arkcompiler/ets_runtime/ecmascript/ohos/ |
H A D | aot_runtime_info.h | 58 constexpr static const int BUFFER_SIZE = 4096; member in panda::ecmascript::ohos::AotRuntimeInfo 84 static char lines[MAX_LENGTH][BUFFER_SIZE]; in BuildCompileRuntimeInfo() 86 memset_s(lines[i], BUFFER_SIZE, '\0', BUFFER_SIZE); in BuildCompileRuntimeInfo() 110 static char lines[MAX_LENGTH][BUFFER_SIZE]; in BuildCrashRuntimeInfo() 112 memset_s(lines[i], BUFFER_SIZE, '\0', BUFFER_SIZE); in BuildCrashRuntimeInfo() 146 char lines[MAX_LENGTH][BUFFER_SIZE]; in CollectCrashSum() 148 memset_s(lines[i], BUFFER_SIZE, '\0', BUFFER_SIZE); in CollectCrashSum() [all...] |
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/scenarios/js_to_ets/js_suites/ |
H A D | conflict_types.js | 26 const BUFFER_SIZE = 8; 29 const buffer = new ArrayBuffer(BUFFER_SIZE); 42 const BUFFER_SIZE = 8; 45 const buffer = new ArrayBuffer(BUFFER_SIZE);
|
/arkcompiler/ets_runtime/ecmascript/ohos/tests/mock/ |
H A D | mock_aot_runtime_info.cpp | 61 void MockAotRuntimeInfo::SetRuntimeInfo(const char *realOutPath, char lines[][BUFFER_SIZE], int length) const in SetRuntimeInfo() 71 char buffer[BUFFER_SIZE]; in SetRuntimeInfo() 72 memset_s(buffer, BUFFER_SIZE, 'a', BUFFER_SIZE); in SetRuntimeInfo()
|
H A D | mock_aot_runtime_info.h | 36 void SetRuntimeInfo(const char *realOutPath, char lines[][BUFFER_SIZE], int length) const override;
|
/arkcompiler/ets_runtime/test/fuzztest/setruntimeinfo_fuzzer/ |
H A D | setruntimeinfo_fuzzer.cpp | 26 void TestSetRuntimeInfo(const char *realOutPath, char lines[][BUFFER_SIZE], int length) const in TestSetRuntimeInfo() 31 void TestGetRuntimeInfoByPath(char lines[][BUFFER_SIZE], const char *realOutPath, const char *soBuildId) const in TestGetRuntimeInfoByPath() 74 std::string soBuildId = dataProvider.ConsumeRandomLengthString(AotRuntimeInfo::BUFFER_SIZE - 1); in GetRuntimeInfoByPathFuzzTest() 77 char lines[AotRuntimeInfo::MAX_LENGTH][AotRuntimeInfo::BUFFER_SIZE] = {{0}}; in GetRuntimeInfoByPathFuzzTest()
|
/arkcompiler/runtime_core/platforms/unix/libpandabase/ |
H A D | file.h | 147 constexpr size_t BUFFER_SIZE = 1024; in GetExecutablePath() local 148 std::array<char, BUFFER_SIZE> buffer = {0}; in GetExecutablePath() 150 uint32_t size = BUFFER_SIZE; in GetExecutablePath()
|
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
H A D | file.h | 137 constexpr size_t BUFFER_SIZE = 1024; in GetExecutablePath() local 138 std::array<char, BUFFER_SIZE> buffer = {0}; in GetExecutablePath() 140 uint32_t size = BUFFER_SIZE; in GetExecutablePath()
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | logger.h | 70 constexpr static size_t BUFFER_SIZE = 4096; member in ark::Logger::Buffer 88 return BUFFER_SIZE; 102 std::array<char, BUFFER_SIZE> buffer_ {};
|
H A D | logger.cpp | 114 ASSERT(put >= 0 && static_cast<size_t>(put) < BUFFER_SIZE);
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | logger.h | 84 constexpr static size_t BUFFER_SIZE = 4096; member in panda::Logger::Buffer 102 return BUFFER_SIZE; 116 std::array<char, BUFFER_SIZE> buffer;
|
H A D | logger.cpp | 126 ASSERT(put >= 0 && static_cast<size_t>(put) < BUFFER_SIZE);
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | number_helper.cpp | 176 static constexpr int BUFFER_SIZE = 2240; // 2240: The size of the character array buffer 177 static constexpr int HALF_BUFFER_SIZE = BUFFER_SIZE >> 1; 178 char buffer[BUFFER_SIZE];
|