void tvhdhomerun_device_destroy( tvhdhomerun_device_t *hd ) { tvhdhomerun_frontend_t *lfe; lock_assert(&global_lock); mtimer_disarm(&hd->hd_destroy_timer); idnode_save_check(&hd->th_id, 0); tvhinfo(LS_TVHDHOMERUN, "Releasing locks for devices"); while ((lfe = TAILQ_FIRST(&hd->hd_frontends)) != NULL) { tvhdhomerun_frontend_delete(lfe); } #define FREEM(x) free(hd->hd_info.x) FREEM(friendlyname); FREEM(uuid); FREEM(deviceModel); #undef FREEM tvh_hardware_delete((tvh_hardware_t*)hd); #define FREEM(x) free(hd->x) FREEM(hd_override_type); #undef FREEM free(hd); }
void tvhdhomerun_device_destroy( tvhdhomerun_device_t *hd ) { tvhdhomerun_frontend_t *lfe; lock_assert(&global_lock); gtimer_disarm(&hd->hd_destroy_timer); tvhlog(LOG_INFO, "tvhdhomerun", "Releasing locks for devices"); while ((lfe = TAILQ_FIRST(&hd->hd_frontends)) != NULL) { tvhdhomerun_frontend_delete(lfe); } #define FREEM(x) free(hd->hd_info.x) FREEM(ip_address); FREEM(friendlyname); FREEM(uuid); FREEM(deviceModel); #undef FREEM tvh_hardware_delete((tvh_hardware_t*)hd); #define FREEM(x) free(hd->x) FREEM(hd_override_type); #undef FREEM free(hd); }
void satip_device_destroy( satip_device_t *sd ) { satip_frontend_t *lfe; lock_assert(&global_lock); gtimer_disarm(&sd->sd_destroy_timer); while ((lfe = TAILQ_FIRST(&sd->sd_frontends)) != NULL) satip_frontend_delete(lfe); satip_device_dbus_notify(sd, "stop"); #define FREEM(x) free(sd->sd_info.x) FREEM(myaddr); FREEM(addr); FREEM(uuid); FREEM(bootid); FREEM(configid); FREEM(deviceid); FREEM(location); FREEM(server); FREEM(friendlyname); FREEM(manufacturer); FREEM(manufacturerURL); FREEM(modeldesc); FREEM(modelname); FREEM(modelnum); FREEM(serialnum); FREEM(presentation); FREEM(tunercfg); #undef FREEM free(sd->sd_bindaddr); free(sd->sd_tunercfg); tvh_hardware_delete((tvh_hardware_t*)sd); free(sd); }
void free_lsconfig(ls_config_t *ls_conf) { int i; for (i = 0; i < MAX_URL; i++) { FREEM(url[i]); } FREEM(anonid); FREEM(anonpass); FREEM(v6anonid); FREEM(v6anonpass); FREEM(telno); FREEM(cid); FREEM(apn); FREEM(pdp_type); FREEM(pppid); FREEM(ppppass); free(ls_conf); }