Lines Matching defs:context
150 * @context: [in] fence context to use
167 u64 context, unsigned seqno,
183 context, seqno);
211 * dma_fence_match_context - Check if all fences are from the given context
213 * @context: [in] fence context to check all fences against
216 * against the given context. Returns false if any fence is from a different
217 * context.
219 bool dma_fence_match_context(struct dma_fence *fence, u64 context)
225 return fence->context == context;
228 if (array->fences[i]->context != context)