1<?xml version="1.0" encoding="UTF-8"?> 2<!-- Copyright (C) 2024 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16<!-- KEEP IN SYNC WITH aidl.rs --> 17<xs:schema version="2.0" 18 xmlns:xs="http://www.w3.org/2001/XMLSchema"> 19 <xs:element name="early_vms"> 20 <xs:complexType> 21 <xs:sequence> 22 <xs:element name="early_vm" type="early_vm" minOccurs="0" maxOccurs="unbounded"/> 23 </xs:sequence> 24 </xs:complexType> 25 </xs:element> 26 <xs:complexType name="early_vm"> 27 <!-- Name of the VM, which will be passed to VirtualMachineConfig. --> 28 <xs:attribute name="name" type="xs:string"/> 29 <!-- CID of the VM. Available ranges: 30 * system: 100 ~ 199 31 * system_ext / product: 200 ~ 299 32 * vendor / odm: 300 ~ 399 33 --> 34 <xs:attribute name="cid" type="xs:int"/> 35 <!-- Absolute file path of the client executable running the VM. --> 36 <xs:attribute name="path" type="xs:string"/> 37 </xs:complexType> 38</xs:schema> 39