Lines Matching refs:client
79 struct p9_client *client; member
89 static int p9_xen_cancel(struct p9_client *client, struct p9_req_t *req) in p9_xen_cancel() argument
94 static int p9_xen_create(struct p9_client *client, const char *addr, char *args) in p9_xen_create() argument
104 priv->client = client; in p9_xen_create()
113 static void p9_xen_close(struct p9_client *client) in p9_xen_close() argument
119 if (priv->client == client) { in p9_xen_close()
120 priv->client = NULL; in p9_xen_close()
140 static int p9_xen_request(struct p9_client *client, struct p9_req_t *p9_req) in p9_xen_request() argument
151 if (priv->client == client) in p9_xen_request()
155 if (!priv || priv->client != client) in p9_xen_request()
224 req = p9_tag_lookup(priv->client, h.tag); in p9_xen_response()
249 p9_client_cb(priv->client, req, status); in p9_xen_response()
257 if (!ring || !ring->priv->client) { in xen_9pfs_front_event_handler()