Lines Matching refs:xi
16 struct ceph_auth_none_info *xi = ac->private; in reset() local
18 xi->starting = true; in reset()
19 xi->built_authorizer = false; 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()
54 struct ceph_auth_none_info *xi = ac->private; in handle_reply() local
56 xi->starting = false; in handle_reply()
122 struct ceph_auth_none_info *xi; in ceph_auth_none_init() local
125 xi = kzalloc(sizeof(*xi), GFP_NOFS); in ceph_auth_none_init()
126 if (!xi) in ceph_auth_none_init()
129 xi->starting = true; in ceph_auth_none_init()
130 xi->built_authorizer = false; in ceph_auth_none_init()
133 ac->private = xi; in ceph_auth_none_init()