| /arkcompiler/ets_frontend/ts2panda/scripts/ |
| D | diagnosticMessages.json | 3 "category": "Error", 7 "category": "Error", 11 "category": "Error", 15 "category": "Error", 19 "category": "Error", 23 "category": "Error", 27 "category": "Error", 31 "category": "Error", 35 "category": "Error", 39 "category": "Error", [all …]
|
| /arkcompiler/toolchain/tooling/base/ |
| D | pt_params.cpp | 22 std::string error; in Create() local 30 error += "Unknown 'maxScriptsCacheSize';"; in Create() 33 if (!error.empty()) { in Create() 34 LOG_DEBUGGER(ERROR) << "EnableParams::Create " << error; in Create() 44 std::string error; in Create() local 52 error += "Unknown 'callFrameId';"; in Create() 59 error += "Unknown 'expression';"; in Create() 66 error += "Unknown 'objectGroup';"; in Create() 73 error += "Unknown 'includeCommandLineAPI';"; in Create() 80 error += "Unknown 'silent';"; in Create() [all …]
|
| D | pt_types.cpp | 44 const std::string ObjectSubType::Error = "error"; // NOLINT (readability-identifier-na… member in panda::ecmascript::tooling::ObjectSubType 71 const std::string ObjectClassName::Error = "Error"; // NOLINT (readability-ident… member in panda::ecmascript::tooling::ObjectClassName 156 …std::make_unique<ObjectRemoteObject>(ecmaVm, tagged, ObjectClassName::Error, ObjectSubType::Error); in FromTagged() 674 std::string error; in Create() local 684 error += "'type' is invalid;"; in Create() 687 error += "Unknown 'type';"; in Create() 696 error += "'subtype' is invalid;"; in Create() 699 error += "Unknown 'subtype';"; in Create() 707 error += "Unknown 'className';"; in Create() 715 error += "Unknown 'unserializableValue';"; in Create() [all …]
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/tests/ |
| D | test_debugger.h | 34 std::optional<Error> RegisterHooks(PtHooks *hooks) override in RegisterHooks() 39 std::optional<Error> UnregisterHooks() override in UnregisterHooks() 56 Expected<std::unique_ptr<PtFrame>, Error> GetCurrentFrame(PtThread thread) const override; 57 …std::optional<Error> EnumerateFrames(PtThread thread, std::function<bool(const PtFrame &)> functio… 58 std::optional<Error> NotifyFramePop(PtThread thread, uint32_t frameDepth) const override; 61 std::optional<Error> SetBreakpoint(const PtLocation &location) override; 62 std::optional<Error> RemoveBreakpoint(const PtLocation &location) override; 64 MOCK_METHOD(std::optional<Error>, EnableAllGlobalHook, (), (override)); 65 MOCK_METHOD(std::optional<Error>, DisableAllGlobalHook, (), (override)); 66 MOCK_METHOD(std::optional<Error>, SetNotification, (PtThread, bool, PtHookType), (override)); [all …]
|
| D | test_debugger.cpp | 34 Expected<std::unique_ptr<PtFrame>, Error> TestDebugger::GetCurrentFrame(PtThread /* thread */) const in GetCurrentFrame() 37 return Unexpected(Error(Error::Type::NO_MORE_FRAMES, "No current frame")); in GetCurrentFrame() 43 std::optional<Error> TestDebugger::EnumerateFrames(PtThread /* thread */, in EnumerateFrames() 50 std::optional<Error> TestDebugger::NotifyFramePop(PtThread /* thread */, uint32_t frameDepth) const in NotifyFramePop() 66 std::optional<Error> TestDebugger::SetBreakpoint(const PtLocation &location) in SetBreakpoint() 69 return Error(Error::Type::BREAKPOINT_ALREADY_EXISTS, "Breakpoint already exists"); in SetBreakpoint() 75 std::optional<Error> TestDebugger::RemoveBreakpoint(const PtLocation &location) in RemoveBreakpoint() 78 return Error(Error::Type::BREAKPOINT_NOT_FOUND, "Breakpoint not found"); in RemoveBreakpoint()
|
| /arkcompiler/runtime_core/assembler/ |
| D | meta.cpp | 27 std::optional<Metadata::Error> Metadata::ValidateSize(std::string_view value) const in ValidateSize() 32 return Error("Unsigned integer value expected", Error::Type::INVALID_VALUE); in ValidateSize() 37 return Error("Value is out of range", Error::Type::INVALID_VALUE); in ValidateSize() 112 static Expected<T, Metadata::Error> ConvertFromString(std::string_view value) in ConvertFromString() 120 …return Unexpected(Metadata::Error("Excepted integer literal", Metadata::Error::Type::INVALID_VALUE… in ConvertFromString() 125 … return Unexpected(Metadata::Error("Value is out of range", Metadata::Error::Type::INVALID_VALUE)); in ConvertFromString() 132 static Expected<ScalarValue, Metadata::Error> CreatePrimitiveValue(std::string_view value, in CreatePrimitiveValue() 137 return Unexpected(res.Error()); in CreatePrimitiveValue() 143 … return Unexpected(Metadata::Error("Value is out of range", Metadata::Error::Type::INVALID_VALUE)); in CreatePrimitiveValue() 149 static Expected<ScalarValue, Metadata::Error> CreateValue( in CreateValue() [all …]
|
| D | assembly-parser.cpp | 42 context_.err = GetError("Expected keyword.", Error::ErrorType::ERR_BAD_KEYWORD); in ParseRecordFields() 66 if (context_.err.err != Error::ErrorType::ERR_NONE) { in ParseRecordFields() 75 …context_.err = GetError("Expected a new field on the next line.", Error::ErrorType::ERR_BAD_KEYWOR… in ParseRecordFields() 94 … GetError("Repeating field names in the same record.", Error::ErrorType::ERR_REPEATING_FIELD_NAME); in ParseFieldName() 111 context_.err = GetError("Invalid name of field.", Error::ErrorType::ERR_BAD_OPERATION_NAME); in ParseFieldName() 128 context_.err = GetError("Expected ']'.", Error::ErrorType::ERR_BAD_ARRAY_TYPE_BOUND); in ParseType() 150 context_.err = GetError("Not a correct type.", Error::ErrorType::ERR_BAD_FIELD_VALUE_TYPE); in ParseFieldType() 172 … context_.err = GetError("Expected field name.", Error::ErrorType::ERR_BAD_FIELD_MISSING_NAME, +1); in ParseRecordField() 232 …GetError("No one array can be defined inside another array.", Error::ErrorType::ERR_BAD_DEFINITION… in ParseAsArray() 252 …GetError("Сonstant array must contain at least one element.", Error::ErrorType::ERR_BAD_ARRAY_SIZE… in ParseAsArray() [all …]
|
| D | meta.h | 36 class Error { 48 Error(std::string msg, Type type) : msg_(std::move(msg)), type_(type) {} in Error() function 49 ~Error() = default; 50 DEFAULT_MOVE_SEMANTIC(Error); 51 DEFAULT_COPY_SEMANTIC(Error); 72 std::optional<Error> SetAttribute(std::string_view attribute) in SetAttribute() 96 std::optional<Error> SetAttributeValue(std::string_view attribute, std::string_view value) in SetAttributeValue() 139 virtual std::optional<Error> ValidateData() in ValidateData() 149 virtual std::optional<Error> Validate(std::string_view attribute) const = 0; 151 …virtual std::optional<Error> Validate(std::string_view attribute, std::string_view value) const = … [all …]
|
| D | assembly-parser.h | 34 #include "error.h" 42 using Instructions = std::pair<std::vector<Ins>, Error>; 57 * Returns a program or an error value: Expected<Program, Error> 66 Expected<Program, Error> Parse(TokenSet &vectors_tokens, const std::string &file_name = ""); 70 * Returns a program or an error value: Expected<Program, Error> 72 Expected<Program, Error> Parse(const std::string &source, const std::string &file_name = ""); 75 * Returns a set error 77 Error ShowError() const in ShowError() 99 panda::pandasm::Error err_; 107 …inline Error GetError(const std::string &mess = "", Error::ErrorType err = Error::ErrorType::ERR_N… [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | verifier.cpp | 41 LOG_COMPILER(ERROR) << "[Verifier][Error] Circuit data is corrupted (bad next gate)"; in RunDataIntegrityCheck() 42 LOG_COMPILER(ERROR) << "at: " << std::dec << gate; in RunDataIntegrityCheck() 55 … LOG_COMPILER(ERROR) << "[Verifier][Error] Circuit data is corrupted (out of bound access)"; in RunDataIntegrityCheck() 56 LOG_COMPILER(ERROR) << "at: " << std::dec << out; in RunDataIntegrityCheck() 64 … LOG_COMPILER(ERROR) << "[Verifier][Error] Circuit data is corrupted (corrupted in list)"; in RunDataIntegrityCheck() 65 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() 69 … LOG_COMPILER(ERROR) << "[Verifier][Error] Circuit data is corrupted (invalid in address)"; in RunDataIntegrityCheck() 70 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() 79 … LOG_COMPILER(ERROR) << "[Verifier][Error] Circuit data is corrupted (corrupted out list)"; in RunDataIntegrityCheck() 80 LOG_COMPILER(ERROR) << "id: " << std::dec << circuit->GetId(gate); in RunDataIntegrityCheck() [all …]
|
| /arkcompiler/runtime_core/libziparchive/ |
| D | zip_archive.cpp | 36 LOG(ERROR, ZIPARCHIVE) << "OpenArchive failed, filename is " << path; in OpenArchive() 46 LOG(ERROR, ZIPARCHIVE) << "OpenArchive failed from FILE *fp"; in OpenArchiveFile() 55 LOG(ERROR, ZIPARCHIVE) << "ZipArchiveHandle handle should not be nullptr"; in CloseArchive() 60 LOG(ERROR, ZIPARCHIVE) << "unzClose with error: " << err; in CloseArchive() 69 LOG(ERROR, ZIPARCHIVE) << "ZipArchiveHandle handle should not be nullptr"; in CloseArchiveFile() 74 LOG(ERROR, ZIPARCHIVE) << "unzCloseFile with error: " << err; in CloseArchiveFile() 84 LOG(ERROR, ZIPARCHIVE) << "GetGlobalFileInfo with error: " << err; in GetGlobalFileInfo() 94 LOG(ERROR, ZIPARCHIVE) << "GoToNextFile with error: " << err; in GoToNextFile() 104 LOG(ERROR, ZIPARCHIVE) << filename << " is not found in the zipfile"; in LocateFile() 114 LOG(ERROR, ZIPARCHIVE) << "unzGetCurrentFileInfo failed!"; in GetCurrentFileInfo() [all …]
|
| /arkcompiler/runtime_core/runtime/include/tooling/ |
| D | debug_interface.h | 43 class Error { 68 Error(Type type, std::string msg) : type_(type), msg_(std::move(msg)) {} in Error() function 80 ~Error() = default; 82 DEFAULT_COPY_SEMANTIC(Error); 83 DEFAULT_MOVE_SEMANTIC(Error); 419 * @return Error if any errors occur 421 virtual std::optional<Error> RegisterHooks(PtHooks *hooks) = 0; 425 * @return Error if any errors occur 427 virtual std::optional<Error> UnregisterHooks() = 0; 431 * @return Error if any errors occur [all …]
|
| /arkcompiler/runtime_core/runtime/tooling/ |
| D | debugger.h | 150 Expected<PtMethod, Error> GetPtMethod(const PtLocation & /* location */) const override in GetPtMethod() 153 return Unexpected(Error(Error::Type::DEPRECATED, "Method is deprecated")); in GetPtMethod() 156 std::optional<Error> RegisterHooks(PtHooks *hooks) override in RegisterHooks() 162 std::optional<Error> UnregisterHooks() override in UnregisterHooks() 168 std::optional<Error> EnableAllGlobalHook() override in EnableAllGlobalHook() 174 std::optional<Error> DisableAllGlobalHook() override in DisableAllGlobalHook() 180 … std::optional<Error> SetNotification(PtThread thread, bool enable, PtHookType hookType) override; 181 std::optional<Error> SetBreakpoint(const PtLocation &location) override; 183 std::optional<Error> RemoveBreakpoint(const PtLocation &location) override; 185 Expected<std::unique_ptr<PtFrame>, Error> GetCurrentFrame(PtThread thread) const override; [all …]
|
| D | debugger.cpp | 50 std::optional<Error> Debugger::SetNotification(PtThread thread, bool enable, PtHookType hookType) in SetNotification() 71 const PtLocation &location, std::optional<Error> &error) in CheckLocationInClass() argument 75 cda.EnumerateMethods([&pf, &location, &error, &found](panda_file::MethodDataAccessor mda) { in CheckLocationInClass() 85 error = Error(Error::Type::INVALID_BREAKPOINT, in CheckLocationInClass() 97 std::optional<Error> Debugger::CheckLocation(const PtLocation &location) in CheckLocation() 99 std::optional<Error> res; in CheckLocation() 120 Error(Error::Type::METHOD_NOT_FOUND, in CheckLocation() 129 std::optional<Error> Debugger::SetBreakpoint(const PtLocation &location) in SetBreakpoint() 131 auto error = CheckLocation(location); in SetBreakpoint() local 132 if (error.has_value()) { in SetBreakpoint() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
| D | builtins_errors_test.cpp | 36 using Error = ecmascript::builtins::BuiltinsError; typedef 114 JSHandle<JSObject> handleObj = factory->GetJSError(ErrorType::TYPE_ERROR, "I am type error"); in HWTEST_F_L0() 120 ecmascript::JSTaggedValue(*factory->NewFromASCII("I am type error")).GetRawData()), in HWTEST_F_L0() 133 * @tc.desc: new Error() 141 JSHandle<JSFunction> error(env->GetErrorFunction()); in HWTEST_F_L0() local 143 …auto ecmaRuntimeCallInfo = TestHelper::CreateEcmaRuntimeCallInfo(thread, JSTaggedValue(*error), 4); in HWTEST_F_L0() 144 ecmaRuntimeCallInfo->SetFunction(error.GetTaggedValue()); in HWTEST_F_L0() 145 ecmaRuntimeCallInfo->SetThis(JSTaggedValue(*error)); in HWTEST_F_L0() 148 JSTaggedValue result = Error::ErrorConstructor(ecmaRuntimeCallInfo); in HWTEST_F_L0() 164 …reinterpret_cast<EcmaString *>(ecmascript::JSTaggedValue(*factory->NewFromASCII("Error")).GetRawDa… in HWTEST_F_L0() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/containers/ |
| D | containers_plainarray.cpp | 35 JSTaggedValue error = in PlainArrayConstructor() local 38 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in PlainArrayConstructor() 64 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Add() local 66 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Add() 75 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::TYPE_ERROR, errorMsg.c_str(… in Add() local 76 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Add() 93 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Clear() local 95 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Clear() 114 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Clone() local 116 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Clone() [all …]
|
| D | containers_arraylist.cpp | 40 JSTaggedValue error = in ArrayListConstructor() local 43 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in ArrayListConstructor() 65 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Add() local 67 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Add() 87 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Insert() local 89 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Insert() 98 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::TYPE_ERROR, errorMsg.c_str(… in Insert() local 99 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Insert() 119 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Clear() local 121 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Clear() [all …]
|
| D | containers_list.cpp | 38 JSTaggedValue error = in ListConstructor() local 41 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in ListConstructor() 65 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Add() local 67 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Add() 88 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Insert() local 90 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Insert() 99 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::TYPE_ERROR, errorMsg.c_str(… in Insert() local 100 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Insert() 119 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in GetFirst() local 121 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in GetFirst() [all …]
|
| D | containers_lightweightset.cpp | 36 JSTaggedValue error = in LightWeightSetConstructor() local 39 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in LightWeightSetConstructor() 66 JSTaggedValue error = ContainerError::BusinessError(thread, BIND_ERROR, in Add() local 68 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Add() 87 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in AddAll() local 89 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in AddAll() 101 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::TYPE_ERROR, errorMsg.c_str(… in AddAll() local 102 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in AddAll() 120 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in IsEmpty() local 122 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in IsEmpty() [all …]
|
| D | containers_lightweightmap.cpp | 41 JSTaggedValue error = in LightWeightMapConstructor() local 44 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in LightWeightMapConstructor() 72 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in Length() local 74 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in Length() 93 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in HasAll() local 95 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in HasAll() 108 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::TYPE_ERROR, errorMsg.c_str(… in HasAll() local 109 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in HasAll() 129 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::BIND_ERROR, in HasKey() local 131 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); in HasKey() [all …]
|
| /arkcompiler/runtime_core/dprof/libstorage/dprof/ |
| D | storage.cpp | 51 LOG(ERROR, DPROF) << "Cannot deserialize buffer to common_info. Error: " << r.Error(); in CreateByBuffer() 60 LOG(ERROR, DPROF) << "Cannot deserialize features_map. Error: " << r.Error(); in CreateByBuffer() 66 LOG(ERROR, DPROF) << "Cannot deserialize all buffer, unused buffer size: " << size; in CreateByBuffer() 77 LOG(ERROR, DPROF) << "Cannot serialize common_info"; in ToBuffer() 82 LOG(ERROR, DPROF) << "Cannot serialize features_map. Error: " << ret.Error(); in ToBuffer() 92 LOG(ERROR, DPROF) << "Storage directory is not set"; in Create() 104 LOG(ERROR, DPROF) << storageDir << " is already exists and it is neither directory"; in Create() 111 PLOG(ERROR, DPROF) << "mkdir() failed"; in Create() 124 LOG(ERROR, DPROF) << "Cannot serialize AppData to buffer"; in SaveAppData() 132 LOG(ERROR, DPROF) << "Cannot open file: " << fileName; in SaveAppData() [all …]
|
| /arkcompiler/runtime_core/plugins/ecmascript/assembler/extension/ |
| D | ecmascript_meta.cpp | 20 std::optional<Metadata::Error> RecordMetadata::Validate(std::string_view attribute) const in Validate() 24 return Error("Attribute 'ecmascript.annotation' already defined", in Validate() 25 Error::Type::MULTIPLE_ATTRIBUTE); in Validate() 31 return Error("Attribute 'ecmascript.extends' must have a value", in Validate() 32 Error::Type::MISSING_VALUE); in Validate() 38 std::optional<Metadata::Error> RecordMetadata::Validate(std::string_view attribute, std::string_vie… in Validate() 42 return Error("Attribute 'ecmascript.extends' already defined", in Validate() 43 Error::Type::MULTIPLE_ATTRIBUTE); in Validate() 49 return Error("Attribute 'ecmascript.annotation' must not have a value", in Validate() 50 Error::Type::UNEXPECTED_VALUE); in Validate() [all …]
|
| /arkcompiler/toolchain/tooling/ |
| D | dispatcher.cpp | 35 LOG_DEBUGGER(ERROR) << "json parse error"; in DispatchRequest() 40 LOG_DEBUGGER(ERROR) << "json parse format error"; in DispatchRequest() 50 LOG_DEBUGGER(ERROR) << "parse id error"; in DispatchRequest() 59 LOG_DEBUGGER(ERROR) << "parse method error"; in DispatchRequest() 67 LOG_DEBUGGER(ERROR) << "method format error: " << wholeMethod; in DispatchRequest() 82 LOG_DEBUGGER(ERROR) << "params format error"; in DispatchRequest() 101 DispatchResponse DispatchResponse::Create(std::optional<std::string> error) in Create() argument 104 if (error.has_value()) { in Create() 106 response.errorMsg_ = error.value(); in Create() 161 LOG_DEBUGGER(ERROR) << "Unknown request"; in Dispatch() [all …]
|
| /arkcompiler/runtime_core/dprof/libdprof/dprof/ipc/ |
| D | ipc_unix_socket.cpp | 38 PLOG(ERROR, DPROF) << "setsockopt() failed"; in CreateUnixServerSocket() 45 PLOG(ERROR, DPROF) << "CreateUnixServerSocket memset_s failed"; in CreateUnixServerSocket() 50 PLOG(ERROR, DPROF) << "CreateUnixServerSocket memcpy_s failed"; in CreateUnixServerSocket() 55 PLOG(ERROR, DPROF) << "bind() failed"; in CreateUnixServerSocket() 60 PLOG(ERROR, DPROF) << "listen() failed"; in CreateUnixServerSocket() 71 PLOG(ERROR, DPROF) << "socket() failed"; in CreateUnixClientSocket() 78 PLOG(ERROR, DPROF) << "CreateUnixClientSocket memset_s failed"; in CreateUnixClientSocket() 83 PLOG(ERROR, DPROF) << "CreateUnixClientSocket memcpy_s failed"; in CreateUnixClientSocket() 88 PLOG(ERROR, DPROF) << "connect() failed"; in CreateUnixClientSocket() 103 PLOG(ERROR, DPROF) << "send() failed"; in SendAll() [all …]
|
| /arkcompiler/runtime_core/assembler/tests/ |
| D | lexer_test.cpp | 34 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 44 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 58 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 68 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 80 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 91 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 100 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 109 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 126 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() 137 ASSERT_EQ(tok.second.err, Error::ErrorType::ERR_NONE) << "ERR_NONE expected"; in TEST() [all …]
|