Home | History | Annotate | Download | only in tmpfs

Lines Matching defs:tmpfs_mount_t

234 } tmpfs_mount_t;
251 void tmpfs_free_node(tmpfs_mount_t *, tmpfs_node_t *);
256 int tmpfs_alloc_dirent(tmpfs_mount_t *, const char *, uint16_t,
258 void tmpfs_free_dirent(tmpfs_mount_t *, tmpfs_dirent_t *);
286 void tmpfs_mntmem_init(tmpfs_mount_t *, uint64_t);
287 void tmpfs_mntmem_destroy(tmpfs_mount_t *);
288 int tmpfs_mntmem_set(tmpfs_mount_t *, uint64_t);
291 uint64_t tmpfs_bytes_max(tmpfs_mount_t *);
292 size_t tmpfs_pages_avail(tmpfs_mount_t *);
293 bool tmpfs_mem_incr(tmpfs_mount_t *, size_t);
294 void tmpfs_mem_decr(tmpfs_mount_t *, size_t);
296 tmpfs_dirent_t *tmpfs_dirent_get(tmpfs_mount_t *);
297 void tmpfs_dirent_put(tmpfs_mount_t *, tmpfs_dirent_t *);
299 tmpfs_node_t * tmpfs_node_get(tmpfs_mount_t *);
300 void tmpfs_node_put(tmpfs_mount_t *, tmpfs_node_t *);
302 char * tmpfs_strname_alloc(tmpfs_mount_t *, size_t);
303 void tmpfs_strname_free(tmpfs_mount_t *, char *, size_t);
319 static __inline tmpfs_mount_t *
322 tmpfs_mount_t *tmp = mp->mnt_data;