Lines Matching refs: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()
75 struct ceph_auth_none_info *xi = ac->private; in handle_reply() local
77 xi->starting = false; in handle_reply()
131 struct ceph_auth_none_info *xi; in ceph_auth_none_init() local
134 xi = kzalloc(sizeof(*xi), GFP_NOFS); in ceph_auth_none_init()
135 if (!xi) in ceph_auth_none_init()
138 xi->starting = true; in ceph_auth_none_init()
141 ac->private = xi; in ceph_auth_none_init()