/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/connection/asio/ |
H A D | ws_logger.cpp | 55 if (channelType_ == websocketpp::log::channel_type_hint::access) { in write()
|
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | module_logger.cpp | 52 if (access(path.c_str(), F_OK) == 0) { in OpenResultFile() 53 if (access(path.c_str(), W_OK) == 0) { in OpenResultFile()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | file_manager.cpp | 85 if (access(filename, F_OK) == 0) { in ResolveAnFilePath()
|
/arkcompiler/ets_runtime/ecmascript/platform/unix/ |
H A D | file.cpp | 169 return (access(filename, F_OK) != -1); in FileExist()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
H A D | std_core_TypeCreator.cpp | 316 EtsString *TypeAPITypeCreatorCtxMethodAddAccessMod(EtsLong methodPtr, EtsInt access) in TypeAPITypeCreatorCtxMethodAddAccessMod() argument 319 SetAccessFlags(m->GetFn().metadata.get(), static_cast<EtsTypeAPIAccessModifier>(access)); in TypeAPITypeCreatorCtxMethodAddAccessMod() 569 EtsInt access) in TypeAPITypeCreatorCtxClassAddField() 582 SetAccessFlags(fld.metadata.get(), static_cast<EtsTypeAPIAccessModifier>(access)); in TypeAPITypeCreatorCtxClassAddField() 568 TypeAPITypeCreatorCtxClassAddField(EtsLong classPtr, EtsString *name, EtsString *descr, EtsInt attrs, EtsInt access) TypeAPITypeCreatorCtxClassAddField() argument
|
/arkcompiler/runtime_core/static_core/static_linker/ |
H A D | linker_context.cpp | 431 auto access = fm->GetAccessFlags(); in MergeForeignMethodCreate() local 433 std::piecewise_construct, std::forward_as_tuple(fc, name, proto, access), std::forward_as_tuple(nullptr)); in MergeForeignMethodCreate() 435 iter->second = cont_.CreateItem<panda_file::ForeignMethodItem>(fc, name, proto, access); in MergeForeignMethodCreate()
|
/arkcompiler/ets_frontend/ets2panda/parser/ |
H A D | ASparser.cpp | 1211 ir::ModifierFlags access = GetAccessability(desc->modifiers); in ValidateClassSetter() local 1212 CheckAccessorPair(properties, propName, ir::MethodDefinitionKind::GET, access); in ValidateClassSetter() 1220 ir::ModifierFlags access = GetAccessability(desc->modifiers); in ValidateClassGetter() local 1222 CheckAccessorPair(properties, propName, ir::MethodDefinitionKind::SET, access); in ValidateClassGetter()
|
H A D | TSparser.cpp | 1939 ir::ModifierFlags access = GetAccessability(desc->modifiers); in ValidateClassSetter() local 1940 CheckAccessorPair(properties, propName, ir::MethodDefinitionKind::GET, access); in ValidateClassSetter() 1952 ir::ModifierFlags access = GetAccessability(desc->modifiers); in ValidateClassGetter() local 1954 CheckAccessorPair(properties, propName, ir::MethodDefinitionKind::SET, access); in ValidateClassGetter()
|
H A D | parserImpl.cpp | 204 ir::MethodDefinitionKind methodKind, ir::ModifierFlags access) in CheckAccessorPair() 239 setAccess = access; in CheckAccessorPair() 242 getAccess = access; in CheckAccessorPair() 203 CheckAccessorPair(const ArenaVector<ir::AstNode *> &properties, const ir::Expression *propName, ir::MethodDefinitionKind methodKind, ir::ModifierFlags access) CheckAccessorPair() argument
|
H A D | parserImpl.h | 299 ir::MethodDefinitionKind methodKind, ir::ModifierFlags access);
|
/arkcompiler/ets_runtime/compiler_service/src/ |
H A D | aot_compiler_impl.cpp | 332 if (access(hapArgs_.fileName.c_str(), ERR_OK) != ERR_FAIL) { in RemoveAotFiles()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
H A D | parserImpl.cpp | 2214 ir::MethodDefinitionKind methodKind, ir::ModifierFlags access, bool hasDecorator, in CheckAccessorPair() 2260 setAccess = access; in CheckAccessorPair() 2263 getAccess = access; in CheckAccessorPair() 2516 ir::ModifierFlags access = GetAccessability(desc->modifiers); in ValidateClassSetter() local 2517 CheckAccessorPair(properties, propName, ir::MethodDefinitionKind::GET, access, hasDecorator, errorInfo); in ValidateClassSetter() 2530 ir::ModifierFlags access = GetAccessability(desc->modifiers); in ValidateClassGetter() local 2532 CheckAccessorPair(properties, propName, ir::MethodDefinitionKind::SET, access, hasDecorator, errorInfo); in ValidateClassGetter() 3469 ThrowSyntaxError("super() must be called before this/super access.", ctor->Start()); in ValidateSuperCallLocation() 2213 CheckAccessorPair(const ArenaVector<ir::Statement *> &properties, const ir::Expression *propName, ir::MethodDefinitionKind methodKind, ir::ModifierFlags access, bool hasDecorator, lexer::SourcePosition errorInfo) CheckAccessorPair() argument
|
H A D | parserImpl.h | 376 ir::MethodDefinitionKind methodKind, ir::ModifierFlags access, bool hasDecorator,
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_ark_tools.cpp | 371 if (access(path.c_str(), F_OK) == 0) { in CreateFile() 372 if (access(path.c_str(), W_OK) == 0) { in CreateFile()
|