(ATV_udid, uuid, tag, value)
| 84 | } |
| 85 | |
| 86 | def updatePMSProperty(ATV_udid, uuid, tag, value): |
| 87 | # set property element of PMS by UUID |
| 88 | if not ATV_udid in g_PMS: |
| 89 | return '' # no server known for this aTV |
| 90 | if not uuid in g_PMS[ATV_udid]: |
| 91 | return '' # requested PMS not available |
| 92 | |
| 93 | g_PMS[ATV_udid][uuid][tag] = value |
| 94 | |
| 95 | def getPMSProperty(ATV_udid, uuid, tag): |
| 96 | # get name of PMS by UUID |
no outgoing calls
no test coverage detected