Lines Matching defs:context
723 // the process context for the client.
965 static void iso_callback(struct fw_iso_context *context, u32 cycle,
984 static void iso_mc_callback(struct fw_iso_context *context,
1002 static enum dma_data_direction iso_dma_direction(struct fw_iso_context *context)
1004 if (context->type == FW_ISO_CONTEXT_TRANSMIT)
1027 struct fw_iso_context *context;
1061 context = fw_iso_mc_context_create(client->device->card, cb.mc,
1064 context = fw_iso_context_create(client->device->card, a->type,
1067 if (IS_ERR(context))
1068 return PTR_ERR(context);
1070 context->drop_overflow_headers = true;
1072 /* We only support one context at this time. */
1076 fw_iso_context_destroy(context);
1083 iso_dma_direction(context));
1086 fw_iso_context_destroy(context);
1093 client->iso_context = context;