Lines Matching defs:context
139 * @context: [in] fence context to use
156 u64 context, unsigned seqno,
170 context, seqno);
184 * dma_fence_match_context - Check if all fences are from the given context
186 * @context: [in] fence context to check all fences against
189 * against the given context. Returns false if any fence is from a different
190 * context.
192 bool dma_fence_match_context(struct dma_fence *fence, u64 context)
198 return fence->context == context;
201 if (array->fences[i]->context != context)