Home
last modified time | relevance | path

Searched refs:mntent (Results 1 – 4 of 4) sorted by relevance

/linux/tools/bpf/bpftool/
H A Dtoken.c79 static void show_token_info_plain(struct mntent *mntent) in show_token_info_plain() argument
83 printf("token_info %s", mntent->mnt_dir); in show_token_info_plain()
89 opts = strdup(mntent->mnt_opts); in show_token_info_plain()
116 static void show_token_info_json(struct mntent *mntent) in show_token_info_json() argument
121 jsonw_string_field(json_wtr, "token_info", mntent->mnt_dir); in show_token_info_json()
127 opts = strdup(mntent->mnt_opts); in show_token_info_json()
136 static int __show_token_info(struct mntent *mntent) in __show_token_info() argument
139 show_token_info_json(mntent); in __show_token_info()
141 show_token_info_plain(mntent); in __show_token_info()
149 struct mntent *ent; in show_token_info()
H A Dcommon.c13 #include <mntent.h>
598 struct mntent *mntent = NULL; in build_pinned_obj_table() local
611 while ((mntent = getmntent(mntfile))) { in build_pinned_obj_table()
612 char *path = mntent->mnt_dir; in build_pinned_obj_table()
614 if (strncmp(mntent->mnt_type, "bpf", 3) != 0) in build_pinned_obj_table()
H A Dcgroup.c463 struct mntent *mnt; in find_cgroup_root()
/linux/tools/hv/
H A Dhv_vss_daemon.c117 struct mntent *ent; in vss_operate()