Symbol: fssh_dprintf
headers/private/fs_shell/fssh_api_wrapper.h
1005
#define dprintf fssh_dprintf
headers/private/fs_shell/fssh_kernel_export.h
27
extern void fssh_dprintf(const char *format, ...) /* just like printf */
src/tools/bfs_shell/command_checkfs.cpp
111
fssh_dprintf(" %" FSSH_B_PRIu64 " nodes checked,\n\t%" FSSH_B_PRIu64
src/tools/bfs_shell/command_checkfs.cpp
115
fssh_dprintf("\tfiles\t\t%" FSSH_B_PRIu64 "\n\tdirectories\t%"
src/tools/bfs_shell/command_checkfs.cpp
121
fssh_dprintf("\n\tdirect block runs\t\t%" FSSH_B_PRIu64 " (%" FSSH_B_PRIu64
src/tools/bfs_shell/command_checkfs.cpp
124
fssh_dprintf("\tindirect block runs\t\t%" FSSH_B_PRIu64 " (in %"
src/tools/bfs_shell/command_checkfs.cpp
128
fssh_dprintf("\tdouble indirect block runs\t%" FSSH_B_PRIu64 " (in %"
src/tools/bfs_shell/command_checkfs.cpp
21
fssh_dprintf("Usage: %s [-c]\n"
src/tools/bfs_shell/command_checkfs.cpp
58
fssh_dprintf("%9" FSSH_B_PRIu64 " nodes processed\x1b[1A\n",
src/tools/bfs_shell/command_checkfs.cpp
64
fssh_dprintf("%s (inode = %" FSSH_B_PRIdINO ")", result.name,
src/tools/bfs_shell/command_checkfs.cpp
67
fssh_dprintf(", some blocks weren't allocated");
src/tools/bfs_shell/command_checkfs.cpp
69
fssh_dprintf(", has blocks already set");
src/tools/bfs_shell/command_checkfs.cpp
71
fssh_dprintf(", has invalid block run(s)");
src/tools/bfs_shell/command_checkfs.cpp
73
fssh_dprintf(", could not be opened");
src/tools/bfs_shell/command_checkfs.cpp
75
fssh_dprintf(", has wrong type");
src/tools/bfs_shell/command_checkfs.cpp
77
fssh_dprintf(", names don't match");
src/tools/bfs_shell/command_checkfs.cpp
79
fssh_dprintf(", invalid b+tree");
src/tools/bfs_shell/command_checkfs.cpp
80
fssh_dprintf("\n");
src/tools/bfs_shell/command_checkfs.cpp
95
fssh_dprintf("Recreating broken index b+trees...\n");
src/tools/bfs_shell/command_resizefs.cpp
21
fssh_dprintf("Usage: %s <new size>\n", argv[0]);
src/tools/bfs_shell/command_resizefs.cpp
27
fssh_dprintf("Unknown argument or invalid size\n");
src/tools/bfs_shell/command_resizefs.cpp
33
fssh_dprintf("Error: Couldn't open root directory\n");
src/tools/bfs_shell/command_resizefs.cpp
43
fssh_dprintf("Resizing failed, status: %s\n", fssh_strerror(status));
src/tools/bfs_shell/command_resizefs.cpp
47
fssh_dprintf("File system successfully resized!\n");
src/tools/fs_shell/block_cache.cpp
31
# define TRACE(x) fssh_dprintf x
src/tools/fs_shell/block_cache.cpp
665
fssh_dprintf("new block:\n");
src/tools/fs_shell/block_cache.cpp
667
fssh_dprintf("unchanged block:\n");
src/tools/fs_shell/fd.cpp
44
fssh_dprintf("fd[%d] = %p: type = %d, ref_count = %d, ops = %p, u.vnode = %p, u.mount = %p, cookie = %p, open_mode = %x, pos = %lld\n",
src/tools/fs_shell/file_cache.cpp
252
fssh_dprintf("file_cache_create(): Failed get vnode %d:%" FSSH_B_PRIdINO
src/tools/fs_shell/file_cache.cpp
30
# define TRACE(x) fssh_dprintf x
src/tools/fs_shell/hash.cpp
18
# define TRACE(x) fssh_dprintf x
src/tools/fs_shell/hash.cpp
67
fssh_dprintf("hash_init() called with NULL function pointer\n");
src/tools/fs_shell/module.cpp
25
# define TRACE(x) fssh_dprintf x
src/tools/fs_shell/module.cpp
29
#define FATAL(x) fssh_dprintf x
src/tools/fs_shell/module.cpp
290
fssh_dprintf("creation of built-in module \"%s\" failed!\n", info->name);
src/tools/fs_shell/module.cpp
301
fssh_dprintf("-- known modules:\n");
src/tools/fs_shell/module.cpp
304
fssh_dprintf("%p: \"%s\", \"%s\" (%d), refcount = %d, state = %d\n",
src/tools/fs_shell/vfs.cpp
3027
fssh_dprintf("vfs: fs_create() returned success but there is no vnode!");
src/tools/fs_shell/vfs.cpp
40
# define TRACE(x) fssh_dprintf x
src/tools/fs_shell/vfs.cpp
41
# define FUNCTION(x) fssh_dprintf x
src/tools/fs_shell/vfs.cpp
4962
fssh_dprintf("syncing of mount %d stopped due to vnode %"
src/tools/fs_shell/vfs.cpp
5182
fssh_dprintf("sync: device %d couldn't sync: %s\n", (int)device, fssh_strerror(status));