Lines Matching full:xi
17 struct ceph_auth_none_info *xi = ac->private; in reset() local
19 xi->starting = true; in reset()
30 struct ceph_auth_none_info *xi = ac->private; in is_authenticated() local
32 return !xi->starting; in is_authenticated()
37 struct ceph_auth_none_info *xi = ac->private; in should_authenticate() local
39 return xi->starting; in should_authenticate()
77 struct ceph_auth_none_info *xi = ac->private; in handle_reply() local
79 xi->starting = false; in handle_reply()
133 struct ceph_auth_none_info *xi; in ceph_auth_none_init() local
136 xi = kzalloc(sizeof(*xi), GFP_NOFS); in ceph_auth_none_init()
137 if (!xi) in ceph_auth_none_init()
140 xi->starting = true; in ceph_auth_none_init()
143 ac->private = xi; in ceph_auth_none_init()