MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / FindDir

Function FindDir

Kernel/src/fs/filesystem.cpp:425–431  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

423 }
424
425 FsNode* FindDir(FsNode* node, char* name){
426 assert(node);
427
428 //if((node->flags & FS_NODE_TYPE) == FS_NODE_SYMLINK) return FindDir(node->link, name);
429
430 return node->FindDir(name);
431 }
432
433 ssize_t Read(fs_fd_t* handle, size_t size, uint8_t *buffer){
434 if(handle->node){

Callers 1

ResolvePathFunction · 0.70

Calls 1

FindDirMethod · 0.45

Tested by

no test coverage detected