Searched refs:componentName (Results 1 - 12 of 12) sorted by relevance
/arkcompiler/toolchain/inspector/ |
H A D | inspector.h | 35 bool StartDebug(const std::string& componentName, void* vm, bool isDebugMode, 44 void StopOldDebug(int tid, const std::string& componentName);
|
H A D | connect_inspector.h | 32 void StartServer(const std::string& componentName); 37 void StopServer([[maybe_unused]] const std::string& componentName);
|
H A D | inspector.cpp | 374 bool StartDebug(const std::string& componentName, void* vm, bool isDebugMode, in StartDebug() argument 377 LOGI("StartDebug, componentName = %{private}s, isDebugMode = %{private}d, instanceId = %{private}d", in StartDebug() 378 componentName.c_str(), isDebugMode, instanceId); in StartDebug() 393 DebugInfo debugInfo = {startDebugInOldProcess, componentName, instanceId, port}; in StartDebug() 434 void StopOldDebug(int tid, const std::string& componentName) in StopOldDebug() argument 436 LOGI("StopDebug start, componentName = %{private}s, tid = %{private}d", componentName.c_str(), tid); in StopOldDebug()
|
H A D | connect_inspector.cpp | 200 void StartServer(const std::string& componentName) in StartServer() argument 202 LOGI("StartServer, componentName = %{private}s", componentName.c_str()); in StartServer() 205 g_inspector->connectServer_ = std::make_unique<ConnectServer>(componentName, in StartServer() 218 void StopServer([[maybe_unused]] const std::string& componentName) in StopServer() argument 220 LOGI("StopServer, componentName = %{private}s", componentName.c_str()); in StopServer()
|
H A D | ws_server.cpp | 61 std::string sockName = pidStr + instanceIdStr + debugInfo_.componentName; in RunServer() 63 appPid, instanceIdStr.c_str(), debugInfo_.componentName.c_str()); in RunServer()
|
H A D | ws_server.h | 33 std::string componentName {};
|
/arkcompiler/runtime_core/static_core/assembler/ |
H A D | assembly-type.h | 40 Type(std::string_view componentName, size_t rank, bool ignorePrimitive = false) in Type() argument 41 : componentName_(componentName), rank_(rank) in Type() 180 static PANDA_PUBLIC_API std::string GetName(std::string_view componentName, size_t rank);
|
H A D | assembly-type.cpp | 79 std::string Type::GetName(std::string_view componentName, size_t rank) in GetName() argument 81 std::string name(componentName); in GetName()
|
H A D | assembly-parser.cpp | 120 std::string componentName(context_.GiveToken()); in ParseType() 135 *type = Type(componentName, rank); in ParseType() 1824 std::string componentName = type.GetComponentName(); in ParseOperandType() local 1825 context_.token = componentName; in ParseOperandType()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | class_helper.cpp | 33 const uint8_t *ClassHelper::GetArrayDescriptor(const uint8_t *componentName, size_t rank, PandaString *storage) in GetArrayDescriptor() argument 38 storage->append(utf::Mutf8AsCString(componentName)); in GetArrayDescriptor()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | class_helper.h | 47 static const uint8_t *GetArrayDescriptor(const uint8_t *componentName, size_t rank, PandaString *storage);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi.cpp | 48 bool StartDebug(const std::string& componentName, void* vm, bool isDebugMode, int32_t instanceId,
|
Completed in 13 milliseconds