Lines Matching refs:mgr
44 CamResourceManager *mgr; in cam_resource_manager_new() local
46 mgr = g_new0 (CamResourceManager, 1); in cam_resource_manager_new()
47 application = CAM_AL_APPLICATION (mgr); in cam_resource_manager_new()
55 return mgr; in cam_resource_manager_new()
59 cam_resource_manager_destroy (CamResourceManager * mgr) in cam_resource_manager_destroy() argument
61 _cam_al_application_destroy (CAM_AL_APPLICATION (mgr)); in cam_resource_manager_destroy()
62 g_free (mgr); in cam_resource_manager_destroy()
75 send_simple (CamResourceManager * mgr, CamSLSession * session, guint tag) in send_simple() argument
82 cam_al_calc_buffer_size (CAM_AL_APPLICATION (mgr)->al, 0, &buffer_size, in send_simple()
86 ret = cam_al_application_write (CAM_AL_APPLICATION (mgr), session, in send_simple()
95 send_profile_enquiry (CamResourceManager * mgr, CamSLSession * session) in send_profile_enquiry() argument
98 return send_simple (mgr, session, TAG_PROFILE_ENQUIRY); in send_profile_enquiry()
102 send_profile_change (CamResourceManager * mgr, CamSLSession * session) in send_profile_change() argument
105 return send_simple (mgr, session, TAG_PROFILE_CHANGE); in send_profile_change()
109 send_profile_reply (CamResourceManager * mgr, CamSLSession * session) in send_profile_reply() argument
120 resource_ids = cam_al_get_resource_ids (CAM_AL_APPLICATION (mgr)->al); in send_profile_reply()
123 cam_al_calc_buffer_size (CAM_AL_APPLICATION (mgr)->al, resource_ids_size, in send_profile_reply()
138 ret = cam_al_application_write (CAM_AL_APPLICATION (mgr), session, in send_profile_reply()
149 CamResourceManager *mgr = CAM_RESOURCE_MANAGER (application); in open_impl() local
151 return send_profile_enquiry (mgr, session); in open_impl()
161 handle_profile_reply (CamResourceManager * mgr, CamSLSession * session, in handle_profile_reply() argument
167 return send_profile_change (mgr, session); in handle_profile_reply()
174 CamResourceManager *mgr = CAM_RESOURCE_MANAGER (application); in data_impl() local
178 send_profile_reply (mgr, session); in data_impl()
181 handle_profile_reply (mgr, session, buffer, length); in data_impl()
184 send_profile_enquiry (mgr, session); in data_impl()