Symbol: usershell
lib/libc/tests/nss/getusershell_test.c
101
free_usershell(struct usershell *us)
lib/libc/tests/nss/getusershell_test.c
107
sdump_usershell(struct usershell *us, char *buffer, size_t buflen)
lib/libc/tests/nss/getusershell_test.c
113
dump_usershell(struct usershell *us)
lib/libc/tests/nss/getusershell_test.c
124
usershell_read_snapshot_func(struct usershell *us, char *line)
lib/libc/tests/nss/getusershell_test.c
137
struct usershell ushell;
lib/libc/tests/nss/getusershell_test.c
142
TEST_DATA_INIT(usershell, &td, clone_usershell, free_usershell);
lib/libc/tests/nss/getusershell_test.c
143
TEST_DATA_INIT(usershell, &td_snap, clone_usershell, free_usershell);
lib/libc/tests/nss/getusershell_test.c
149
TEST_DATA_APPEND(usershell, &td, &ushell);
lib/libc/tests/nss/getusershell_test.c
165
rv = TEST_SNAPSHOT_FILE_READ(usershell, snapshot_file,
lib/libc/tests/nss/getusershell_test.c
176
rv = DO_2PASS_TEST(usershell, &td, &td_snap,
lib/libc/tests/nss/getusershell_test.c
181
rv = TEST_SNAPSHOT_FILE_WRITE(usershell, snapshot_file,
lib/libc/tests/nss/getusershell_test.c
191
TEST_DATA_DESTROY(usershell, &td_snap);
lib/libc/tests/nss/getusershell_test.c
192
TEST_DATA_DESTROY(usershell, &td);
lib/libc/tests/nss/getusershell_test.c
48
DECLARE_TEST_DATA(usershell)
lib/libc/tests/nss/getusershell_test.c
49
DECLARE_TEST_FILE_SNAPSHOT(usershell)
lib/libc/tests/nss/getusershell_test.c
50
DECLARE_2PASS_TEST(usershell)
lib/libc/tests/nss/getusershell_test.c
52
static void clone_usershell(struct usershell *, struct usershell const *);
lib/libc/tests/nss/getusershell_test.c
53
static int compare_usershell(struct usershell *, struct usershell *, void *);
lib/libc/tests/nss/getusershell_test.c
54
static void free_usershell(struct usershell *);
lib/libc/tests/nss/getusershell_test.c
56
static void sdump_usershell(struct usershell *, char *, size_t);
lib/libc/tests/nss/getusershell_test.c
57
static void dump_usershell(struct usershell *);
lib/libc/tests/nss/getusershell_test.c
59
IMPLEMENT_TEST_DATA(usershell)
lib/libc/tests/nss/getusershell_test.c
60
IMPLEMENT_TEST_FILE_SNAPSHOT(usershell)
lib/libc/tests/nss/getusershell_test.c
61
IMPLEMENT_2PASS_TEST(usershell)
lib/libc/tests/nss/getusershell_test.c
64
clone_usershell(struct usershell *dest, struct usershell const *src)
lib/libc/tests/nss/getusershell_test.c
76
compare_usershell(struct usershell *us1, struct usershell *us2,