| /arkcompiler/ets_runtime/ecmascript/platform/common/ |
| D | mutex.cpp | 30 [[maybe_unused]]int rc = pthread_mutex_destroy(&mutex_); in ~Mutex() local 36 [[maybe_unused]]int rc = pthread_mutex_init(&mutex_, attrs); in Init() local 42 [[maybe_unused]]int rc = pthread_mutex_lock(&mutex_); in Lock() local 48 int rc = pthread_mutex_trylock(&mutex_); in TryLock() local 60 [[maybe_unused]]int rc = pthread_mutex_unlock(&mutex_); in Unlock() local 74 [[maybe_unused]]int rc = pthread_rwlock_init(&rwlock_, nullptr); in RWLock() local 80 [[maybe_unused]]int rc = pthread_rwlock_destroy(&rwlock_); in ~RWLock() local 86 [[maybe_unused]]int rc = pthread_rwlock_rdlock(&rwlock_); in ReadLock() local 92 [[maybe_unused]]int rc = pthread_rwlock_wrlock(&rwlock_); in WriteLock() local 98 int rc = pthread_rwlock_tryrdlock(&rwlock_); in TryReadLock() local [all …]
|
| /arkcompiler/runtime_core/libpandabase/os/ |
| D | mutex.cpp | 28 ALWAYS_INLINE inline void FatalIfError(const char *f, int rc) in FatalIfError() 52 int rc = pthread_mutex_destroy(&mutex_); in ~Mutex() local 58 int rc = pthread_mutex_init(&mutex_, attrs); in Init() local 64 int rc = pthread_mutex_lock(&mutex_); in Lock() local 70 int rc = pthread_mutex_trylock(&mutex_); in TryLock() local 82 int rc = pthread_mutex_unlock(&mutex_); in Unlock() local 96 int rc = pthread_rwlock_init(&rwlock_, nullptr); in RWLock() local 102 int rc = pthread_rwlock_destroy(&rwlock_); in ~RWLock() local 108 int rc = pthread_rwlock_rdlock(&rwlock_); in ReadLock() local 114 int rc = pthread_rwlock_wrlock(&rwlock_); in WriteLock() local [all …]
|
| /arkcompiler/runtime_core/static_core/libpandabase/os/ |
| D | mutex.cpp | 28 ALWAYS_INLINE inline void FatalIfError(const char *f, int rc) in FatalIfError() 52 int rc = pthread_mutex_destroy(&mutex_); in ~Mutex() local 58 int rc = pthread_mutex_init(&mutex_, attrs); in Init() local 64 int rc = pthread_mutex_lock(&mutex_); in Lock() local 70 int rc = pthread_mutex_trylock(&mutex_); in TryLock() local 82 int rc = pthread_mutex_unlock(&mutex_); in Unlock() local 96 int rc = pthread_rwlock_init(&rwlock_, nullptr); in RWLock() local 102 int rc = pthread_rwlock_destroy(&rwlock_); in ~RWLock() local 108 int rc = pthread_rwlock_rdlock(&rwlock_); in ReadLock() local 114 int rc = pthread_rwlock_wrlock(&rwlock_); in WriteLock() local [all …]
|
| /arkcompiler/ets_runtime/common_components/platform/ |
| D | mutex.h | 23 #define FATAL_IF_ERROR(f, rc) \ argument 30 #define FATAL_IF_ERROR(f, rc) static_cast<void>(0) argument 63 [[maybe_unused]] int rc = pthread_mutex_destroy(&mutex_); in ~Mutex() local 69 [[maybe_unused]] int rc = pthread_mutex_init(&mutex_, attrs); in Init() local 75 [[maybe_unused]] int rc = pthread_mutex_lock(&mutex_); in Lock() local 81 int rc = pthread_mutex_trylock(&mutex_); in TryLock() local 93 [[maybe_unused]] int rc = pthread_mutex_unlock(&mutex_); in Unlock() local 136 [[maybe_unused]]int rc = pthread_cond_init(&cond_, nullptr); in ConditionVariable() local 142 [[maybe_unused]]int rc = pthread_cond_destroy(&cond_); in ~ConditionVariable() local 148 [[maybe_unused]]int rc = pthread_cond_signal(&cond_); in Signal() local [all …]
|
| /arkcompiler/ets_runtime/ecmascript/platform/ |
| D | mutex.h | 30 #define FATAL_IF_ERROR(f, rc) \ argument 37 #define FATAL_IF_ERROR(f, rc) static_cast<void>(0) argument
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ |
| D | js_refconvert_array.h | 84 napi_status rc = napi_set_element(env, jsArr, idx, jsElem); in WrapImpl() local 108 napi_status rc = napi_get_array_length(env, jsArr, &len); in UnwrapImpl() local 186 napi_status rc = napi_set_element(env, jsArr, idx, jsElem); in WrapImpl() local 225 napi_status rc = napi_get_array_length(env, jsArr, &len); in UnwrapImpl() local
|
| D | interop_common.cpp | 131 static bool GetPropertyStatusHandling([[maybe_unused]] napi_env env, napi_status rc) in GetPropertyStatusHandling() 155 napi_status rc = napi_get_property(env, object, key, result); in NapiGetProperty() local 161 napi_status rc = napi_get_named_property(env, object, utf8name, result); in NapiGetNamedProperty() local
|
| D | interop_common.h | 259 inline bool NapiThrownGeneric(napi_status rc) in NapiThrownGeneric()
|
| D | intrinsics_api_impl.cpp | 366 napi_status rc = napi_instanceof(env, jsObj, jsCtor, &res); in JSRuntimeInstanceOfDynamic() local 866 napi_status rc = napi_get_named_property(env, jsVal, propStr, &res); in CompilerGetJSNamedProperty() local 887 napi_status rc = napi_get_property(env, jsVal, ToLocal(prop), &res); in CompilerGetJSProperty() local 907 auto rc = napi_get_element(env, ToLocal(val), index, &res); in CompilerGetJSElement() local
|
| D | interop_context.cpp | 695 auto rc = napi_create_error(env, nullptr, jsDummyStr, &jsErr); in NapiTryDumpStack() local
|
| /arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/ |
| D | file.h | 139 auto rc = _chsize(fd_, 0); in ClearData() local 148 auto rc = _lseek(fd_, 0, SEEK_SET); in ClearData() local
|
| /arkcompiler/runtime_core/platforms/windows/libpandabase/ |
| D | file.h | 163 auto rc = _chsize(fd_, 0); in ClearData() local 172 auto rc = _lseek(fd_, 0, SEEK_SET); in ClearData() local
|
| /arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/ |
| D | file.h | 181 int rc = ftruncate(fd_, 0); in ClearData() local 190 off_t rc = lseek(fd_, 0, SEEK_SET); in ClearData() local
|
| D | sighook.cpp | 46 if (int rc = os::memory::PandaThreadKeyCreate(&key, nullptr); rc != 0) { in GetHandlingSignalKey() local
|
| /arkcompiler/runtime_core/platforms/unix/libpandabase/ |
| D | file.h | 191 int rc = ftruncate(fd_, 0); in ClearData() local 200 off_t rc = lseek(fd_, 0, SEEK_SET); in ClearData() local
|
| /arkcompiler/runtime_core/static_core/dprof/libdprof/dprof/ipc/ |
| D | ipc_unix_socket.cpp | 116 int rc = PANDA_FAILURE_RETRY(::poll(&pfd, 1, timeoutMs)); in WaitDataTimeout() local
|
| /arkcompiler/ets_runtime/ecmascript/platform/unix/ |
| D | aot_crash_info.cpp | 42 int rc = syscall(SYS_rt_tgsigqueueinfo, getpid(), syscall(SYS_gettid), info->si_signo, info); in GetSignalHandler() local
|
| /arkcompiler/runtime_core/static_core/verification/util/tests/ |
| D | tagged_index_property_test.cpp | 50 namespace rc { namespace
|
| D | bit_vector_property_test.cpp | 55 namespace rc { namespace
|
| /arkcompiler/runtime_core/panda/ |
| D | panda.cpp | 69 int rc = 0; in BlockSignals() local
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | jit_fort.cpp | 350 int rc = ioctl(fd, XPM_SET_JITFORT_ENABLE, 0); in InitJitFortResource() local
|
| /arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
| D | etsUnionType.cpp | 494 bool rc = false; in ExtractType() local 558 bool rc = false; in ExtractType() local
|
| /arkcompiler/runtime_core/static_core/runtime/profilesaver/ |
| D | profile_dump_info.cpp | 91 int rc = stat(filename.c_str(), &statBuf); in GetFileSizeBytes() local
|
| /arkcompiler/ets_frontend/ets2panda/lexer/ |
| D | lexer.cpp | 392 std::optional<std::size_t> rc {}; in ScanCharLex() local
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | runtime.cpp | 1448 int rc = 0; in BlockSignals() local
|