Home
last modified time | relevance | path

Searched defs:rc (Results 1 – 25 of 28) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/platform/common/
Dmutex.cpp32 [[maybe_unused]]int rc = pthread_mutex_destroy(&mutex_); in ~Mutex() local
38 [[maybe_unused]]int rc = pthread_mutex_init(&mutex_, attrs); in Init() local
44 [[maybe_unused]]int rc = pthread_mutex_lock(&mutex_); in Lock() local
50 int rc = pthread_mutex_trylock(&mutex_); in TryLock() local
62 [[maybe_unused]]int rc = pthread_mutex_unlock(&mutex_); in Unlock() local
76 [[maybe_unused]]int rc = pthread_rwlock_init(&rwlock_, nullptr); in RWLock() local
82 [[maybe_unused]]int rc = pthread_rwlock_destroy(&rwlock_); in ~RWLock() local
88 [[maybe_unused]]int rc = pthread_rwlock_rdlock(&rwlock_); in ReadLock() local
94 [[maybe_unused]]int rc = pthread_rwlock_wrlock(&rwlock_); in WriteLock() local
100 int rc = pthread_rwlock_tryrdlock(&rwlock_); in TryReadLock() local
[all …]
/arkcompiler/runtime_core/static_core/libpandabase/os/
Dmutex.cpp28 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/libpandabase/os/
Dmutex.cpp28 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/ecmascript/platform/
Dmutex.h24 #define FATAL_IF_ERROR(f, rc) \ argument
31 #define FATAL_IF_ERROR(f, rc) static_cast<void>(0) argument
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
Djs_refconvert_array.h76 napi_status rc = napi_set_element(env, jsArr, idx, jsElem); in WrapImpl() local
99 napi_status rc = napi_get_array_length(env, jsArr, &len); in UnwrapImpl() local
167 napi_status rc = napi_set_element(env, jsArr, idx, jsElem); in WrapImpl() local
205 napi_status rc = napi_get_array_length(env, jsArr, &len); in UnwrapImpl() local
Dintrinsics_api_impl.cpp207 napi_status rc = napi_instanceof(env, jsObj, jsCtor, &res); in JSRuntimeInstanceOfDynamic() local
380 napi_status rc = napi_get_named_property(env, jsVal, propStr, &res); in CompilerGetJSNamedProperty() local
397 napi_status rc = napi_get_property(env, jsVal, ToLocal(prop), &res); in CompilerGetJSProperty() local
413 auto rc = napi_get_element(env, ToLocal(val), index, &res); in CompilerGetJSElement() local
Dintrinsics_api_impl.h110 auto rc = napi_get_element(env, jsVal, index, &result); in JSValueIndexedGetter() local
Dinterop_common.h193 inline bool NapiThrownGeneric(napi_status rc) in NapiThrownGeneric()
Djs_convert.h480 napi_status rc = napi_get_named_property(env, jsVal, name, &jsVal); in JSValueGetByName() local
497 napi_status rc = napi_set_named_property(env, jsVal, name, jsPropVal); in JSValueSetByName() local
Dinterop_context.cpp380 auto rc = napi_create_error(env, nullptr, jsDummyStr, &jsErr); in NapiTryDumpStack() local
/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
Dfile.h139 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/
Dfile.h163 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/
Dfile.h181 int rc = ftruncate(fd_, 0); in ClearData() local
190 off_t rc = lseek(fd_, 0, SEEK_SET); in ClearData() local
Dsighook.cpp59 int rc = os::memory::PandaThreadKeyCreate(&key, nullptr); in GetHandlingSignalKey() local
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Dfile.h191 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/
Dipc_unix_socket.cpp116 int rc = PANDA_FAILURE_RETRY(::poll(&pfd, 1, timeoutMs)); in WaitDataTimeout() local
/arkcompiler/ets_runtime/ecmascript/platform/unix/
Daot_crash_info.cpp43 int rc = syscall(SYS_rt_tgsigqueueinfo, getpid(), syscall(SYS_gettid), info->si_signo, info); in GetSignalHandler() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/call/
Dcall_js.cpp208 napi_status rc = napi_get_named_property(env, jsVal, name.c_str(), &jsVal); in ResolveQualifiedReceiverTarget() local
287 napi_status rc = napi_get_property(env, jsVal, jsStr, &jsVal); in JSRuntimeCallJSBase() local
350 napi_status rc = napi_get_named_property(env, jsThis, methodName, &jsFn); in CallJSProxy() local
/arkcompiler/runtime_core/panda/
Dpanda.cpp69 int rc = 0; in BlockSignals() local
/arkcompiler/runtime_core/static_core/verification/util/tests/
Dtagged_index_property_test.cpp50 namespace rc { namespace
Dbit_vector_property_test.cpp55 namespace rc { namespace
/arkcompiler/ets_runtime/ecmascript/mem/
Djit_fort.cpp275 int rc = ioctl(fd, XPM_SET_JITFORT_ENABLE, 0); in InitJitFortResource() local
/arkcompiler/runtime_core/static_core/runtime/profilesaver/
Dprofile_dump_info.cpp90 int rc = stat(filename.c_str(), &statBuf); in GetFileSizeBytes() local
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/
DetsUnionType.cpp461 bool rc = false; in ExtractType() local
/arkcompiler/ets_frontend/ets2panda/checker/ets/
DtypeCheckingHelpers.cpp1000 bool const rc = CheckLambdaTypeAnnotation(typeAnn, arrowFuncExpr, parameterType, flags); in TypeInference() local

12