| /arkcompiler/ets_runtime/test/sharedtest/sharedcollectionsexception/ |
| D | expect_output.txt | 17 Call boundEntries failed. err: BusinessError: The entries method cannot be bound., errCode: 10200011 18 Call boundFill failed. err: BusinessError: The fill method cannot be bound., errCode: 10200011 19 Call boundFilter failed. err: BusinessError: The filter method cannot be bound., errCode: 10200011 20 Call boundFind failed. err: BusinessError: The find method cannot be bound., errCode: 10200011 21 Call boundFindIndex failed. err: BusinessError: The findIndex method cannot be bound., errCode: 102… 22 Call boundForEach failed. err: BusinessError: The forEach method cannot be bound., errCode: 10200011 23 Call boundIndexOf failed. err: BusinessError: The indexOf method cannot be bound., errCode: 10200011 24 Call boundJoin failed. err: BusinessError: The join method cannot be bound., errCode: 10200011 25 Call boundKeys failed. err: BusinessError: The keys method cannot be bound., errCode: 10200011 26 Call boundMap failed. err: BusinessError: The map method cannot be bound., errCode: 10200011 [all …]
|
| D | sharedcollectionsexception.ts | 61 print("Call boundEntries failed. err: " + err + ", errCode: " + err.code); 70 print("Call boundFill failed. err: " + err + ", errCode: " + err.code); 79 print("Call boundFilter failed. err: " + err + ", errCode: " + err.code); 88 print("Call boundFind failed. err: " + err + ", errCode: " + err.code); 97 print("Call boundFindIndex failed. err: " + err + ", errCode: " + err.code); 106 print("Call boundForEach failed. err: " + err + ", errCode: " + err.code); 115 print("Call boundIndexOf failed. err: " + err + ", errCode: " + err.code); 124 print("Call boundJoin failed. err: " + err + ", errCode: " + err.code); 133 print("Call boundKeys failed. err: " + err + ", errCode: " + err.code); 142 print("Call boundMap failed. err: " + err + ", errCode: " + err.code); [all …]
|
| /arkcompiler/ets_runtime/test/sharedtest/sharedarray/ |
| D | expect_output.txt | 52 add element by index access failed. err: TypeError: Cannot add property in prevent extensions, code… 53 add element by index access failed. err: TypeError: Cannot add property in prevent extensions, code… 54 add element by index access failed. err: BusinessError: The value of index is out of range., code: … 58 add element by index access failed. err: BusinessError: The value of index is out of range., code: … 138 Add one element by splice api failed. err: BusinessError: Parameter error.Only accept sendable valu… 139 Add one element by splice api failed. err: BusinessError: Parameter error.Only accept sendable valu… 142 Create with without initialValue failed. err: BusinessError: Parameter error.Not enough parameters.… 143 Create with negative length failed. err: BusinessError: Parameter error.Invalid array length., code… 145 Create with exceed max length failed. err: BusinessError: Parameter error.Invalid array length., co… 171 Index access write out of range failed. err: BusinessError: The value of index is out of range., co… [all …]
|
| D | sharedarray.ts | 178 print("add element by index access failed. err: " + err + ", code: " + err.code); 184 print("add element by index access failed. err: " + err + ", code: " + err.code); 190 print("add element by index access failed. err: " + err + ", code: " + err.code); 209 print("add element by index access failed. err: " + err + ", code: " + err.code); 225 print("Create from empty element list failed. err: " + err + ", code: " + err.code); 231 … print("Create from sendable undefined element list failed. err: " + err + ", code: " + err.code); 319 print("slice element failed. err: " + err + ", code: " + err.code); 326 print("slice element failed. err: " + err + ", code: " + err.code); 333 print("slice element failed. err: " + err + ", code: " + err.code); 339 print("slice element failed. err: " + err + ", code: " + err.code); [all …]
|
| /arkcompiler/ets_runtime/compiler_service/interface/ |
| D | aot_compiler_interface_proxy.cpp | 31 LOG_SA(ERROR) << "Write interface token failed!"; in AotCompiler() 43 LOG_SA(ERROR) << "Write [(it->first)] failed!"; in AotCompiler() 47 LOG_SA(ERROR) << "Write [(it->second)] failed!"; in AotCompiler() 58 if (FAILED(result)) { in AotCompiler() 59 LOG_SA(ERROR) << "Send request failed!"; in AotCompiler() 64 if (FAILED(errCode)) { in AotCompiler() 65 LOG_SA(ERROR) << "Read Int32 failed!"; in AotCompiler() 89 LOG_SA(ERROR) << "Write interface token failed!"; in StopAotCompiler() 99 if (FAILED(result)) { in StopAotCompiler() 100 LOG_SA(ERROR) << "Send request failed!"; in StopAotCompiler() [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/elements_kind_generic/ |
| D | elements_kind_generic.js | 30 print("test1 - failed"); 42 print("test2 - failed"); 55 print("test3 - failed"); 69 print("test4 - failed"); 80 print("test5 - failed"); 92 print("test6 - failed"); 105 print("test7 - failed"); 119 print("test8 - failed"); 130 print("test9 - failed"); 142 print("test10 - failed"); [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/elements_kind/ |
| D | elements_kind.js | 37 print("test1 - failed"); 49 print("test2 - failed"); 62 print("test3 - failed"); 76 print("test4 - failed"); 87 print("test5 - failed"); 99 print("test6 - failed"); 112 print("test7 - failed"); 126 print("test8 - failed"); 137 print("test9 - failed"); 149 print("test10 - failed"); [all …]
|
| /arkcompiler/ets_runtime/test/moduletest/loadicbyname/ |
| D | expect_output.txt | 19 SendableFloat64Array set proto with sendable object failed. err: TypeError: Cannot set proto with s… 20 SendableFloat32Array set proto with sendable object failed. err: TypeError: Cannot set proto with s… 21 SendableInt32Array set proto with sendable object failed. err: TypeError: Cannot set proto with sen… 22 SendableInt16Array set proto with sendable object failed. err: TypeError: Cannot set proto with sen… 23 SendableInt8Array set proto with sendable object failed. err: TypeError: Cannot set proto with send… 24 SendableUint32Array set proto with sendable object failed. err: TypeError: Cannot set proto with se… 25 SendableUint16Array set proto with sendable object failed. err: TypeError: Cannot set proto with se… 26 SendableUint8Array set proto with sendable object failed. err: TypeError: Cannot set proto with sen… 27 SendableUint8ClampedArray set proto with sendable object failed. err: TypeError: Cannot set proto w…
|
| /arkcompiler/ets_runtime/test/sharedtest/sendable/ |
| D | expect_output.txt | 15 sendable inherit from non-sendable failed. err: TypeError: Class not derived from a sendable object… 16 sendable change proto failed. err: TypeError: Cannot set proto with sendable object, code: undefined 18 non-sendable inherit from sendable failed. err: TypeError: The subclass of sendable class must be a… 20 sendable contain non-sendable failed. err: TypeError: Cannot set sendable property with mismatched … 21 sendable contain static non-sendable failed. err: TypeError: Cannot set sendable property with mism… 25 sendable add property failed. err: TypeError: Cannot add property in prevent extensions, code: unde… 26 sendable change property failed. err: TypeError: Cannot set sendable property with mismatched type,… 27 sendable delete property failed. err: TypeError: Cannot delete property, code: undefined
|
| D | sendable.ts | 31 print('sendable inherit from sendable failed. err: ' + err + ', code: ' + err.code); 45 print('sendable inherit from non-sendable failed. err: ' + err + ', code: ' + err.code); 63 print('sendable change proto failed. err: ' + err + ', code: ' + err.code); 78 print('non-sendable inherit from non-sendable failed. err: ' + err + ', code: ' + err.code); 93 print('non-sendable inherit from sendable failed. err: ' + err + ', code: ' + err.code); 115 print('sendable contain sendable failed. err: ' + err + ', code: ' + err.code); 131 print('sendable contain non-sendable failed. err: ' + err + ', code: ' + err.code); 145 print('sendable contain static non-sendable failed. err: ' + err + ', code: ' + err.code); 156 print('sendable contain undefined failed. err: ' + err + ', code: ' + err.code); 187 print('sendable contain lexenv failed. err: ' + err + ', code: ' + err.code); [all …]
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/runner/ |
| D | result.rb | 20 failed: { cnt: 0, files: [] }, 71 @@stats[:failed][:cnt] += 1 72 @@stats[:failed][:files] << file 79 @@stats[:failed][:cnt] += 1 80 @@stats[:failed][:files] << file 87 @@stats[:failed][:cnt] += 1 88 @@stats[:failed][:files] << file 97 @@stats[:failed][:cnt] += 1 98 @@stats[:failed][:files] << file 125 TestRunner.log 1, 'Failed:' [all …]
|
| /arkcompiler/runtime_core/tests/cts-generator/runner/ |
| D | result.rb | 20 failed: { cnt: 0, files: [] }, 71 @@stats[:failed][:cnt] += 1 72 @@stats[:failed][:files] << file 79 @@stats[:failed][:cnt] += 1 80 @@stats[:failed][:files] << file 87 @@stats[:failed][:cnt] += 1 88 @@stats[:failed][:files] << file 97 @@stats[:failed][:cnt] += 1 98 @@stats[:failed][:files] << file 124 TestRunner::log 1, 'Failed:' [all …]
|
| /arkcompiler/runtime_core/static_core/irtoc/backend/ |
| D | dwarf_builder.cpp | 68 LOG(FATAL, COMPILER) << "Dwarf initialization failed: " << dwarf_errmsg(error); in DwarfBuilder() 73 LOG(FATAL, COMPILER) << "dwarf_pro_set_default_string_form failed: " << dwarf_errmsg(error); in DwarfBuilder() 78 LOG(FATAL, COMPILER) << "dwarf_new_die failed: " << dwarf_errmsg(error); in DwarfBuilder() 83 LOG(FATAL, COMPILER) << "dwarf_add_AT_producer failed: " << dwarf_errmsg(error); in DwarfBuilder() 88 LOG(FATAL, COMPILER) << "dwarf_add_die_to_debug_a failed: " << dwarf_errmsg(error); in DwarfBuilder() 95 LOG(FATAL, COMPILER) << "DW_AT_language failed: " << dwarf_errmsg(error); in DwarfBuilder() 107 LOG(FATAL, COMPILER) << "dwarf_lne_set_address failed: " << dwarf_errmsg(error); in BuildGraphNestedFunction() 124 LOG(ERROR, COMPILER) << "dwarf_add_line_entry failed: " << dwarf_errmsg(error); in BuildGraphNestedFunction() 131 LOG(ERROR, COMPILER) << "dwarf_lne_end_sequence failed: " << dwarf_errmsg(error); in BuildGraphNestedFunction() 137 …LOG(ERROR, COMPILER) << "dwarf_add_AT_targ_address_b(DW_AT_low_pc) failed: " << dwarf_errmsg(error… in BuildGraphNestedFunction() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/ |
| D | mpl_scheduler.cpp | 42 CHECK_FATAL(ret == 0, "pthread_mutex_init failed"); in Init() 44 CHECK_FATAL(ret == 0, "pthread_mutex_init failed"); in Init() 46 CHECK_FATAL(ret == 0, "pthread_mutex_init failed"); in Init() 63 CHECK_FATAL(ret == 0, "pthread_mutex_lock failed"); in GetTaskToRun() 68 CHECK_FATAL(ret == 0, "pthread_mutex_unlock failed"); in GetTaskToRun() 75 CHECK_FATAL(ret == 0, "pthread_mutex_lock failed"); in GetTaskIdsFinishSize() 78 CHECK_FATAL(ret == 0, "pthread_mutex_unlock failed"); in GetTaskIdsFinishSize() 86 CHECK_FATAL(ret == 0, "pthread_mutex_lock failed"); in GetTaskFinishFirst() 91 CHECK_FATAL(ret == 0, "pthread_mutex_unlock failed"); in GetTaskFinishFirst() 98 CHECK_FATAL(ret == 0, "pthread_mutex_lock failed"); in RemoveTaskFinish() [all …]
|
| /arkcompiler/toolchain/websocket/server/ |
| D | websocket_server.cpp | 65 LOGE("DecodeMessage: Recv maskingKey failed"); in DecodeMessage() 70 LOGE("DecodeMessage: Recv message with mask failed"); in DecodeMessage() 86 LOGE("ProtocolUpgrade: failed to encode WebSocket-Key"); in ProtocolUpgrade() 92 LOGE("ProtocolUpgrade: Send failed"); in ProtocolUpgrade() 112 LOGW("HttpHandShake recv failed, errno = %{public}d", errno); in HttpHandShake() 116 …LOGE("ReadMsg failed, msgLen = %{public}ld, errno = %{public}d", static_cast<long>(msgLen), errno); in HttpHandShake() 124 LOGE("HttpHandShake: Upgrade failed"); in HttpHandShake() 128 LOGE("HttpHandShake: Validation failed"); in HttpHandShake() 138 LOGE("HttpHandShake: failed to send 'bad request' response"); in HttpHandShake() 201 LOGW("AcceptNewConnection HttpHandShake failed"); in AcceptNewConnection() [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/napi/ets/ |
| D | EtsnapiNameTest.sts | 29 throw new Exception("ERROR: failed to call objectArg"); 32 throw new Exception("ERROR: failed to call methodOverloaded"); 35 throw new Exception("ERROR: failed to call methodOverloaded"); 38 throw new Exception("ERROR: failed to call methodOverloaded"); 42 throw new Exception("ERROR: failed to call methodOverloaded"); 50 throw new Exception("ERROR: failed to call 中文函数2不带参数"); 63 console.print("ERROR: failed to call nativeInGlobal");
|
| /arkcompiler/ets_runtime/compiler_service/src/ |
| D | aot_compiler_client.cpp | 33 LOG_SA(ERROR) << "create aot compiler died recipient failed"; in AotCompilerClient() 50 LOG_SA(ERROR) << "get aot compiler service failed"; in AotCompiler() 62 LOG_SA(ERROR) << "get aot compiler service failed"; in StopAotCompiler() 74 LOG_SA(ERROR) << "get aot compiler service failed"; in GetAOTVersion() 87 LOG_SA(ERROR) << "get aot compiler service failed"; in NeedReCompile() 103 LOG_SA(ERROR) << "failed to get system ability manager"; in GetAotCompilerProxy() 112 LOG_SA(ERROR) << "load aot compiler service failed"; in GetAotCompilerProxy() 117 LOG_SA(ERROR) << "failed to get aot compiler service"; in GetAotCompilerProxy() 132 LOG_SA(ERROR) << "failed to get system ability manager"; in LoadAotCompilerService() 137 LOG_SA(ERROR) << "failed to create load callback"; in LoadAotCompilerService() [all …]
|
| /arkcompiler/runtime_core/static_core/tests/cts-generator/runner/reporters/ |
| D | test_reporter.rb | 74 @logger.log 1, "TEST FAILED: #{@pa_file}" 75 @logger.log 1, 'Compilation failed.' 80 @logger.log 1, "TEST FAILED: #{@pa_file}" 81 @logger.log 1, 'Quickening failed.' 86 @logger.log 1, "TEST FAILED: #{@pa_file}" 93 @logger.log 2, 'Compilation failed, as expected.' 104 @logger.log 1, "TEST FAILED: #{@pa_file}" 110 @logger.log 1, "TEST FAILED: #{@pa_file}" 116 @logger.log 1, "TEST FAILED: #{@pa_file}" 123 @logger.log 1, "TEST FAILED: #{@pa_file}"
|
| D | jtr_reporter.rb | 32 @status = 'Failed.' 66 @logger.log 1, 'result: Failed.' 100 @status = 'Failed. Failed to compile' 105 @status = 'Failed. Test is compiled, but should be rejected.' 110 @status = 'Passed. Test failed to compile, as expected.' 120 @status = "Failed. Exit code: #{status}, but expected failure." 125 @status = "Failed. Verifier exit code: #{status}, but expected failure." 130 @status = "Failed. Exit code: #{status}." 136 @status = "Failed. Verifier exit code: #{status}."
|
| /arkcompiler/runtime_core/tests/cts-generator/runner/reporters/ |
| D | test_reporter.rb | 74 @logger.log 1, "TEST FAILED: #{@pa_file}" 75 @logger.log 1, 'Compilation failed.' 80 @logger.log 1, "TEST FAILED: #{@pa_file}" 81 @logger.log 1, 'Quickening failed.' 86 @logger.log 1, "TEST FAILED: #{@pa_file}" 93 @logger.log 2, 'Compilation failed, as expected.' 104 @logger.log 1, "TEST FAILED: #{@pa_file}" 110 @logger.log 1, "TEST FAILED: #{@pa_file}" 116 @logger.log 1, "TEST FAILED: #{@pa_file}" 123 @logger.log 1, "TEST FAILED: #{@pa_file}"
|
| D | jtr_reporter.rb | 32 @status = 'Failed.' 66 @logger.log 1, 'result: Failed.' 100 @status = 'Failed. Failed to compile' 105 @status = 'Failed. Test is compiled, but should be rejected.' 110 @status = 'Passed. Test failed to compile, as expected.' 120 @status = "Failed. Exit code: #{status}, but expected failure." 125 @status = "Failed. Verifier exit code: #{status}, but expected failure." 130 @status = "Failed. Exit code: #{status}." 136 @status = "Failed. Verifier exit code: #{status}."
|
| /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() 114 LOG(ERROR, ZIPARCHIVE) << "unzGetCurrentFileInfo failed!"; in GetCurrentFileInfo() 124 LOG(ERROR, ZIPARCHIVE) << "OpenCurrentFile failed!"; in OpenCurrentFile() 139 LOG(ERROR, ZIPARCHIVE) << "CloseCurrentFile failed!"; in CloseCurrentFile() 149 LOG(ERROR, ZIPARCHIVE) << "ExtractToMemory failed!"; in ExtractToMemory() 162 LOG(ERROR, ZIPARCHIVE) << "CreateArchive failed, zipname is " << zipname; in CreateOrAddFileIntoZip() 169 …LOG(ERROR, ZIPARCHIVE) << "zipOpenNewFileInZip failed!, zipname is" << zipname << ", filename is "… in CreateOrAddFileIntoZip() 174 …LOG(ERROR, ZIPARCHIVE) << "zipWriteInFileInZip failed!, zipname is" << zipname << ", filename is "… in CreateOrAddFileIntoZip() 179 …LOG(ERROR, ZIPARCHIVE) << "zipCloseFileInZip failed!, zipname is" << zipname << ", filename is " <… in CreateOrAddFileIntoZip() [all …]
|
| /arkcompiler/runtime_core/static_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() 114 LOG(ERROR, ZIPARCHIVE) << "unzGetCurrentFileInfo failed!"; in GetCurrentFileInfo() 124 LOG(ERROR, ZIPARCHIVE) << "OpenCurrentFile failed!"; in OpenCurrentFile() 139 LOG(ERROR, ZIPARCHIVE) << "CloseCurrentFile failed!"; in CloseCurrentFile() 149 LOG(ERROR, ZIPARCHIVE) << "ExtractToMemory failed!"; in ExtractToMemory() 161 LOG(ERROR, ZIPARCHIVE) << "CreateArchive failed, zipname is " << zipname; in CreateOrAddFileIntoZip() 168 …LOG(ERROR, ZIPARCHIVE) << "zipOpenNewFileInZip failed!, zipname is" << zipname << ", filename is "… in CreateOrAddFileIntoZip() 173 …LOG(ERROR, ZIPARCHIVE) << "zipWriteInFileInZip failed!, zipname is" << zipname << ", filename is "… in CreateOrAddFileIntoZip() 178 …LOG(ERROR, ZIPARCHIVE) << "zipCloseFileInZip failed!, zipname is" << zipname << ", filename is " <… in CreateOrAddFileIntoZip() [all …]
|
| /arkcompiler/runtime_core/static_core/dprof/libdprof/dprof/ipc/ |
| D | ipc_unix_socket.cpp | 38 PLOG(ERROR, DPROF) << "setsockopt() failed"; in CreateUnixServerSocket() 44 PLOG(ERROR, DPROF) << "CreateUnixServerSocket memset_s failed"; in CreateUnixServerSocket() 49 PLOG(ERROR, DPROF) << "CreateUnixServerSocket memcpy_s failed"; in CreateUnixServerSocket() 54 PLOG(ERROR, DPROF) << "bind() failed"; in CreateUnixServerSocket() 59 PLOG(ERROR, DPROF) << "listen() failed"; in CreateUnixServerSocket() 70 PLOG(ERROR, DPROF) << "socket() failed"; in CreateUnixClientSocket() 76 PLOG(ERROR, DPROF) << "CreateUnixClientSocket memset_s failed"; in CreateUnixClientSocket() 81 PLOG(ERROR, DPROF) << "CreateUnixClientSocket memcpy_s failed"; in CreateUnixClientSocket() 86 PLOG(ERROR, DPROF) << "connect() failed"; in CreateUnixClientSocket() 101 PLOG(ERROR, DPROF) << "send() failed"; in SendAll() [all …]
|
| /arkcompiler/toolchain/websocket/client/ |
| D | websocket_client.cpp | 55 LOGE("ValidateServerHandShake failed to generate expected Sec-WebSocket-Accept token"); in ValidateServerHandShake() 78 …LOGE("InitToolchainWebSocketForPort::client socket failed, error = %{public}d , desc = %{public}s", in InitToolchainWebSocketForPort() 86 …LOGE("InitToolchainWebSocketForPort::client SetWebSocketTimeOut failed, error = %{public}d , desc … in InitToolchainWebSocketForPort() 94 …LOGE("InitToolchainWebSocketForPort::client memset_s clientAddr failed, error = %{public}d, desc =… in InitToolchainWebSocketForPort() 103 …LOGE("InitToolchainWebSocketForPort::client inet_pton failed, error = %{public}d, desc = %{public}… in InitToolchainWebSocketForPort() 111 …LOGE("InitToolchainWebSocketForPort::client connect failed, error = %{public}d, desc = %{public}s", in InitToolchainWebSocketForPort() 130 …LOGE("InitToolchainWebSocketForSockName::client socket failed, error = %{public}d , desc = %{publi… in InitToolchainWebSocketForSockName() 138 LOGE("InitToolchainWebSocketForSockName::client SetWebSocketTimeOut failed, " in InitToolchainWebSocketForSockName() 147 LOGE("InitToolchainWebSocketForSockName::client memset_s clientAddr failed, " in InitToolchainWebSocketForSockName() 155 LOGE("InitToolchainWebSocketForSockName::client strcpy_s serverAddr.sun_path failed, " in InitToolchainWebSocketForSockName() [all …]
|