Lines Matching refs:result
51 const char *result = NULL; in test_flopen_create() local
57 result = strerror(errno); in test_flopen_create()
62 return (result); in test_flopen_create()
72 const char *result = NULL; in test_flopen_open() local
77 result = strerror(errno); in test_flopen_open()
82 result = strerror(errno); in test_flopen_open()
88 return (result); in test_flopen_open()
98 const char *result = NULL; in test_flopen_lock_self() local
104 result = strerror(errno); in test_flopen_lock_self()
108 result = "second open succeeded"; in test_flopen_lock_self()
114 return (result); in test_flopen_lock_self()
124 const char *result = NULL; in test_flopen_lock_other() local
130 result = strerror(errno); in test_flopen_lock_other()
139 result = "vfork() doesn't work as expected"; in test_flopen_lock_other()
141 result = "second open succeeded"; in test_flopen_lock_other()
145 return (result); in test_flopen_lock_other()
155 const char *result = NULL; in test_flopen_lock_child() local
162 result = strerror(errno); in test_flopen_lock_child()
166 result = strerror(errno); in test_flopen_lock_child()
173 result = "second open succeeded"; in test_flopen_lock_child()
179 return (result); in test_flopen_lock_child()
196 const char *result; in main() local
202 if ((result = t[i].func()) != NULL) in main()
204 t[i].name, result); in main()