pwait              50 source4/ntvfs/posix/pvfs_wait.c 	struct pvfs_wait *pwait = talloc_get_type(private_data,
pwait              52 source4/ntvfs/posix/pvfs_wait.c 	pwait->handler(pwait->private_data, pwait->reason);
pwait              63 source4/ntvfs/posix/pvfs_wait.c 	struct pvfs_wait *pwait = talloc_get_type(private_data,
pwait              76 source4/ntvfs/posix/pvfs_wait.c 	if (p == NULL || p != pwait->private_data) {
pwait              80 source4/ntvfs/posix/pvfs_wait.c 	pwait->reason = PVFS_WAIT_EVENT;
pwait              86 source4/ntvfs/posix/pvfs_wait.c 	req = talloc_reference(msg, pwait->req);
pwait              87 source4/ntvfs/posix/pvfs_wait.c 	ntvfs_async_setup(pwait->req, pwait);
pwait              99 source4/ntvfs/posix/pvfs_wait.c 	struct pvfs_wait *pwait = talloc_get_type(private_data,
pwait             101 source4/ntvfs/posix/pvfs_wait.c 	struct ntvfs_request *req = pwait->req;
pwait             103 source4/ntvfs/posix/pvfs_wait.c 	pwait->reason = PVFS_WAIT_TIMEOUT;
pwait             106 source4/ntvfs/posix/pvfs_wait.c 	ntvfs_async_setup(pwait->req, pwait);
pwait             114 source4/ntvfs/posix/pvfs_wait.c static int pvfs_wait_destructor(struct pvfs_wait *pwait)
pwait             116 source4/ntvfs/posix/pvfs_wait.c 	if (pwait->msg_type != -1) {
pwait             117 source4/ntvfs/posix/pvfs_wait.c 		messaging_deregister(pwait->msg_ctx, pwait->msg_type, pwait);
pwait             119 source4/ntvfs/posix/pvfs_wait.c 	DLIST_REMOVE(pwait->pvfs->wait_list, pwait);
pwait             140 source4/ntvfs/posix/pvfs_wait.c 	struct pvfs_wait *pwait;
pwait             142 source4/ntvfs/posix/pvfs_wait.c 	pwait = talloc(pvfs, struct pvfs_wait);
pwait             143 source4/ntvfs/posix/pvfs_wait.c 	if (pwait == NULL) {
pwait             147 source4/ntvfs/posix/pvfs_wait.c 	pwait->private_data = private_data;
pwait             148 source4/ntvfs/posix/pvfs_wait.c 	pwait->handler = fn;
pwait             149 source4/ntvfs/posix/pvfs_wait.c 	pwait->msg_ctx = pvfs->ntvfs->ctx->msg_ctx;
pwait             150 source4/ntvfs/posix/pvfs_wait.c 	pwait->ev = pvfs->ntvfs->ctx->event_ctx;
pwait             151 source4/ntvfs/posix/pvfs_wait.c 	pwait->msg_type = msg_type;
pwait             152 source4/ntvfs/posix/pvfs_wait.c 	pwait->req = talloc_reference(pwait, req);
pwait             153 source4/ntvfs/posix/pvfs_wait.c 	pwait->pvfs = pvfs;
pwait             157 source4/ntvfs/posix/pvfs_wait.c 		event_add_timed(pwait->ev, pwait, end_time, pvfs_wait_timeout, pwait);
pwait             163 source4/ntvfs/posix/pvfs_wait.c 		messaging_register(pwait->msg_ctx,
pwait             164 source4/ntvfs/posix/pvfs_wait.c 				   pwait,
pwait             173 source4/ntvfs/posix/pvfs_wait.c 	DLIST_ADD(pvfs->wait_list, pwait);
pwait             176 source4/ntvfs/posix/pvfs_wait.c 	talloc_set_destructor(pwait, pvfs_wait_destructor);
pwait             178 source4/ntvfs/posix/pvfs_wait.c 	return pwait;
pwait             189 source4/ntvfs/posix/pvfs_wait.c 	struct pvfs_wait *pwait;
pwait             191 source4/ntvfs/posix/pvfs_wait.c 	for (pwait=pvfs->wait_list;pwait;pwait=pwait->next) {
pwait             192 source4/ntvfs/posix/pvfs_wait.c 		if (pwait->req == req) {
pwait             194 source4/ntvfs/posix/pvfs_wait.c 			pwait->reason = PVFS_WAIT_CANCEL;
pwait             195 source4/ntvfs/posix/pvfs_wait.c 			ntvfs_async_setup(pwait->req, pwait);