Home
last modified time | relevance | path

Searched refs:CreateProcEntry (Results 1 – 13 of 13) sorted by relevance

/kernel/liteos_a/fs/proc/os_adapt/
Dpower_proc.c149 …struct ProcDirEntry *power = CreateProcEntry("power", S_IFDIR | S_IRWXU | S_IRWXG | S_IROTH, NULL); in ProcPmInit()
157 struct ProcDirEntry *mode = CreateProcEntry("power/power_mode", POWER_FILE_MODE, NULL); in ProcPmInit()
166 struct ProcDirEntry *lock = CreateProcEntry("power/power_lock", POWER_FILE_MODE, NULL); in ProcPmInit()
175 struct ProcDirEntry *unlock = CreateProcEntry("power/power_unlock", POWER_FILE_MODE, NULL); in ProcPmInit()
184 …struct ProcDirEntry *count = CreateProcEntry("power/power_count", S_IRUSR | S_IRGRP | S_IROTH, NUL… in ProcPmInit()
Dsys_user.c212 struct ProcDirEntry *parentPDE = CreateProcEntry("sys", PROC_SYS_USER_MODE, NULL); in ProcSysUserInit()
216 struct ProcDirEntry *pde = CreateProcEntry("user", PROC_SYS_USER_MODE, parentPDE); in ProcSysUserInit()
Dfile_sys.c63 struct ProcDirEntry *pde = CreateProcEntry("filesystems", 0, NULL); in ProcFileSysInit()
Dmem_info.c62 struct ProcDirEntry *pde = CreateProcEntry("meminfo", 0, NULL); in ProcSysMemInfoInit()
Dmounts_proc.c92 struct ProcDirEntry *pde = CreateProcEntry("mounts", 0, NULL); in ProcMountsInit()
Duptime_proc.c79 struct ProcDirEntry *pde = CreateProcEntry("uptime", 0, NULL); in ProcUptimeInit()
Dfd_proc.c136 struct ProcDirEntry *pde = CreateProcEntry("fd", 0, NULL); in ProcFdInit()
Dvmm_proc.c108 struct ProcDirEntry *pde = CreateProcEntry("vmm", 0, NULL); in ProcVmmInit()
Dfs_cache_proc.c210 struct ProcDirEntry *pde = CreateProcEntry("fs_cache", 0, NULL); in ProcFsCacheInit()
Dprocess_proc.c709 struct ProcDirEntry *pde = CreateProcEntry("process", 0, NULL); in ProcProcessInit()
Dplimits_proc.c881 struct ProcDirEntry *parentPDE = CreateProcEntry("plimits", PROC_PLIMITS_MODE, NULL); in ProcLimitsInit()
/kernel/liteos_a/fs/proc/include/
Dproc_fs.h187 extern struct ProcDirEntry *CreateProcEntry(const char *name, mode_t mode, struct ProcDirEntry *par…
/kernel/liteos_a/fs/proc/src/
Dproc_file.c370 struct ProcDirEntry *CreateProcEntry(const char *name, mode_t mode, struct ProcDirEntry *parent) in CreateProcEntry() function
483 struct ProcDirEntry *pde = CreateProcEntry(name, mode, parent); in ProcCreateData()