/ohos5.0/drivers/hdf_core/framework/tools/hc-gen/src/ |
H A D | startup_cfg_gen.cpp | 350 object = term->Lookup("threadPriority", PARSEROP_CONFTERM); in GetProcessPriority() 359 std::shared_ptr<AstObject> term = hostInfo->Lookup("mallocopt", PARSEROP_CONFTERM); in GetMallocOpt() 386 current = devNodeInfo->Lookup("preload", PARSEROP_CONFTERM); in GetHostLoadMode() 437 object = hostInfo->Lookup("hostName", PARSEROP_CONFTERM); in GetHostInfo() 446 object = hostInfo->Lookup("priority", PARSEROP_CONFTERM); in GetHostInfo() 452 object = hostInfo->Lookup("uid", PARSEROP_CONFTERM); in GetHostInfo() 457 object = hostInfo->Lookup("gid", PARSEROP_CONFTERM); in GetHostInfo() 460 object = hostInfo->Lookup("caps", PARSEROP_CONFTERM); in GetHostInfo() 465 object = hostInfo->Lookup("critical", PARSEROP_CONFTERM); in GetHostInfo() 469 object = hostInfo->Lookup("sandbox", PARSEROP_CONFTERM); in GetHostInfo() [all …]
|
H A D | ast.cpp | 274 std::shared_ptr<AstObject> AstObject::Lookup(const std::string &name, uint32_t type) const in Lookup() function in AstObject 529 auto childDst = Lookup(childSrc->Name(), childSrc->Type()); in Merge() 620 auto dst = Lookup(child->Name(), child->Type()); in Copy() 663 auto baseObj = Lookup(objChild->Name(), objChild->Type()); in Compare() 967 if (astRoot_->Lookup("module", PARSEROP_CONFTERM) == nullptr) { in Expand() 997 auto refObject = Lookup(current, node->GetRefPath()); in NodeExpandRef() 1054 std::shared_ptr<AstObject> ref = Lookup(current, current->child_->StringValue()); in NodeExpandTermRef() 1086 auto inherit = Lookup(current, node->GetRefPath()); in InheritExpand() 1114 std::shared_ptr<AstObject> Ast::Lookup(const std::shared_ptr<AstObject> &startObj, const std::strin… in Lookup() function in Ast 1117 return startObj->parent_->Lookup(path); in Lookup() [all …]
|
H A D | ast.h | 81 std::shared_ptr<AstObject> Lookup(const std::string &name, uint32_t type = 0) const; 294 …std::shared_ptr<AstObject> Lookup(const std::shared_ptr<AstObject> &startObj, const std::string &p…
|
H A D | text_gen.cpp | 53 auto moduleTerm = ast_->GetAstRoot()->Lookup("module", PARSEROP_CONFTERM); in Initialize()
|
/ohos5.0/docs/zh-cn/device-dev/kernel/ |
H A D | kernel-small-bundles-fs-new.md | 21 .Lookup = YourLookupMethod; 136 ## 适配Lookup接口 138 Lookup是查找文件的接口,它的函数原型是: 142 int (*Lookup)(struct Vnode *parent, const char *name, int len, struct Vnode **vnode); 229 > 1. 访问文件时,不一定会调用文件系统中的Lookup接口,仅在上层的路径缓存失效时才会调用到。
|
/ohos5.0/build/rust/tests/test_bindgen_test/test_for_hpp/ |
H A D | lib.h | 25 typedef const char* Lookup; typedef 34 void complexMethodRef(Lookup& c);
|
/ohos5.0/docs/en/device-dev/kernel/ |
H A D | kernel-small-bundles-fs-new.md | 20 .Lookup = YourLookupMethod; 129 ## Adapting the **Lookup** API<a name="section11930181394317"></a> 131 **Lookup** is used to search for files. The function prototype of **Lookup** is as follows: 134 int (*Lookup)(struct Vnode *parent, const char *name, int len, struct Vnode **vnode); 215 >1. When a file is accessed, the **Lookup** API of the file system is not necessarily called. Th…
|
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/include/cloud_disk/ |
H A D | file_operations_local.h | 26 void Lookup(fuse_req_t req, fuse_ino_t parent, const char *name) override;
|
H A D | fuse_operations.h | 25 static void Lookup(fuse_req_t req, fuse_ino_t parent, const char *name);
|
H A D | file_operations_cloud.h | 25 void Lookup(fuse_req_t req, fuse_ino_t parent, const char *name) override;
|
H A D | file_operations_base.h | 30 virtual void Lookup(fuse_req_t req, fuse_ino_t parent, const char *name);
|
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/cloud_disk/ |
H A D | fuse_operations.cpp | 33 void FuseOperations::Lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in Lookup() function in OHOS::FileManagement::CloudDisk::FuseOperations 37 opsPtr->Lookup(req, parent, name); in Lookup() 46 inoPtr->ops->Lookup(req, parent, name); in Lookup()
|
H A D | file_operations_base.cpp | 27 void FileOperationsBase::Lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in Lookup() function in OHOS::FileManagement::CloudDisk::FileOperationsBase
|
H A D | file_operations_local.cpp | 85 void FileOperationsLocal::Lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in Lookup() function in OHOS::FileManagement::CloudDisk::FileOperationsLocal
|
H A D | file_operations_cloud.cpp | 248 void FileOperationsCloud::Lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in Lookup() function in OHOS::FileManagement::CloudDisk::FileOperationsCloud
|
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloud_disk/mock/ |
H A D | file_operations_local_mock.cpp | 85 void FileOperationsLocal::Lookup(fuse_req_t req, fuse_ino_t parent, const char *name) {} in Lookup() function in OHOS::FileManagement::CloudDisk::FileOperationsLocal
|
/ohos5.0/foundation/filemanagement/dfs_service/test/unittests/cloud_disk/ |
H A D | file_operations_cloud_test.cpp | 90 fileOperationsCloud_->Lookup(nullptr, parent, name); 115 fileOperationsCloud_->Lookup(nullptr, parent, name); 140 fileOperationsCloud_->Lookup(nullptr, parent, name); 165 fileOperationsCloud_->Lookup(nullptr, parent, name); 190 fileOperationsCloud_->Lookup(nullptr, parent, name); 215 fileOperationsCloud_->Lookup(nullptr, parent, name); 240 fileOperationsCloud_->Lookup(nullptr, parent, name);
|
H A D | fuse_operations_test.cpp | 82 fuseoperations_->Lookup(req, FUSE_ROOT_ID, name); 106 fuseoperations_->Lookup(req, 0, name);
|
/ohos5.0/docs/zh-cn/release-notes/ |
H A D | OpenHarmony-v2.2-beta2.md | 95 … 支持基于NOR Flash的littlefs文件系统。<br/>- LiteOS-M对外提供统一的文件系统操作接口。<br/>- 新增Namecache模块、Vnode管理、Lookup模块。 |
|
/ohos5.0/docs/en/release-notes/ |
H A D | OpenHarmony-v2.2-beta2.md | 91 …system operation APIs for external systems.<br/>- Added the Namecache, Vnode, and Lookup modules. |
|
/ohos5.0/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/fuse_manager/ |
H A D | fuse_manager.cpp | 1444 .lookup = CloudDisk::FuseOperations::Lookup,
|